diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/api/Azure.AI.FormRecognizer.netstandard2.0.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/api/Azure.AI.FormRecognizer.netstandard2.0.cs index 7f78d37f9aeb0..60304fc6e3e79 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/api/Azure.AI.FormRecognizer.netstandard2.0.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/api/Azure.AI.FormRecognizer.netstandard2.0.cs @@ -7,6 +7,7 @@ public enum FormContentType Png = 2, Jpeg = 3, Tiff = 4, + Bmp = 5, } public partial class FormRecognizerClient { diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/FormContentType.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/FormContentType.cs index d786989b62381..7c74d7c58ca25 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/FormContentType.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/FormContentType.cs @@ -40,5 +40,11 @@ public enum FormContentType /// [CodeGenMember("ImageTiff")] Tiff, + + /// + /// Used for BMP files. + /// + [CodeGenMember("ImageBmp")] + Bmp, } } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/FormRecognizerClient.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/FormRecognizerClient.cs index b92e7dbea9086..5d8b5d937cca4 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/FormRecognizerClient.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/FormRecognizerClient.cs @@ -137,7 +137,7 @@ public virtual RecognizeContentOperation StartRecognizeContent(Stream form, Reco { FormContentType contentType = recognizeContentOptions.ContentType ?? DetectContentType(form, nameof(form)); - Response response = ServiceClient.AnalyzeLayoutAsync(contentType, form, cancellationToken); + Response response = ServiceClient.AnalyzeLayoutAsync(contentType, form, null, cancellationToken); string location = ClientCommon.GetResponseHeader(response.Headers, Constants.OperationLocationHeader); return new RecognizeContentOperation(ServiceClient, Diagnostics, location); @@ -170,7 +170,7 @@ public virtual async Task StartRecognizeContentAsync( { FormContentType contentType = recognizeContentOptions.ContentType ?? DetectContentType(form, nameof(form)); - Response response = await ServiceClient.AnalyzeLayoutAsyncAsync(contentType, form, cancellationToken).ConfigureAwait(false); + Response response = await ServiceClient.AnalyzeLayoutAsyncAsync(contentType, form, null, cancellationToken).ConfigureAwait(false); string location = ClientCommon.GetResponseHeader(response.Headers, Constants.OperationLocationHeader); return new RecognizeContentOperation(ServiceClient, Diagnostics, location); @@ -202,7 +202,7 @@ public virtual RecognizeContentOperation StartRecognizeContentFromUri(Uri formUr try { SourcePath sourcePath = new SourcePath() { Source = formUri.AbsoluteUri }; - Response response = ServiceClient.AnalyzeLayoutAsync(sourcePath, cancellationToken); + Response response = ServiceClient.AnalyzeLayoutAsync(null, sourcePath, cancellationToken); string location = ClientCommon.GetResponseHeader(response.Headers, Constants.OperationLocationHeader); return new RecognizeContentOperation(ServiceClient, Diagnostics, location); @@ -234,7 +234,7 @@ public virtual async Task StartRecognizeContentFromUr try { SourcePath sourcePath = new SourcePath() { Source = formUri.AbsoluteUri }; - Response response = await ServiceClient.AnalyzeLayoutAsyncAsync(sourcePath, cancellationToken).ConfigureAwait(false); + Response response = await ServiceClient.AnalyzeLayoutAsyncAsync(null, sourcePath, cancellationToken).ConfigureAwait(false); string location = ClientCommon.GetResponseHeader(response.Headers, Constants.OperationLocationHeader); return new RecognizeContentOperation(ServiceClient, Diagnostics, location); diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/FormRecognizerAnalyzeInvoiceAsyncHeaders.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/FormRecognizerAnalyzeInvoiceAsyncHeaders.cs new file mode 100644 index 0000000000000..fcdb524614d44 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/FormRecognizerAnalyzeInvoiceAsyncHeaders.cs @@ -0,0 +1,23 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using Azure; +using Azure.Core; + +namespace Azure.AI.FormRecognizer +{ + internal class FormRecognizerAnalyzeInvoiceAsyncHeaders + { + private readonly Response _response; + public FormRecognizerAnalyzeInvoiceAsyncHeaders(Response response) + { + _response = response; + } + /// URL containing the resultId used to track the progress and obtain the result of the analyze operation. + public string OperationLocation => _response.Headers.TryGetValue("Operation-Location", out string value) ? value : null; + } +} diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/FormRecognizerRestClient.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/FormRecognizerRestClient.cs index aba36db3c1918..0277269b83501 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/FormRecognizerRestClient.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/FormRecognizerRestClient.cs @@ -6,6 +6,7 @@ #nullable disable using System; +using System.Collections.Generic; using System.IO; using System.Text.Json; using System.Threading; @@ -47,7 +48,7 @@ internal HttpMessage CreateTrainCustomModelAsyncRequest(TrainRequest trainReques request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/custom/models", false); request.Uri = uri; request.Headers.Add("Content-Type", "application/json"); @@ -111,7 +112,7 @@ internal HttpMessage CreateGetCustomModelRequest(Guid modelId, bool? includeKeys request.Method = RequestMethod.Get; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/custom/models/", false); uri.AppendPath(modelId, true); if (includeKeys != null) @@ -174,7 +175,7 @@ internal HttpMessage CreateDeleteCustomModelRequest(Guid modelId) request.Method = RequestMethod.Delete; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/custom/models/", false); uri.AppendPath(modelId, true); request.Uri = uri; @@ -221,7 +222,7 @@ internal HttpMessage CreateAnalyzeWithCustomModelRequest(Guid modelId, FormConte request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/custom/models/", false); uri.AppendPath(modelId, true); uri.AppendPath("/analyze", false); @@ -295,7 +296,7 @@ internal HttpMessage CreateAnalyzeWithCustomModelRequest(Guid modelId, bool? inc request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/custom/models/", false); uri.AppendPath(modelId, true); uri.AppendPath("/analyze", false); @@ -360,7 +361,7 @@ internal HttpMessage CreateGetAnalyzeFormResultRequest(Guid modelId, Guid result request.Method = RequestMethod.Get; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/custom/models/", false); uri.AppendPath(modelId, true); uri.AppendPath("/analyzeResults/", false); @@ -421,7 +422,7 @@ internal HttpMessage CreateCopyCustomModelRequest(Guid modelId, CopyRequest copy request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/custom/models/", false); uri.AppendPath(modelId, true); uri.AppendPath("/copy", false); @@ -489,7 +490,7 @@ internal HttpMessage CreateGetCustomModelCopyResultRequest(Guid modelId, Guid re request.Method = RequestMethod.Get; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/custom/models/", false); uri.AppendPath(modelId, true); uri.AppendPath("/copyResults/", false); @@ -550,7 +551,7 @@ internal HttpMessage CreateGenerateModelCopyAuthorizationRequest() request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/custom/models/copyAuthorization", false); request.Uri = uri; request.Headers.Add("Accept", "application/json"); @@ -606,7 +607,7 @@ internal HttpMessage CreateComposeCustomModelsAsyncRequest(ComposeRequest compos request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/custom/models/compose", false); request.Uri = uri; request.Headers.Add("Content-Type", "application/json"); @@ -682,7 +683,7 @@ internal HttpMessage CreateAnalyzeBusinessCardAsyncRequest(FormContentType conte request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/prebuilt/businessCard/analyze", false); if (includeTextDetails != null) { @@ -758,7 +759,7 @@ internal HttpMessage CreateAnalyzeBusinessCardAsyncRequest(bool? includeTextDeta request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/prebuilt/businessCard/analyze", false); if (includeTextDetails != null) { @@ -825,7 +826,7 @@ internal HttpMessage CreateGetAnalyzeBusinessCardResultRequest(Guid resultId) request.Method = RequestMethod.Get; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/prebuilt/businessCard/analyzeResults/", false); uri.AppendPath(resultId, true); request.Uri = uri; @@ -875,6 +876,206 @@ public Response GetAnalyzeBusinessCardResult(Guid result } } + internal HttpMessage CreateAnalyzeInvoiceAsyncRequest(FormContentType contentType, Stream fileStream, bool? includeTextDetails, string locale) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Post; + var uri = new RawRequestUriBuilder(); + uri.AppendRaw(endpoint, false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); + uri.AppendPath("/prebuilt/invoice/analyze", false); + if (includeTextDetails != null) + { + uri.AppendQuery("includeTextDetails", includeTextDetails.Value, true); + } + if (locale != null) + { + uri.AppendQuery("locale", locale, true); + } + request.Uri = uri; + request.Headers.Add("Content-Type", contentType.ToSerialString()); + request.Headers.Add("Accept", "application/json"); + request.Content = RequestContent.Create(fileStream); + return message; + } + + /// Extract field text and semantic values from a given invoice document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png' or 'image/tiff'. Alternatively, use 'application/json' type to specify the location (Uri) of the document to be analyzed. + /// Upload file type. + /// .json, .pdf, .jpg, .png or .tiff type file stream. + /// Include text lines and element references in the result. + /// Locale of the invoice. Supported locales include: en-AU, en-CA, en-GB, en-IN, en-US(default). + /// The cancellation token to use. + /// is null. + public async Task> AnalyzeInvoiceAsyncAsync(FormContentType contentType, Stream fileStream, bool? includeTextDetails = null, string locale = null, CancellationToken cancellationToken = default) + { + if (fileStream == null) + { + throw new ArgumentNullException(nameof(fileStream)); + } + + using var message = CreateAnalyzeInvoiceAsyncRequest(contentType, fileStream, includeTextDetails, locale); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + var headers = new FormRecognizerAnalyzeInvoiceAsyncHeaders(message.Response); + switch (message.Response.Status) + { + case 202: + return ResponseWithHeaders.FromValue(headers, message.Response); + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Extract field text and semantic values from a given invoice document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png' or 'image/tiff'. Alternatively, use 'application/json' type to specify the location (Uri) of the document to be analyzed. + /// Upload file type. + /// .json, .pdf, .jpg, .png or .tiff type file stream. + /// Include text lines and element references in the result. + /// Locale of the invoice. Supported locales include: en-AU, en-CA, en-GB, en-IN, en-US(default). + /// The cancellation token to use. + /// is null. + public ResponseWithHeaders AnalyzeInvoiceAsync(FormContentType contentType, Stream fileStream, bool? includeTextDetails = null, string locale = null, CancellationToken cancellationToken = default) + { + if (fileStream == null) + { + throw new ArgumentNullException(nameof(fileStream)); + } + + using var message = CreateAnalyzeInvoiceAsyncRequest(contentType, fileStream, includeTextDetails, locale); + _pipeline.Send(message, cancellationToken); + var headers = new FormRecognizerAnalyzeInvoiceAsyncHeaders(message.Response); + switch (message.Response.Status) + { + case 202: + return ResponseWithHeaders.FromValue(headers, message.Response); + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateAnalyzeInvoiceAsyncRequest(bool? includeTextDetails, string locale, SourcePath fileStream) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Post; + var uri = new RawRequestUriBuilder(); + uri.AppendRaw(endpoint, false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); + uri.AppendPath("/prebuilt/invoice/analyze", false); + if (includeTextDetails != null) + { + uri.AppendQuery("includeTextDetails", includeTextDetails.Value, true); + } + if (locale != null) + { + uri.AppendQuery("locale", locale, true); + } + request.Uri = uri; + request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json"); + if (fileStream != null) + { + var content = new Utf8JsonRequestContent(); + content.JsonWriter.WriteObjectValue(fileStream); + request.Content = content; + } + return message; + } + + /// Extract field text and semantic values from a given invoice document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png' or 'image/tiff'. Alternatively, use 'application/json' type to specify the location (Uri) of the document to be analyzed. + /// Include text lines and element references in the result. + /// Locale of the invoice. Supported locales include: en-AU, en-CA, en-GB, en-IN, en-US(default). + /// .json, .pdf, .jpg, .png or .tiff type file stream. + /// The cancellation token to use. + public async Task> AnalyzeInvoiceAsyncAsync(bool? includeTextDetails = null, string locale = null, SourcePath fileStream = null, CancellationToken cancellationToken = default) + { + using var message = CreateAnalyzeInvoiceAsyncRequest(includeTextDetails, locale, fileStream); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + var headers = new FormRecognizerAnalyzeInvoiceAsyncHeaders(message.Response); + switch (message.Response.Status) + { + case 202: + return ResponseWithHeaders.FromValue(headers, message.Response); + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Extract field text and semantic values from a given invoice document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png' or 'image/tiff'. Alternatively, use 'application/json' type to specify the location (Uri) of the document to be analyzed. + /// Include text lines and element references in the result. + /// Locale of the invoice. Supported locales include: en-AU, en-CA, en-GB, en-IN, en-US(default). + /// .json, .pdf, .jpg, .png or .tiff type file stream. + /// The cancellation token to use. + public ResponseWithHeaders AnalyzeInvoiceAsync(bool? includeTextDetails = null, string locale = null, SourcePath fileStream = null, CancellationToken cancellationToken = default) + { + using var message = CreateAnalyzeInvoiceAsyncRequest(includeTextDetails, locale, fileStream); + _pipeline.Send(message, cancellationToken); + var headers = new FormRecognizerAnalyzeInvoiceAsyncHeaders(message.Response); + switch (message.Response.Status) + { + case 202: + return ResponseWithHeaders.FromValue(headers, message.Response); + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateGetAnalyzeInvoiceResultRequest(Guid resultId) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Get; + var uri = new RawRequestUriBuilder(); + uri.AppendRaw(endpoint, false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); + uri.AppendPath("/prebuilt/invoice/analyzeResults/", false); + uri.AppendPath(resultId, true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + return message; + } + + /// Track the progress and obtain the result of the analyze invoice operation. + /// Analyze operation result identifier. + /// The cancellation token to use. + public async Task> GetAnalyzeInvoiceResultAsync(Guid resultId, CancellationToken cancellationToken = default) + { + using var message = CreateGetAnalyzeInvoiceResultRequest(resultId); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + { + AnalyzeOperationResult value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = AnalyzeOperationResult.DeserializeAnalyzeOperationResult(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Track the progress and obtain the result of the analyze invoice operation. + /// Analyze operation result identifier. + /// The cancellation token to use. + public Response GetAnalyzeInvoiceResult(Guid resultId, CancellationToken cancellationToken = default) + { + using var message = CreateGetAnalyzeInvoiceResultRequest(resultId); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + { + AnalyzeOperationResult value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = AnalyzeOperationResult.DeserializeAnalyzeOperationResult(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + internal HttpMessage CreateAnalyzeReceiptAsyncRequest(FormContentType contentType, Stream fileStream, bool? includeTextDetails, string locale) { var message = _pipeline.CreateMessage(); @@ -882,7 +1083,7 @@ internal HttpMessage CreateAnalyzeReceiptAsyncRequest(FormContentType contentTyp request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/prebuilt/receipt/analyze", false); if (includeTextDetails != null) { @@ -958,7 +1159,7 @@ internal HttpMessage CreateAnalyzeReceiptAsyncRequest(bool? includeTextDetails, request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/prebuilt/receipt/analyze", false); if (includeTextDetails != null) { @@ -1025,7 +1226,7 @@ internal HttpMessage CreateGetAnalyzeReceiptResultRequest(Guid resultId) request.Method = RequestMethod.Get; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/prebuilt/receipt/analyzeResults/", false); uri.AppendPath(resultId, true); request.Uri = uri; @@ -1075,15 +1276,19 @@ public Response GetAnalyzeReceiptResult(Guid resultId, C } } - internal HttpMessage CreateAnalyzeLayoutAsyncRequest(FormContentType contentType, Stream fileStream) + internal HttpMessage CreateAnalyzeLayoutAsyncRequest(FormContentType contentType, Stream fileStream, IEnumerable pages) { var message = _pipeline.CreateMessage(); var request = message.Request; request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/layout/analyze", false); + if (pages != null) + { + uri.AppendQueryDelimited("Pages", pages, ",", true); + } request.Uri = uri; request.Headers.Add("Content-Type", contentType.ToSerialString()); request.Headers.Add("Accept", "application/json"); @@ -1091,19 +1296,20 @@ internal HttpMessage CreateAnalyzeLayoutAsyncRequest(FormContentType contentType return message; } - /// Extract text and layout information from a given document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png' or 'image/tiff'. Alternatively, use 'application/json' type to specify the location (Uri or local path) of the document to be analyzed. + /// Extract text and layout information from a given document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png', 'image/tiff' or 'image/bmp'. Alternatively, use 'application/json' type to specify the location (Uri or local path) of the document to be analyzed. /// Upload file type. /// .json, .pdf, .jpg, .png or .tiff type file stream. + /// Custom page numbers for multi-page documents(PDF/TIFF), input the number of the pages you want to get OCR result. For a range of pages, use a hyphen. Separate each page or range with a comma or space. /// The cancellation token to use. /// is null. - public async Task> AnalyzeLayoutAsyncAsync(FormContentType contentType, Stream fileStream, CancellationToken cancellationToken = default) + public async Task> AnalyzeLayoutAsyncAsync(FormContentType contentType, Stream fileStream, IEnumerable pages = null, CancellationToken cancellationToken = default) { if (fileStream == null) { throw new ArgumentNullException(nameof(fileStream)); } - using var message = CreateAnalyzeLayoutAsyncRequest(contentType, fileStream); + using var message = CreateAnalyzeLayoutAsyncRequest(contentType, fileStream, pages); await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); var headers = new FormRecognizerAnalyzeLayoutAsyncHeaders(message.Response); switch (message.Response.Status) @@ -1115,19 +1321,20 @@ public async Task> } } - /// Extract text and layout information from a given document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png' or 'image/tiff'. Alternatively, use 'application/json' type to specify the location (Uri or local path) of the document to be analyzed. + /// Extract text and layout information from a given document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png', 'image/tiff' or 'image/bmp'. Alternatively, use 'application/json' type to specify the location (Uri or local path) of the document to be analyzed. /// Upload file type. /// .json, .pdf, .jpg, .png or .tiff type file stream. + /// Custom page numbers for multi-page documents(PDF/TIFF), input the number of the pages you want to get OCR result. For a range of pages, use a hyphen. Separate each page or range with a comma or space. /// The cancellation token to use. /// is null. - public ResponseWithHeaders AnalyzeLayoutAsync(FormContentType contentType, Stream fileStream, CancellationToken cancellationToken = default) + public ResponseWithHeaders AnalyzeLayoutAsync(FormContentType contentType, Stream fileStream, IEnumerable pages = null, CancellationToken cancellationToken = default) { if (fileStream == null) { throw new ArgumentNullException(nameof(fileStream)); } - using var message = CreateAnalyzeLayoutAsyncRequest(contentType, fileStream); + using var message = CreateAnalyzeLayoutAsyncRequest(contentType, fileStream, pages); _pipeline.Send(message, cancellationToken); var headers = new FormRecognizerAnalyzeLayoutAsyncHeaders(message.Response); switch (message.Response.Status) @@ -1139,15 +1346,19 @@ public ResponseWithHeaders AnalyzeLayou } } - internal HttpMessage CreateAnalyzeLayoutAsyncRequest(SourcePath fileStream) + internal HttpMessage CreateAnalyzeLayoutAsyncRequest(IEnumerable pages, SourcePath fileStream) { var message = _pipeline.CreateMessage(); var request = message.Request; request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/layout/analyze", false); + if (pages != null) + { + uri.AppendQueryDelimited("Pages", pages, ",", true); + } request.Uri = uri; request.Headers.Add("Content-Type", "application/json"); request.Headers.Add("Accept", "application/json"); @@ -1160,12 +1371,13 @@ internal HttpMessage CreateAnalyzeLayoutAsyncRequest(SourcePath fileStream) return message; } - /// Extract text and layout information from a given document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png' or 'image/tiff'. Alternatively, use 'application/json' type to specify the location (Uri or local path) of the document to be analyzed. + /// Extract text and layout information from a given document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png', 'image/tiff' or 'image/bmp'. Alternatively, use 'application/json' type to specify the location (Uri or local path) of the document to be analyzed. + /// Custom page numbers for multi-page documents(PDF/TIFF), input the number of the pages you want to get OCR result. For a range of pages, use a hyphen. Separate each page or range with a comma or space. /// .json, .pdf, .jpg, .png or .tiff type file stream. /// The cancellation token to use. - public async Task> AnalyzeLayoutAsyncAsync(SourcePath fileStream = null, CancellationToken cancellationToken = default) + public async Task> AnalyzeLayoutAsyncAsync(IEnumerable pages = null, SourcePath fileStream = null, CancellationToken cancellationToken = default) { - using var message = CreateAnalyzeLayoutAsyncRequest(fileStream); + using var message = CreateAnalyzeLayoutAsyncRequest(pages, fileStream); await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); var headers = new FormRecognizerAnalyzeLayoutAsyncHeaders(message.Response); switch (message.Response.Status) @@ -1177,12 +1389,13 @@ public async Task> } } - /// Extract text and layout information from a given document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png' or 'image/tiff'. Alternatively, use 'application/json' type to specify the location (Uri or local path) of the document to be analyzed. + /// Extract text and layout information from a given document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png', 'image/tiff' or 'image/bmp'. Alternatively, use 'application/json' type to specify the location (Uri or local path) of the document to be analyzed. + /// Custom page numbers for multi-page documents(PDF/TIFF), input the number of the pages you want to get OCR result. For a range of pages, use a hyphen. Separate each page or range with a comma or space. /// .json, .pdf, .jpg, .png or .tiff type file stream. /// The cancellation token to use. - public ResponseWithHeaders AnalyzeLayoutAsync(SourcePath fileStream = null, CancellationToken cancellationToken = default) + public ResponseWithHeaders AnalyzeLayoutAsync(IEnumerable pages = null, SourcePath fileStream = null, CancellationToken cancellationToken = default) { - using var message = CreateAnalyzeLayoutAsyncRequest(fileStream); + using var message = CreateAnalyzeLayoutAsyncRequest(pages, fileStream); _pipeline.Send(message, cancellationToken); var headers = new FormRecognizerAnalyzeLayoutAsyncHeaders(message.Response); switch (message.Response.Status) @@ -1201,7 +1414,7 @@ internal HttpMessage CreateGetAnalyzeLayoutResultRequest(Guid resultId) request.Method = RequestMethod.Get; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/layout/analyzeResults/", false); uri.AppendPath(resultId, true); request.Uri = uri; @@ -1258,7 +1471,7 @@ internal HttpMessage CreateListCustomModelsRequest() request.Method = RequestMethod.Get; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/custom/models", false); uri.AppendQuery("op", "full", true); request.Uri = uri; @@ -1313,7 +1526,7 @@ internal HttpMessage CreateGetCustomModelsRequest() request.Method = RequestMethod.Get; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendPath("/custom/models", false); uri.AppendQuery("op", "summary", true); request.Uri = uri; @@ -1368,7 +1581,7 @@ internal HttpMessage CreateListCustomModelsNextPageRequest(string nextLink) request.Method = RequestMethod.Get; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/formrecognizer/v2.1-preview.1", false); + uri.AppendRaw("/formrecognizer/v2.1-preview.2", false); uri.AppendRawNextLink(nextLink, false); request.Uri = uri; request.Headers.Add("Accept", "application/json"); diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/Appearance.Serialization.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/Appearance.Serialization.cs new file mode 100644 index 0000000000000..c7fbff50eabce --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/Appearance.Serialization.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.FormRecognizer.Models +{ + internal partial class Appearance + { + internal static Appearance DeserializeAppearance(JsonElement element) + { + Style style = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("style")) + { + style = Style.DeserializeStyle(property.Value); + continue; + } + } + return new Appearance(style); + } + } +} diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/Appearance.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/Appearance.cs new file mode 100644 index 0000000000000..2cb7eeb16ceb8 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/Appearance.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.AI.FormRecognizer.Models +{ + /// An object representing the appearance of the text line. + internal partial class Appearance + { + /// Initializes a new instance of Appearance. + /// An object representing the style of the text line. + /// is null. + internal Appearance(Style style) + { + if (style == null) + { + throw new ArgumentNullException(nameof(style)); + } + + Style = style; + } + + /// An object representing the style of the text line. + public Style Style { get; } + } +} diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/DataTable.Serialization.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/DataTable.Serialization.cs index 2be3f5bcbb1b1..e61de8c4bacf2 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/DataTable.Serialization.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/DataTable.Serialization.cs @@ -18,6 +18,7 @@ internal static DataTable DeserializeDataTable(JsonElement element) int rows = default; int columns = default; IReadOnlyList cells = default; + Optional> boundingBox = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("rows")) @@ -40,8 +41,23 @@ internal static DataTable DeserializeDataTable(JsonElement element) cells = array; continue; } + if (property.NameEquals("boundingBox")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(item.GetSingle()); + } + boundingBox = array; + continue; + } } - return new DataTable(rows, columns, cells); + return new DataTable(rows, columns, cells, Optional.ToList(boundingBox)); } } } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/DataTable.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/DataTable.cs index 5580d2bd05460..47b58eab614fb 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/DataTable.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/DataTable.cs @@ -8,6 +8,7 @@ using System; using System.Collections.Generic; using System.Linq; +using Azure.Core; namespace Azure.AI.FormRecognizer.Models { @@ -29,17 +30,20 @@ internal DataTable(int rows, int columns, IEnumerable cells) Rows = rows; Columns = columns; Cells = cells.ToList(); + BoundingBox = new ChangeTrackingList(); } /// Initializes a new instance of DataTable. /// Number of rows. /// Number of columns. /// List of cells contained in the table. - internal DataTable(int rows, int columns, IReadOnlyList cells) + /// Bounding box of the table. + internal DataTable(int rows, int columns, IReadOnlyList cells, IReadOnlyList boundingBox) { Rows = rows; Columns = columns; Cells = cells; + BoundingBox = boundingBox; } /// Number of rows. @@ -48,5 +52,7 @@ internal DataTable(int rows, int columns, IReadOnlyList cells) public int Columns { get; } /// List of cells contained in the table. public IReadOnlyList Cells { get; } + /// Bounding box of the table. + public IReadOnlyList BoundingBox { get; } } } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/DocumentResult.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/DocumentResult.cs index 19c8266f077a6..921b6b13dfa50 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/DocumentResult.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/DocumentResult.cs @@ -43,7 +43,7 @@ internal DocumentResult(string docType, IEnumerable pageRange, IReadOnlyDic /// Document type. /// Model identifier. /// First and last page number where the document is found. - /// Predicted document type confidence. + /// Confidence score. /// Dictionary of named field values. internal DocumentResult(string docType, Guid? modelId, IReadOnlyList pageRange, float? docTypeConfidence, IReadOnlyDictionary fields) { @@ -60,7 +60,7 @@ internal DocumentResult(string docType, Guid? modelId, IReadOnlyList pageRa public Guid? ModelId { get; } /// First and last page number where the document is found. public IReadOnlyList PageRange { get; } - /// Predicted document type confidence. + /// Confidence score. public float? DocTypeConfidence { get; } /// Dictionary of named field values. public IReadOnlyDictionary Fields { get; } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/FormContentType.Serialization.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/FormContentType.Serialization.cs index 364f89dded52e..46409d6d454c1 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/FormContentType.Serialization.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/FormContentType.Serialization.cs @@ -14,6 +14,7 @@ internal static class FormContentTypeExtensions public static string ToSerialString(this FormContentType value) => value switch { FormContentType.Pdf => "application/pdf", + FormContentType.Bmp => "image/bmp", FormContentType.Jpeg => "image/jpeg", FormContentType.Png => "image/png", FormContentType.Tiff => "image/tiff", @@ -23,6 +24,7 @@ internal static class FormContentTypeExtensions public static FormContentType ToFormContentType(this string value) { if (string.Equals(value, "application/pdf", StringComparison.InvariantCultureIgnoreCase)) return FormContentType.Pdf; + if (string.Equals(value, "image/bmp", StringComparison.InvariantCultureIgnoreCase)) return FormContentType.Bmp; if (string.Equals(value, "image/jpeg", StringComparison.InvariantCultureIgnoreCase)) return FormContentType.Jpeg; if (string.Equals(value, "image/png", StringComparison.InvariantCultureIgnoreCase)) return FormContentType.Png; if (string.Equals(value, "image/tiff", StringComparison.InvariantCultureIgnoreCase)) return FormContentType.Tiff; diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/Style.Serialization.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/Style.Serialization.cs new file mode 100644 index 0000000000000..014d6166dcda8 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/Style.Serialization.cs @@ -0,0 +1,35 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.FormRecognizer.Models +{ + internal partial class Style + { + internal static Style DeserializeStyle(JsonElement element) + { + TextStyle name = default; + float confidence = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("name")) + { + name = new TextStyle(property.Value.GetString()); + continue; + } + if (property.NameEquals("confidence")) + { + confidence = property.Value.GetSingle(); + continue; + } + } + return new Style(name, confidence); + } + } +} diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/Style.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/Style.cs new file mode 100644 index 0000000000000..b53b36c757782 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/Style.cs @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.FormRecognizer.Models +{ + /// An object representing the style of the text line. + internal partial class Style + { + /// Initializes a new instance of Style. + /// The text line style name, including handwriting and other. + /// The confidence of text line style. + internal Style(TextStyle name, float confidence) + { + Name = name; + Confidence = confidence; + } + + /// The text line style name, including handwriting and other. + public TextStyle Name { get; } + /// The confidence of text line style. + public float Confidence { get; } + } +} diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/TextLine.Serialization.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/TextLine.Serialization.cs index 486251de94d28..f44407cd2487a 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/TextLine.Serialization.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/TextLine.Serialization.cs @@ -19,6 +19,7 @@ internal static TextLine DeserializeTextLine(JsonElement element) IReadOnlyList boundingBox = default; Optional language = default; IReadOnlyList words = default; + Optional appearance = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("text")) @@ -56,8 +57,18 @@ internal static TextLine DeserializeTextLine(JsonElement element) words = array; continue; } + if (property.NameEquals("appearance")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + appearance = Appearance.DeserializeAppearance(property.Value); + continue; + } } - return new TextLine(text, boundingBox, Optional.ToNullable(language), words); + return new TextLine(text, boundingBox, Optional.ToNullable(language), words, appearance.Value); } } } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/TextLine.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/TextLine.cs index 827dc8ceebda8..1c7678400357b 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/TextLine.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/TextLine.cs @@ -44,12 +44,14 @@ internal TextLine(string text, IEnumerable boundingBox, IEnumerable Bounding box of an extracted line. /// The detected language of this line, if different from the overall page language. /// List of words in the text line. - internal TextLine(string text, IReadOnlyList boundingBox, Language? language, IReadOnlyList words) + /// Text appearance properties. + internal TextLine(string text, IReadOnlyList boundingBox, Language? language, IReadOnlyList words, Appearance appearance) { Text = text; BoundingBox = boundingBox; Language = language; Words = words; + Appearance = appearance; } /// The text content of the line. @@ -60,5 +62,7 @@ internal TextLine(string text, IReadOnlyList boundingBox, Language? langu public Language? Language { get; } /// List of words in the text line. public IReadOnlyList Words { get; } + /// Text appearance properties. + public Appearance Appearance { get; } } } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/TextStyle.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/TextStyle.cs new file mode 100644 index 0000000000000..959d070afd97c --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/Generated/Models/TextStyle.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.ComponentModel; + +namespace Azure.AI.FormRecognizer.Models +{ + /// The text line style name, including handwriting and other. + internal readonly partial struct TextStyle : IEquatable + { + private readonly string _value; + + /// Determines if two values are the same. + /// is null. + public TextStyle(string value) + { + _value = value ?? throw new ArgumentNullException(nameof(value)); + } + + private const string OtherValue = "other"; + private const string HandwritingValue = "handwriting"; + + /// other. + public static TextStyle Other { get; } = new TextStyle(OtherValue); + /// handwriting. + public static TextStyle Handwriting { get; } = new TextStyle(HandwritingValue); + /// Determines if two values are the same. + public static bool operator ==(TextStyle left, TextStyle right) => left.Equals(right); + /// Determines if two values are not the same. + public static bool operator !=(TextStyle left, TextStyle right) => !left.Equals(right); + /// Converts a string to a . + public static implicit operator TextStyle(string value) => new TextStyle(value); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is TextStyle other && Equals(other); + /// + public bool Equals(TextStyle other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value?.GetHashCode() ?? 0; + /// + public override string ToString() => _value; + } +} diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/TextStyle.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/TextStyle.cs new file mode 100644 index 0000000000000..1790f0a6b0196 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/TextStyle.cs @@ -0,0 +1,11 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.FormRecognizer.Models +{ + [CodeGenModel("TextStyle")] + internal partial struct TextStyle + { } +} diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/autorest.md b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/autorest.md index 55af0129247b1..d3c4fae1e66cd 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/autorest.md +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/autorest.md @@ -7,12 +7,10 @@ Run `dotnet build /t:GenerateCode` to generate code. ``` yaml input-file: - - https://github.com/Azure/azure-rest-api-specs/blob/8fee11f5dd30e228a850ee25a2f3368dc1671b53/specification/cognitiveservices/data-plane/FormRecognizer/preview/v2.1-preview.1/FormRecognizer.json + - .\swagger\fr2.1p2.json ``` - - ### Make AnalyzeResult.readResult optional This is a temporary work-around ``` yaml diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/src/swagger/fr2.1p2.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/swagger/fr2.1p2.json new file mode 100644 index 0000000000000..c568d887cb7a9 --- /dev/null +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/src/swagger/fr2.1p2.json @@ -0,0 +1,2137 @@ +{ + "swagger": "2.0", + "info": { + "version": "2.1-preview.2", + "title": "Form Recognizer Client", + "description": "Extracts information from forms and images into structured data." + }, + "securityDefinitions": { + "apim_key": { + "type": "apiKey", + "name": "Ocp-Apim-Subscription-Key", + "in": "header" + } + }, + "security": [ + { + "apim_key": [] + } + ], + "x-ms-parameterized-host": { + "hostTemplate": "{endpoint}/formrecognizer/v2.1-preview.2", + "useSchemePrefix": false, + "parameters": [ + { + "$ref": "#/parameters/Endpoint" + } + ] + }, + "schemes": [ + "https" + ], + "paths": { + "/custom/models": { + "post": { + "summary": "Train Custom Model", + "description": "Create and train a custom model. The request must include a source parameter that is either an externally accessible Azure storage blob container Uri (preferably a Shared Access Signature Uri) or valid path to a data folder in a locally mounted drive. When local paths are specified, they must follow the Linux/Unix path format and be an absolute path rooted to the input mount configuration setting value e.g., if '{Mounts:Input}' configuration setting value is '/input' then a valid source path would be '/input/contosodataset'. All data to be trained is expected to be under the source folder or sub folders under it. Models are trained using documents that are of the following content type - 'application/pdf', 'image/jpeg', 'image/png', 'image/tiff'. Other type of content is ignored.", + "operationId": "TrainCustomModelAsync", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "trainRequest", + "in": "body", + "description": "Training request parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/TrainRequest" + } + } + ], + "responses": { + "201": { + "description": "Request is queued successfully.", + "headers": { + "Location": { + "type": "string", + "description": "Location and ID of the model being trained. The status of model training is specified in the status property at the model location." + } + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Train custom model": { + "$ref": "./examples/TrainBatch.json" + }, + "Train custom model with subfolder filter options": { + "$ref": "./examples/TrainBatchWithSubFolders.json" + } + }, + "x-ms-long-running-operation": true + } + }, + "/custom/models/{modelId}": { + "get": { + "summary": "Get Custom Model", + "description": "Get detailed information about a custom model.", + "operationId": "GetCustomModel", + "consumes": [], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "modelId", + "in": "path", + "description": "Model identifier.", + "required": true, + "type": "string", + "format": "uuid" + }, + { + "name": "includeKeys", + "in": "query", + "description": "Include list of extracted keys in model information.", + "required": false, + "default": false, + "type": "boolean", + "x-nullable": false + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/Model" + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get custom model": { + "$ref": "./examples/GetModel.json" + } + } + }, + "delete": { + "summary": "Delete Custom Model", + "description": "Mark model for deletion. Model artifacts will be permanently removed within a predetermined period.", + "operationId": "DeleteCustomModel", + "consumes": [], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "modelId", + "in": "path", + "description": "Model identifier.", + "required": true, + "type": "string", + "format": "uuid" + } + ], + "responses": { + "204": { + "description": "Successfully marked model for deletion. Model artifacts will be removed within a predefined time period." + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Delete custom model": { + "$ref": "./examples/DeleteModel.json" + } + } + } + }, + "/custom/models/{modelId}/analyze": { + "post": { + "summary": "Analyze Form", + "description": "Extract key-value pairs, tables, and semantic values from a given document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png' or 'image/tiff'. Alternatively, use 'application/json' type to specify the location (Uri or local path) of the document to be analyzed.", + "operationId": "AnalyzeWithCustomModel", + "consumes": [ + "application/pdf", + "application/json", + "image/jpeg", + "image/png", + "image/tiff", + "image/bmp" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "modelId", + "in": "path", + "description": "Model identifier.", + "required": true, + "type": "string", + "format": "uuid" + }, + { + "name": "includeTextDetails", + "in": "query", + "description": "Include text lines and element references in the result.", + "required": false, + "default": false, + "type": "boolean", + "x-nullable": false + }, + { + "$ref": "#/parameters/FileStream" + } + ], + "responses": { + "202": { + "description": "Request is queued successfully.", + "headers": { + "Operation-Location": { + "type": "string", + "description": "URL containing the resultId used to track the progress and obtain the result of the analyze operation." + } + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Analyze form with custom model": { + "$ref": "./examples/AnalyzeBatch.json" + } + }, + "x-ms-long-running-operation": true + } + }, + "/custom/models/{modelId}/analyzeResults/{resultId}": { + "get": { + "summary": "Get Analyze Form Result", + "description": "Obtain current status and the result of the analyze form operation.", + "operationId": "GetAnalyzeFormResult", + "consumes": [], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "modelId", + "in": "path", + "description": "Model identifier.", + "required": true, + "type": "string", + "format": "uuid" + }, + { + "name": "resultId", + "in": "path", + "description": "Analyze operation result identifier.", + "required": true, + "type": "string", + "format": "uuid" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/AnalyzeOperationResult" + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get analyze form result": { + "$ref": "./examples/AnalyzeOperationResult.json" + } + } + } + }, + "/custom/models/{modelId}/copy": { + "post": { + "summary": "Copy Custom Model", + "description": "Copy custom model stored in this resource (the source) to user specified target Form Recognizer resource.", + "operationId": "CopyCustomModel", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "modelId", + "in": "path", + "description": "Model identifier.", + "required": true, + "type": "string", + "format": "uuid" + }, + { + "name": "copyRequest", + "in": "body", + "description": "Copy request parameters.", + "required": true, + "schema": { + "$ref": "#/definitions/CopyRequest" + } + } + ], + "responses": { + "202": { + "description": "Copy request is queued successfully.", + "headers": { + "Operation-Location": { + "type": "string", + "description": "URL containing the resultId used to track the progress and obtain the result of the copy operation." + } + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Copy custom model": { + "$ref": "./examples/CopyModel.json" + } + }, + "x-ms-long-running-operation": true + } + }, + "/custom/models/{modelId}/copyResults/{resultId}": { + "get": { + "summary": "Get Custom Model Copy Result", + "description": "Obtain current status and the result of a custom model copy operation.", + "operationId": "GetCustomModelCopyResult", + "consumes": [], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "modelId", + "in": "path", + "description": "Model identifier.", + "required": true, + "type": "string", + "format": "uuid" + }, + { + "name": "resultId", + "in": "path", + "description": "Copy operation result identifier.", + "required": true, + "type": "string", + "format": "uuid" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/CopyOperationResult" + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get copy custom model result": { + "$ref": "./examples/CopyOperationResult.json" + }, + "Get copy custom model result with failures": { + "$ref": "./examples/CopyOperationResultWithErrors.json" + } + } + } + }, + "/custom/models/copyAuthorization": { + "post": { + "summary": "Generate Copy Authorization", + "description": "Generate authorization to copy a model into the target Form Recognizer resource.", + "operationId": "GenerateModelCopyAuthorization", + "consumes": [], + "produces": [ + "application/json" + ], + "parameters": [], + "responses": { + "201": { + "description": "Copy request is authorized successfully.", + "headers": { + "Location": { + "type": "string", + "description": "Location and ID of the model being copied. The status of model copy is specified in the status property at the model location." + } + }, + "schema": { + "$ref": "#/definitions/CopyAuthorizationResult" + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Copy custom model": { + "$ref": "./examples/CopyModelAuthorization.json" + } + } + } + }, + "/custom/models/compose": { + "post": { + "tags": [ + "Form" + ], + "summary": "Compose trained with labels models into one composed model.", + "description": "Compose request would include list of models ids.\r\nIt would validate what all models either trained with labels model or composed model.\r\nIt would validate limit of models put together.", + "operationId": "ComposeCustomModelsAsync", + "consumes": [], + "produces": [ + "application/json", + "text/json" + ], + "parameters": [ + { + "name": "composeRequest", + "in": "body", + "description": "Compose models", + "required": true, + "schema": { + "$ref": "#/definitions/ComposeRequest" + } + } + ], + "responses": { + "201": { + "description": "Request is queued successfully.", + "headers": { + "Location": { + "type": "string", + "description": "Location and ID of the composed model. The status of composed model is specified in the status property at the model location." + } + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Compose custom models": { + "$ref": "./examples/ComposeModels.json" + } + }, + "x-ms-long-running-operation": true + } + }, + "/prebuilt/businessCard/analyze": { + "post": { + "summary": "Analyze Business Card", + "description": "Extract field text and semantic values from a given business card document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png' or 'image/tiff'. Alternatively, use 'application/json' type to specify the location (Uri) of the document to be analyzed.", + "operationId": "AnalyzeBusinessCardAsync", + "consumes": [ + "application/pdf", + "application/json", + "image/jpeg", + "image/png", + "image/tiff", + "image/bmp" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "includeTextDetails", + "in": "query", + "description": "Include text lines and element references in the result.", + "required": false, + "default": false, + "type": "boolean", + "x-nullable": false + }, + { + "name": "locale", + "in": "query", + "description": "Locale of the business card. Supported locales include: en-AU, en-CA, en-GB, en-IN, en-US(default).", + "required": false, + "type": "string" + }, + { + "$ref": "#/parameters/FileStream" + } + ], + "responses": { + "202": { + "description": "Request is queued successfully.", + "headers": { + "Operation-Location": { + "type": "string", + "description": "URL containing the resultId used to track the progress and obtain the result of the analyze operation." + } + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Analyze Business Card": { + "$ref": "./examples/BusinessCardBatch.json" + } + }, + "x-ms-long-running-operation": true + } + }, + "/prebuilt/businessCard/analyzeResults/{resultId}": { + "get": { + "summary": "Get Analyze Business Card Result", + "description": "Track the progress and obtain the result of the analyze business card operation.", + "operationId": "GetAnalyzeBusinessCardResult", + "consumes": [], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "resultId", + "in": "path", + "description": "Analyze operation result identifier.", + "required": true, + "type": "string", + "format": "uuid" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/AnalyzeOperationResult" + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get analyze business card result": { + "$ref": "./examples/BusinessCardBatchResult.json" + } + } + } + }, + "/prebuilt/invoice/analyze": { + "post": { + "summary": "Analyze Invoice Document", + "description": "Extract field text and semantic values from a given invoice document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png' or 'image/tiff'. Alternatively, use 'application/json' type to specify the location (Uri) of the document to be analyzed.", + "operationId": "AnalyzeInvoiceAsync", + "consumes": [ + "application/pdf", + "application/json", + "image/jpeg", + "image/png", + "image/tiff", + "image/bmp" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "includeTextDetails", + "in": "query", + "description": "Include text lines and element references in the result.", + "required": false, + "default": false, + "type": "boolean", + "x-nullable": false + }, + { + "name": "locale", + "in": "query", + "description": "Locale of the invoice. Supported locales include: en-AU, en-CA, en-GB, en-IN, en-US(default).", + "required": false, + "type": "string" + }, + { + "$ref": "#/parameters/FileStream" + } + ], + "responses": { + "202": { + "description": "Request is queued successfully.", + "headers": { + "Operation-Location": { + "type": "string", + "description": "URL containing the resultId used to track the progress and obtain the result of the analyze operation." + } + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Analyze receipt": { + "$ref": "./examples/InvoiceBatch.json" + } + }, + "x-ms-long-running-operation": true + } + }, + "/prebuilt/invoice/analyzeResults/{resultId}": { + "get": { + "summary": "Get Analyze Invoice Result", + "description": "Track the progress and obtain the result of the analyze invoice operation.", + "operationId": "GetAnalyzeInvoiceResult", + "consumes": [], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "resultId", + "in": "path", + "description": "Analyze operation result identifier.", + "required": true, + "type": "string", + "format": "uuid" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/AnalyzeOperationResult" + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get analyze receipt result": { + "$ref": "./examples/InvoiceBatchResult.json" + } + } + } + }, + "/prebuilt/receipt/analyze": { + "post": { + "summary": "Analyze Receipt", + "description": "Extract field text and semantic values from a given receipt document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png' or 'image/tiff'. Alternatively, use 'application/json' type to specify the location (Uri) of the document to be analyzed.", + "operationId": "AnalyzeReceiptAsync", + "consumes": [ + "application/pdf", + "application/json", + "image/jpeg", + "image/png", + "image/tiff", + "image/bmp" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "includeTextDetails", + "in": "query", + "description": "Include text lines and element references in the result.", + "required": false, + "default": false, + "type": "boolean", + "x-nullable": false + }, + { + "name": "locale", + "in": "query", + "description": "Locale of the receipt. Supported locales include: en-AU, en-CA, en-GB, en-IN, en-US(default).", + "required": false, + "type": "string" + }, + { + "$ref": "#/parameters/FileStream" + } + ], + "responses": { + "202": { + "description": "Request is queued successfully.", + "headers": { + "Operation-Location": { + "type": "string", + "description": "URL containing the resultId used to track the progress and obtain the result of the analyze operation." + } + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Analyze receipt": { + "$ref": "./examples/ReceiptsBatch.json" + } + }, + "x-ms-long-running-operation": true + } + }, + "/prebuilt/receipt/analyzeResults/{resultId}": { + "get": { + "summary": "Get Analyze Receipt Result", + "description": "Track the progress and obtain the result of the analyze receipt operation.", + "operationId": "GetAnalyzeReceiptResult", + "consumes": [], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "resultId", + "in": "path", + "description": "Analyze operation result identifier.", + "required": true, + "type": "string", + "format": "uuid" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/AnalyzeOperationResult" + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get analyze receipt result": { + "$ref": "./examples/ReceiptsBatchResult.json" + } + } + } + }, + "/layout/analyze": { + "post": { + "summary": "Analyze Layout", + "description": "Extract text and layout information from a given document. The input document must be of one of the supported content types - 'application/pdf', 'image/jpeg', 'image/png', 'image/tiff' or 'image/bmp'. Alternatively, use 'application/json' type to specify the location (Uri or local path) of the document to be analyzed.", + "operationId": "AnalyzeLayoutAsync", + "consumes": [ + "application/pdf", + "application/json", + "image/jpeg", + "image/png", + "image/tiff", + "image/bmp" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/FileStream" + }, + { + "$ref": "#/parameters/Pages" + } + ], + "responses": { + "202": { + "description": "Request is queued successfully.", + "headers": { + "Operation-Location": { + "type": "string", + "description": "URL containing the resultId used to track the progress and obtain the result of the analyze operation." + } + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Analyze layout": { + "$ref": "./examples/LayoutBatch.json" + } + }, + "x-ms-long-running-operation": true + } + }, + "/layout/analyzeResults/{resultId}": { + "get": { + "summary": "Get Analyze Layout Result", + "description": "Track the progress and obtain the result of the analyze layout operation", + "operationId": "GetAnalyzeLayoutResult", + "consumes": [], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "resultId", + "in": "path", + "description": "Analyze operation result identifier.", + "required": true, + "type": "string", + "format": "uuid" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/AnalyzeOperationResult" + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get analyze layout result": { + "$ref": "./examples/LayoutBatchResult.json" + } + } + } + } + }, + "x-ms-paths": { + "/custom/models?op=full": { + "get": { + "summary": "List Custom Models", + "description": "Get information about all custom models", + "operationId": "ListCustomModels", + "consumes": [], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "op", + "in": "query", + "description": "Specify whether to return summary or full list of models.", + "required": true, + "type": "string", + "enum": [ + "full" + ] + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/Models" + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink", + "itemName": "modelList" + }, + "x-ms-examples": { + "List custom models": { + "$ref": "./examples/GetModels.json" + } + } + } + }, + "/custom/models?op=summary": { + "get": { + "summary": "Get Custom Models", + "description": "Get information about all custom models", + "operationId": "GetCustomModels", + "consumes": [], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "op", + "in": "query", + "description": "Specify whether to return summary or full list of models.", + "required": true, + "type": "string", + "enum": [ + "summary" + ] + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/Models" + } + }, + "default": { + "description": "Response entity accompanying non-successful responses containing additional details about the error.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-examples": { + "Get models summary": { + "$ref": "./examples/GetModelsSummary.json" + } + } + } + } + }, + "definitions": { + "OperationStatus": { + "type": "string", + "description": "Status of the queued operation.", + "enum": [ + "notStarted", + "running", + "succeeded", + "failed" + ], + "x-ms-enum": { + "name": "OperationStatus", + "modelAsString": false + }, + "x-nullable": false + }, + "CopyAuthorizationResult": { + "description": "Request parameter that contains authorization claims for copy operation.", + "required": [ + "modelId", + "accessToken", + "expirationDateTimeTicks" + ], + "type": "object", + "properties": { + "modelId": { + "description": "Model identifier.", + "type": "string" + }, + "accessToken": { + "description": "Token claim used to authorize the request.", + "type": "string" + }, + "expirationDateTimeTicks": { + "description": "The time when the access token expires. The date is represented as the number of seconds from 1970-01-01T0:0:0Z UTC until the expiration time.", + "type": "integer", + "format": "int64" + } + } + }, + "CopyRequest": { + "description": "Request parameter to copy an existing custom model from the source resource to a target resource referenced by the resource ID.", + "required": [ + "targetResourceId", + "targetResourceRegion", + "copyAuthorization" + ], + "type": "object", + "properties": { + "targetResourceId": { + "description": "Azure Resource Id of the target Form Recognizer resource where the model is copied to.", + "maxLength": 1024, + "type": "string", + "pattern": "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.CognitiveServices/accounts/[^/]*$", + "x-ms-azure-resource": true + }, + "targetResourceRegion": { + "description": "Location of the target Azure resource. A valid Azure region name supported by Cognitive Services.", + "type": "string", + "pattern": "^[a-z0-9]+$", + "minLength": 1, + "maxLength": 24 + }, + "copyAuthorization": { + "description": "Entity that encodes claims to authorize the copy request.", + "$ref": "#/definitions/CopyAuthorizationResult" + } + } + }, + "CopyOperationResult": { + "description": "Status and result of the queued copy operation.", + "type": "object", + "required": [ + "status", + "createdDateTime", + "lastUpdatedDateTime" + ], + "properties": { + "status": { + "description": "Operation status.", + "$ref": "#/definitions/OperationStatus" + }, + "createdDateTime": { + "format": "date-time", + "description": "Date and time (UTC) when the copy operation was submitted.", + "type": "string", + "x-nullable": false + }, + "lastUpdatedDateTime": { + "format": "date-time", + "description": "Date and time (UTC) when the status was last updated.", + "type": "string", + "x-nullable": false + }, + "copyResult": { + "description": "Results of the copy operation.", + "$ref": "#/definitions/CopyResult" + } + } + }, + "CopyResult": { + "description": "Custom model copy result.", + "type": "object", + "required": [ + "modelId" + ], + "properties": { + "modelId": { + "description": "Identifier of the target model.", + "type": "string", + "format": "uuid" + }, + "errors": { + "description": "Errors returned during the copy operation.", + "type": "array", + "items": { + "$ref": "#/definitions/ErrorInformation" + } + } + } + }, + "AnalyzeOperationResult": { + "description": "Status and result of the queued analyze operation.", + "type": "object", + "required": [ + "status", + "createdDateTime", + "lastUpdatedDateTime" + ], + "properties": { + "status": { + "description": "Operation status.", + "$ref": "#/definitions/OperationStatus" + }, + "createdDateTime": { + "format": "date-time", + "description": "Date and time (UTC) when the analyze operation was submitted.", + "type": "string", + "x-nullable": false + }, + "lastUpdatedDateTime": { + "format": "date-time", + "description": "Date and time (UTC) when the status was last updated.", + "type": "string", + "x-nullable": false + }, + "analyzeResult": { + "description": "Results of the analyze operation.", + "$ref": "#/definitions/AnalyzeResult" + } + } + }, + "ModelName": { + "description": "Optional user defined model name (max length: 1024).", + "type": "string", + "x-nullable": false + }, + "TrainRequest": { + "description": "Request parameter to train a new custom model.", + "required": [ + "source" + ], + "type": "object", + "properties": { + "source": { + "description": "Source path containing the training documents.", + "maxLength": 2048, + "minLength": 0, + "type": "string" + }, + "sourceFilter": { + "$ref": "#/definitions/TrainSourceFilter", + "description": "Filter to apply to the documents in the source path for training." + }, + "useLabelFile": { + "description": "Use label file for training a model.", + "type": "boolean", + "default": false + }, + "modelName": { + "$ref": "#/definitions/ModelName" + } + } + }, + "TrainSourceFilter": { + "description": "Filter to apply to the documents in the source path for training.", + "type": "object", + "properties": { + "prefix": { + "description": "A case-sensitive prefix string to filter documents in the source path for training. For example, when using a Azure storage blob Uri, use the prefix to restrict sub folders for training.", + "maxLength": 1024, + "minLength": 0, + "type": "string" + }, + "includeSubFolders": { + "description": "A flag to indicate if sub folders within the set of prefix folders will also need to be included when searching for content to be preprocessed.", + "type": "boolean", + "default": false, + "x-nullable": false + } + } + }, + "TrainResult": { + "description": "Custom model training result.", + "type": "object", + "required": [ + "trainingDocuments" + ], + "properties": { + "trainingDocuments": { + "description": "List of the documents used to train the model and any errors reported in each document.", + "type": "array", + "items": { + "$ref": "#/definitions/TrainingDocumentInfo" + } + }, + "fields": { + "description": "List of fields used to train the model and the train operation error reported by each.", + "type": "array", + "items": { + "$ref": "#/definitions/FormFieldsReport" + } + }, + "averageModelAccuracy": { + "description": "Average accuracy.", + "type": "number", + "x-nullable": false + }, + "modelId": { + "description": "Model identifier.", + "type": "string", + "format": "uuid", + "x-nullable": false + }, + "errors": { + "description": "Errors returned during the training operation.", + "type": "array", + "items": { + "$ref": "#/definitions/ErrorInformation" + } + } + } + }, + "SourcePath": { + "description": "Uri or local path to source data.", + "type": "object", + "properties": { + "source": { + "description": "File source path.", + "maxLength": 2048, + "minLength": 0, + "type": "string" + } + } + }, + "Attributes": { + "description": "Optional model attributes.", + "type": "object", + "properties": { + "isComposed": { + "description": "Is this model composed? (default: false).", + "type": "boolean", + "default": false, + "x-nullable": false + } + } + }, + "ModelInfo": { + "description": "Basic custom model information.", + "type": "object", + "required": [ + "modelId", + "status", + "createdDateTime", + "lastUpdatedDateTime" + ], + "properties": { + "modelId": { + "description": "Model identifier.", + "type": "string", + "format": "uuid", + "x-nullable": false + }, + "status": { + "description": "Status of the model.", + "enum": [ + "creating", + "ready", + "invalid" + ], + "type": "string", + "x-ms-enum": { + "name": "ModelStatus", + "modelAsString": false + }, + "x-nullable": false + }, + "createdDateTime": { + "format": "date-time", + "description": "Date and time (UTC) when the model was created.", + "type": "string", + "x-nullable": false + }, + "lastUpdatedDateTime": { + "format": "date-time", + "description": "Date and time (UTC) when the status was last updated.", + "type": "string", + "x-nullable": false + }, + "modelName": { + "$ref": "#/definitions/ModelName" + }, + "attributes": { + "$ref": "#/definitions/Attributes" + } + } + }, + "Models": { + "description": "Response to the list custom models operation.", + "type": "object", + "properties": { + "summary": { + "description": "Summary of all trained custom models.", + "type": "object", + "required": [ + "count", + "limit", + "lastUpdatedDateTime" + ], + "properties": { + "count": { + "description": "Current count of trained custom models.", + "type": "integer", + "x-nullable": false + }, + "limit": { + "description": "Max number of models that can be trained for this account.", + "type": "integer", + "x-nullable": false + }, + "lastUpdatedDateTime": { + "format": "date-time", + "description": "Date and time (UTC) when the summary was last updated.", + "type": "string", + "x-nullable": false + } + } + }, + "modelList": { + "description": "Collection of trained custom models.", + "type": "array", + "items": { + "$ref": "#/definitions/ModelInfo" + } + }, + "nextLink": { + "description": "Link to the next page of custom models.", + "type": "string" + } + } + }, + "Model": { + "description": "Response to the get custom model operation.", + "type": "object", + "required": [ + "modelInfo" + ], + "properties": { + "modelInfo": { + "$ref": "#/definitions/ModelInfo" + }, + "keys": { + "$ref": "#/definitions/KeysResult" + }, + "trainResult": { + "description": "Training result for custom model.", + "$ref": "#/definitions/TrainResult" + }, + "composedTrainResults": { + "type": "array", + "description": "Training result for composed model.", + "items": { + "$ref": "#/definitions/TrainResult" + } + } + } + }, + "KeysResult": { + "description": "Keys extracted by the custom model.", + "type": "object", + "required": [ + "clusters" + ], + "properties": { + "clusters": { + "description": "Object mapping clusterIds to a list of keys.", + "type": "object", + "additionalProperties": { + "type": "array", + "uniqueItems": true, + "items": { + "type": "string" + } + } + } + } + }, + "TrainingDocumentInfo": { + "description": "Report for a custom model training document.", + "type": "object", + "required": [ + "documentName", + "pages", + "errors", + "status" + ], + "properties": { + "documentName": { + "description": "Training document name.", + "type": "string" + }, + "pages": { + "format": "int32", + "description": "Total number of pages trained.", + "type": "integer", + "x-nullable": false + }, + "errors": { + "description": "List of errors.", + "type": "array", + "items": { + "$ref": "#/definitions/ErrorInformation" + } + }, + "status": { + "description": "Status of the training operation.", + "enum": [ + "succeeded", + "partiallySucceeded", + "failed" + ], + "type": "string", + "x-ms-enum": { + "name": "TrainStatus", + "modelAsString": false + }, + "x-nullable": false + } + } + }, + "FormFieldsReport": { + "description": "Report for a custom model training field.", + "type": "object", + "required": [ + "fieldName", + "accuracy" + ], + "properties": { + "fieldName": { + "description": "Training field name.", + "type": "string" + }, + "accuracy": { + "description": "Estimated extraction accuracy for this field.", + "type": "number", + "x-nullable": false + } + } + }, + "ErrorResponse": { + "type": "object", + "required": [ + "error" + ], + "properties": { + "error": { + "$ref": "#/definitions/ErrorInformation" + } + } + }, + "ErrorInformation": { + "type": "object", + "required": [ + "code", + "message" + ], + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + } + } + }, + "ComposeRequest": { + "description": "Request contract for compose operation.", + "required": [ + "modelIds" + ], + "type": "object", + "properties": { + "modelIds": { + "description": "List of model ids to compose.", + "uniqueItems": false, + "type": "array", + "items": { + "type": "string", + "format": "uuid" + } + }, + "modelName": { + "$ref": "#/definitions/ModelName" + } + } + }, + "AnalyzeResult": { + "description": "Analyze operation result.", + "type": "object", + "required": [ + "version", + "readResults" + ], + "properties": { + "version": { + "description": "Version of schema used for this result.", + "type": "string" + }, + "readResults": { + "description": "Text extracted from the input.", + "type": "array", + "items": { + "$ref": "#/definitions/ReadResult" + } + }, + "pageResults": { + "description": "Page-level information extracted from the input.", + "type": "array", + "items": { + "$ref": "#/definitions/PageResult" + } + }, + "documentResults": { + "description": "Document-level information extracted from the input.", + "type": "array", + "items": { + "$ref": "#/definitions/DocumentResult" + } + }, + "errors": { + "description": "List of errors reported during the analyze operation.", + "type": "array", + "items": { + "$ref": "#/definitions/ErrorInformation" + } + } + } + }, + "ReadResult": { + "description": "Text extracted from a page in the input document.", + "type": "object", + "required": [ + "page", + "angle", + "width", + "height", + "unit" + ], + "properties": { + "page": { + "description": "The 1-based page number in the input document.", + "type": "integer", + "minimum": 1, + "x-nullable": false + }, + "angle": { + "description": "The general orientation of the text in clockwise direction, measured in degrees between (-180, 180].", + "type": "number", + "minimum": -180, + "maximum": 180, + "exclusiveMinimum": true, + "x-nullable": false + }, + "width": { + "description": "The width of the image/PDF in pixels/inches, respectively.", + "type": "number", + "minimum": 0, + "x-nullable": false + }, + "height": { + "description": "The height of the image/PDF in pixels/inches, respectively.", + "type": "number", + "minimum": 0, + "x-nullable": false + }, + "unit": { + "description": "The unit used by the width, height and boundingBox properties. For images, the unit is \"pixel\". For PDF, the unit is \"inch\".", + "type": "string", + "enum": [ + "pixel", + "inch" + ], + "x-ms-enum": { + "name": "LengthUnit", + "modelAsString": false + }, + "x-nullable": false + }, + "language": { + "description": "The detected language on the page overall.", + "$ref": "#/definitions/Language" + }, + "lines": { + "description": "When includeTextDetails is set to true, a list of recognized text lines. The maximum number of lines returned is 300 per page. The lines are sorted top to bottom, left to right, although in certain cases proximity is treated with higher priority. As the sorting order depends on the detected text, it may change across images and OCR version updates. Thus, business logic should be built upon the actual line location instead of order.", + "type": "array", + "items": { + "$ref": "#/definitions/TextLine" + } + }, + "selectionMarks": { + "description": "List of selection marks extracted from the page.", + "type": "array", + "items": { + "$ref": "#/definitions/SelectionMark" + } + } + } + }, + "Language": { + "description": "Language code", + "type": "string", + "enum": [ + "en", + "es" + ], + "x-ms-enum": { + "name": "Language", + "modelAsString": true + }, + "x-nullable": false + }, + "TextLine": { + "description": "An object representing an extracted text line.", + "type": "object", + "required": [ + "text", + "boundingBox", + "words" + ], + "properties": { + "text": { + "description": "The text content of the line.", + "type": "string" + }, + "boundingBox": { + "description": "Bounding box of an extracted line.", + "$ref": "#/definitions/BoundingBox" + }, + "language": { + "description": "The detected language of this line, if different from the overall page language.", + "$ref": "#/definitions/Language" + }, + "words": { + "description": "List of words in the text line.", + "type": "array", + "items": { + "$ref": "#/definitions/TextWord" + } + }, + "appearance": { + "description": "Text appearance properties.", + "$ref": "#/definitions/Appearance" + } + } + }, + "TextWord": { + "description": "An object representing a word.", + "type": "object", + "required": [ + "boundingBox", + "text" + ], + "properties": { + "text": { + "description": "The text content of the word.", + "type": "string" + }, + "boundingBox": { + "description": "Bounding box of an extracted word.", + "$ref": "#/definitions/BoundingBox" + }, + "confidence": { + "description": "Confidence value.", + "$ref": "#/definitions/Confidence" + } + } + }, + "BoundingBox": { + "description": "Quadrangle bounding box, with coordinates specified relative to the top-left of the original image. The eight numbers represent the four points, clockwise from the top-left corner relative to the text orientation. For image, the (x, y) coordinates are measured in pixels. For PDF, the (x, y) coordinates are measured in inches.", + "type": "array", + "minItems": 8, + "maxItems": 8, + "items": { + "type": "number", + "x-nullable": false + } + }, + "PageResult": { + "description": "Extracted information from a single page.", + "type": "object", + "required": [ + "page" + ], + "properties": { + "page": { + "description": "Page number.", + "type": "integer", + "format": "int32", + "minimum": 1, + "x-nullable": false + }, + "clusterId": { + "description": "Cluster identifier.", + "type": "integer", + "format": "int32", + "minimum": 0, + "x-nullable": false + }, + "keyValuePairs": { + "description": "List of key-value pairs extracted from the page.", + "type": "array", + "items": { + "$ref": "#/definitions/KeyValuePair" + } + }, + "tables": { + "description": "List of data tables extracted from the page.", + "type": "array", + "items": { + "$ref": "#/definitions/DataTable" + } + } + } + }, + "KeyValuePair": { + "description": "Information about the extracted key-value pair.", + "type": "object", + "required": [ + "key", + "value", + "confidence" + ], + "properties": { + "label": { + "description": "A user defined label for the key/value pair entry.", + "type": "string" + }, + "key": { + "description": "Information about the extracted key in a key-value pair.", + "$ref": "#/definitions/KeyValueElement" + }, + "value": { + "description": "Information about the extracted value in a key-value pair.", + "$ref": "#/definitions/KeyValueElement" + }, + "confidence": { + "description": "Confidence value.", + "$ref": "#/definitions/Confidence" + } + } + }, + "KeyValueElement": { + "description": "Information about the extracted key or value in a key-value pair.", + "type": "object", + "required": [ + "text" + ], + "properties": { + "type": { + "$ref": "#/definitions/KeyValueType" + }, + "text": { + "description": "The text content of the key or value.", + "type": "string" + }, + "boundingBox": { + "description": "Bounding box of the key or value.", + "$ref": "#/definitions/BoundingBox" + }, + "elements": { + "description": "When includeTextDetails is set to true, a list of references to the text elements constituting this key or value.", + "type": "array", + "items": { + "$ref": "#/definitions/ElementReference" + } + } + } + }, + "KeyValueType": { + "type": "string", + "description": "Semantic data type of the key value element.", + "enum": [ + "string", + "selectionMark" + ], + "x-ms-enum": { + "name": "KeyValueType", + "modelAsString": true + }, + "x-nullable": false + }, + "ElementReference": { + "description": "Reference to a line, word or selection mark.", + "type": "string" + }, + "SelectionMark": { + "description": "Information about the extracted selection mark.", + "type": "object", + "required": [ + "boundingBox", + "confidence", + "state" + ], + "properties": { + "boundingBox": { + "description": "Bounding box of the selection mark.", + "$ref": "#/definitions/BoundingBox" + }, + "confidence": { + "description": "Confidence value.", + "$ref": "#/definitions/Confidence" + }, + "state": { + "description": "State of the selection mark.", + "type": "string", + "enum": [ + "selected", + "unselected" + ] + } + } + }, + "DataTable": { + "description": "Information about the extracted table contained in a page.", + "type": "object", + "required": [ + "rows", + "columns", + "cells" + ], + "properties": { + "rows": { + "description": "Number of rows.", + "type": "integer", + "minimum": 1, + "x-nullable": false + }, + "columns": { + "description": "Number of columns.", + "type": "integer", + "minimum": 1, + "x-nullable": false + }, + "cells": { + "description": "List of cells contained in the table.", + "type": "array", + "items": { + "$ref": "#/definitions/DataTableCell" + } + }, + "boundingBox": { + "description": "Bounding box of the table.", + "$ref": "#/definitions/BoundingBox" + } + } + }, + "DataTableCell": { + "description": "Information about the extracted cell in a table.", + "type": "object", + "required": [ + "rowIndex", + "columnIndex", + "text", + "boundingBox", + "confidence" + ], + "properties": { + "rowIndex": { + "description": "Row index of the cell.", + "type": "integer", + "minimum": 0, + "x-nullable": false + }, + "columnIndex": { + "description": "Column index of the cell.", + "type": "integer", + "minimum": 0, + "x-nullable": false + }, + "rowSpan": { + "description": "Number of rows spanned by this cell.", + "type": "integer", + "minimum": 1, + "default": 1, + "x-nullable": false + }, + "columnSpan": { + "description": "Number of columns spanned by this cell.", + "type": "integer", + "minimum": 1, + "default": 1, + "x-nullable": false + }, + "text": { + "description": "Text content of the cell.", + "type": "string" + }, + "boundingBox": { + "description": "Bounding box of the cell.", + "$ref": "#/definitions/BoundingBox" + }, + "confidence": { + "description": "Confidence value.", + "$ref": "#/definitions/Confidence" + }, + "elements": { + "description": "When includeTextDetails is set to true, a list of references to the text elements constituting this table cell.", + "type": "array", + "items": { + "$ref": "#/definitions/ElementReference" + } + }, + "isHeader": { + "description": "Is the current cell a header cell?", + "type": "boolean", + "default": false, + "x-nullable": false + }, + "isFooter": { + "description": "Is the current cell a footer cell?", + "type": "boolean", + "default": false, + "x-nullable": false + } + } + }, + "DocumentResult": { + "description": "A set of extracted fields corresponding to the input document.", + "type": "object", + "required": [ + "docType", + "pageRange", + "fields" + ], + "properties": { + "docType": { + "description": "Document type.", + "type": "string" + }, + "modelId": { + "description": "Model identifier.", + "type": "string", + "format": "uuid", + "x-nullable": false + }, + "pageRange": { + "description": "First and last page number where the document is found.", + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "type": "integer", + "minimum": 1, + "x-nullable": false + } + }, + "docTypeConfidence": { + "description": "Confidence score.", + "$ref": "#/definitions/Confidence" + }, + "fields": { + "description": "Dictionary of named field values.", + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/FieldValue" + } + } + } + }, + "FieldValue": { + "description": "Recognized field value.", + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "description": "Type of field value.", + "$ref": "#/definitions/FieldValueType" + }, + "valueString": { + "description": "String value.", + "type": "string" + }, + "valueDate": { + "description": "Date value.", + "format": "date", + "type": "string", + "x-nullable": false + }, + "valueTime": { + "description": "Time value.", + "format": "time", + "type": "string", + "x-nullable": false + }, + "valuePhoneNumber": { + "description": "Phone number value.", + "type": "string" + }, + "valueNumber": { + "description": "Floating point value.", + "type": "number", + "x-nullable": false + }, + "valueInteger": { + "description": "Integer value.", + "type": "integer", + "x-nullable": false + }, + "valueArray": { + "description": "Array of field values.", + "type": "array", + "items": { + "$ref": "#/definitions/FieldValue" + } + }, + "valueObject": { + "description": "Dictionary of named field values.", + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/FieldValue" + } + }, + "valueSelectionMark": { + "description": "Selection mark value.", + "type": "string", + "enum": [ + "selected", + "unselected" + ], + "x-nullable": false + }, + "text": { + "description": "Text content of the extracted field.", + "type": "string" + }, + "boundingBox": { + "description": "Bounding box of the field value, if appropriate.", + "$ref": "#/definitions/BoundingBox" + }, + "confidence": { + "description": "Confidence score.", + "$ref": "#/definitions/Confidence" + }, + "elements": { + "description": "When includeTextDetails is set to true, a list of references to the text elements constituting this field.", + "type": "array", + "items": { + "$ref": "#/definitions/ElementReference" + } + }, + "page": { + "description": "The 1-based page number in the input document.", + "type": "integer", + "minimum": 1, + "x-nullable": false + } + } + }, + "FieldValueType": { + "type": "string", + "description": "Semantic data type of the field value.", + "enum": [ + "string", + "date", + "time", + "phoneNumber", + "number", + "integer", + "array", + "object", + "selectionMark" + ], + "x-ms-enum": { + "name": "FieldValueType", + "modelAsString": false + }, + "x-nullable": false + }, + "Confidence": { + "description": "Confidence value.", + "type": "number", + "minimum": 0, + "maximum": 1, + "x-nullable": false + }, + "Appearance": { + "description": "An object representing the appearance of the text line.", + "type": "object", + "required": [ + "style" + ], + "properties": { + "style": { + "description": "An object representing the style of the text line.", + "type": "object", + "$ref": "#/definitions/Style" + } + } + }, + "Style": { + "description": "An object representing the style of the text line.", + "type": "object", + "required": [ + "name", + "confidence" + ], + "properties": { + "name": { + "description": "The text line style name, including handwriting and other.", + "type": "string", + "x-ms-enum": { + "name": "TextStyle", + "modelAsString": true + }, + "enum": [ + "other", + "handwriting" + ] + }, + "confidence": { + "description": "The confidence of text line style.", + "type": "number", + "format": "float" + } + } + } + }, + "parameters": { + "Endpoint": { + "name": "endpoint", + "description": "Supported Cognitive Services endpoints (protocol and hostname, for example: https://westus2.api.cognitive.microsoft.com).", + "x-ms-parameter-location": "client", + "required": true, + "type": "string", + "in": "path", + "x-ms-skip-url-encoding": true + }, + "FileStream": { + "name": "fileStream", + "description": ".json, .pdf, .jpg, .png or .tiff type file stream.", + "x-ms-parameter-location": "method", + "in": "body", + "schema": { + "$ref": "#/definitions/SourcePath" + } + }, + "Pages": { + "name": "Pages", + "in": "query", + "description": "Custom page numbers for multi-page documents(PDF/TIFF), input the number of the pages you want to get OCR result. For a range of pages, use a hyphen. Separate each page or range with a comma or space.", + "required": false, + "x-ms-parameter-location": "method", + "type": "array", + "items": { + "type": "string", + "pattern": "(^[0-9]+-[0-9]+$)|(^[0-9]+$)" + } + } + } +} \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormRecognizerClient/FormRecognizerClientLiveTests.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormRecognizerClient/FormRecognizerClientLiveTests.cs index f937623603570..29cc581708f16 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormRecognizerClient/FormRecognizerClientLiveTests.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormRecognizerClient/FormRecognizerClientLiveTests.cs @@ -43,6 +43,7 @@ public void FormRecognizerClientCannotAuthenticateWithFakeApiKey() } [Test] + [Ignore("AAD not supported")] public async Task FormRecognizerClientCanAuthenticateWithTokenCredential() { var client = CreateFormRecognizerClient(useTokenCredential: true); @@ -122,12 +123,12 @@ public async Task StartRecognizeContentPopulatesFormPagePdf(bool useStream) var table = formPage.Tables.Single(); - Assert.AreEqual(2, table.RowCount); + Assert.AreEqual(3, table.RowCount); Assert.AreEqual(6, table.ColumnCount); var cells = table.Cells.ToList(); - Assert.AreEqual(10, cells.Count); + Assert.AreEqual(11, cells.Count); var expectedText = new string[2, 6] { @@ -142,22 +143,31 @@ public async Task StartRecognizeContentPopulatesFormPagePdf(bool useStream) Assert.GreaterOrEqual(cell.ColumnIndex, 0, $"Cell with text {cell.Text} should have column index greater than or equal to zero."); Assert.Less(cell.ColumnIndex, table.ColumnCount, $"Cell with text {cell.Text} should have column index less than {table.ColumnCount}."); - // There's a single cell in the table (row = 1, column = 3) that has a column span of 2. - - var expectedColumnSpan = (cell.RowIndex == 1 && cell.ColumnIndex == 3) ? 2 : 1; - - Assert.AreEqual(1, cell.RowSpan, $"Cell with text {cell.Text} should have a row span of 1."); + // Column = 3 has a column span of 2. + var expectedColumnSpan = cell.ColumnIndex == 3 ? 2 : 1; Assert.AreEqual(expectedColumnSpan, cell.ColumnSpan, $"Cell with text {cell.Text} should have a column span of {expectedColumnSpan}."); - Assert.AreEqual(expectedText[cell.RowIndex, cell.ColumnIndex], cell.Text); + // Row = 1 and columns 0-4 have a row span of 2. + var expectedRowSpan = (cell.RowIndex == 1 && cell.ColumnIndex != 5) ? 2 : 1; + Assert.AreEqual(expectedRowSpan, cell.RowSpan, $"Cell with text {cell.Text} should have a row span of {expectedRowSpan}."); Assert.IsFalse(cell.IsFooter, $"Cell with text {cell.Text} should not have been classified as footer."); Assert.IsFalse(cell.IsHeader, $"Cell with text {cell.Text} should not have been classified as header."); Assert.GreaterOrEqual(cell.Confidence, 0, $"Cell with text {cell.Text} should have confidence greater or equal to zero."); - Assert.LessOrEqual(cell.RowIndex, 1, $"Cell with text {cell.Text} should have a row index less than or equal to one."); + Assert.LessOrEqual(cell.RowIndex, 2, $"Cell with text {cell.Text} should have a row index less than or equal to two."); - Assert.Greater(cell.FieldElements.Count, 0, $"Cell with text {cell.Text} should have at least one field element."); + // row = 2, column = 5 has empty text and no elements + if (cell.RowIndex == 2 && cell.ColumnIndex == 5) + { + Assert.IsEmpty(cell.Text); + Assert.AreEqual(0, cell.FieldElements.Count); + } + else + { + Assert.AreEqual(expectedText[cell.RowIndex, cell.ColumnIndex], cell.Text); + Assert.Greater(cell.FieldElements.Count, 0, $"Cell with text {cell.Text} should have at least one field element."); + } } } @@ -214,40 +224,49 @@ public async Task StartRecognizeContentPopulatesFormPageJpg(bool useStream) Assert.AreEqual(2, formPage.Tables.Count); - var sampleTable = formPage.Tables.First(); + var sampleTable = formPage.Tables[1]; Assert.AreEqual(4, sampleTable.RowCount); - Assert.AreEqual(3, sampleTable.ColumnCount); + Assert.AreEqual(2, sampleTable.ColumnCount); var cells = sampleTable.Cells.ToList(); - Assert.AreEqual(7, cells.Count); + Assert.AreEqual(8, cells.Count); - var expectedText = new string[4, 3] + var expectedText = new string[4, 2] { - { "", "", "" }, - { "", "SUBTOTAL", "$140.00" }, - { "", "TAX", "$4.00" }, - { "Bernie Sanders", "TOTAL", "$144.00" } + { "SUBTOTAL", "$140.00" }, + { "TAX", "$4.00" }, + { "", ""}, + { "TOTAL", "$144.00" } }; - foreach (var cell in cells) + for (int i = 0; i < cells.Count; i++) { - Assert.GreaterOrEqual(cell.RowIndex, 0, $"Cell with text {cell.Text} should have row index greater than or equal to zero."); - Assert.Less(cell.RowIndex, sampleTable.RowCount, $"Cell with text {cell.Text} should have row index less than {sampleTable.RowCount}."); - Assert.GreaterOrEqual(cell.ColumnIndex, 0, $"Cell with text {cell.Text} should have column index greater than or equal to zero."); - Assert.Less(cell.ColumnIndex, sampleTable.ColumnCount, $"Cell with text {cell.Text} should have column index less than {sampleTable.ColumnCount}."); + Assert.GreaterOrEqual(cells[i].RowIndex, 0, $"Cell with text {cells[i].Text} should have row index greater than or equal to zero."); + Assert.Less(cells[i].RowIndex, sampleTable.RowCount, $"Cell with text {cells[i].Text} should have row index less than {sampleTable.RowCount}."); + Assert.GreaterOrEqual(cells[i].ColumnIndex, 0, $"Cell with text {cells[i].Text} should have column index greater than or equal to zero."); + Assert.Less(cells[i].ColumnIndex, sampleTable.ColumnCount, $"Cell with text {cells[i].Text} should have column index less than {sampleTable.ColumnCount}."); - Assert.AreEqual(1, cell.RowSpan, $"Cell with text {cell.Text} should have a row span of 1."); - Assert.AreEqual(1, cell.ColumnSpan, $"Cell with text {cell.Text} should have a column span of 1."); + Assert.AreEqual(1, cells[i].RowSpan, $"Cell with text {cells[i].Text} should have a row span of 1."); + Assert.AreEqual(1, cells[i].ColumnSpan, $"Cell with text {cells[i].Text} should have a column span of 1."); - Assert.AreEqual(expectedText[cell.RowIndex, cell.ColumnIndex], cell.Text); + Assert.AreEqual(expectedText[cells[i].RowIndex, cells[i].ColumnIndex], cells[i].Text); - Assert.IsFalse(cell.IsFooter, $"Cell with text {cell.Text} should not have been classified as footer."); - Assert.IsFalse(cell.IsHeader, $"Cell with text {cell.Text} should not have been classified as header."); + Assert.IsFalse(cells[i].IsFooter, $"Cell with text {cells[i].Text} should not have been classified as footer."); + Assert.IsFalse(cells[i].IsHeader, $"Cell with text {cells[i].Text} should not have been classified as header."); - Assert.GreaterOrEqual(cell.Confidence, 0, $"Cell with text {cell.Text} should have confidence greater or equal to zero."); - Assert.Greater(cell.FieldElements.Count, 0, $"Cell with text {cell.Text} should have at least one field element."); + Assert.GreaterOrEqual(cells[i].Confidence, 0, $"Cell with text {cells[i].Text} should have confidence greater or equal to zero."); + + // Empty row + if (cells[i].RowIndex != 2) + { + Assert.Greater(cells[i].FieldElements.Count, 0, $"Cell with text {cells[i].Text} should have at least one field element."); + } + else + { + Assert.AreEqual(0, cells[i].FieldElements.Count); + } } } @@ -421,8 +440,8 @@ public async Task StartRecognizeContentWithSelectionMarks(bool useStream) /// Recognizer cognitive service and perform analysis of receipts. /// [Test] - [TestCase(true)] - [TestCase(false)] + [TestCase(true, Ignore = "Not supported")] + [TestCase(false, Ignore = "Not supported")] public async Task StartRecognizeReceiptsPopulatesExtractedReceiptJpg(bool useStream) { var client = CreateFormRecognizerClient(); @@ -532,8 +551,8 @@ public async Task StartRecognizeReceiptsPopulatesExtractedReceiptJpg(bool useStr } [Test] - [TestCase(true)] - [TestCase(false)] + [TestCase(true, Ignore = "Not supported")] + [TestCase(false, Ignore = "Not supported")] public async Task StartRecognizeReceiptsPopulatesExtractedReceiptPng(bool useStream) { var client = CreateFormRecognizerClient(); @@ -646,8 +665,8 @@ public async Task StartRecognizeReceiptsPopulatesExtractedReceiptPng(bool useStr } [Test] - [TestCase(true)] - [TestCase(false)] + [TestCase(true, Ignore = "Not supported")] + [TestCase(false, Ignore = "Not supported")] public async Task StartRecognizeReceiptsCanParseMultipageForm(bool useStream) { var client = CreateFormRecognizerClient(); @@ -702,6 +721,7 @@ public async Task StartRecognizeReceiptsCanParseMultipageForm(bool useStream) } [Test] + [Ignore("Not supported")] public async Task StartRecognizeReceiptsCanParseBlankPage() { var client = CreateFormRecognizerClient(); @@ -733,6 +753,7 @@ public async Task StartRecognizeReceiptsCanParseBlankPage() } [Test] + [Ignore("Not supported")] public async Task StartRecognizeReceiptsCanParseMultipageFormWithBlankPage() { var client = CreateFormRecognizerClient(); @@ -785,6 +806,7 @@ public async Task StartRecognizeReceiptsCanParseMultipageFormWithBlankPage() } [Test] + [Ignore("Not supported")] public void StartRecognizeReceiptsThrowsForDamagedFile() { var client = CreateFormRecognizerClient(); @@ -803,6 +825,7 @@ public void StartRecognizeReceiptsThrowsForDamagedFile() /// Recognizer cognitive service and handle returned errors. /// [Test] + [Ignore("Not supported")] public void StartRecognizeReceiptsFromUriThrowsForNonExistingContent() { var client = CreateFormRecognizerClient(); @@ -813,8 +836,8 @@ public void StartRecognizeReceiptsFromUriThrowsForNonExistingContent() } [Test] - [TestCase("en-US")] - [TestCase("")] + [TestCase("en-US", Ignore = "Not supported")] + [TestCase("", Ignore = "Not supported")] public async Task StartRecognizeReceiptsWithSupportedLocale(string locale) { var client = CreateFormRecognizerClient(); @@ -851,6 +874,7 @@ public async Task StartRecognizeReceiptsWithSupportedLocale(string locale) } [Test] + [Ignore("Not supported")] public void StartRecognizeReceiptsWithWrongLocale() { var client = CreateFormRecognizerClient(); @@ -865,8 +889,8 @@ public void StartRecognizeReceiptsWithWrongLocale() #region StartRecognizeBusinessCards [Test] - [TestCase(true)] - [TestCase(false) ] + [TestCase(true, Ignore = "Not supported")] + [TestCase(false, Ignore = "Not supported") ] public async Task StartRecognizeBusinessCardsPopulatesExtractedJpg(bool useStream) { var client = CreateFormRecognizerClient(); @@ -972,8 +996,8 @@ public async Task StartRecognizeBusinessCardsPopulatesExtractedJpg(bool useStrea } [Test] - [TestCase(true)] - [TestCase(false)] + [TestCase(true, Ignore = "Not supported")] + [TestCase(false, Ignore = "Not supported")] public async Task StartRecognizeBusinessCardsPopulatesExtractedPng(bool useStream) { var client = CreateFormRecognizerClient(); @@ -1079,6 +1103,7 @@ public async Task StartRecognizeBusinessCardsPopulatesExtractedPng(bool useStrea } [Test] + [Ignore("Not supported")] public async Task StartRecognizeBusinessCardsIncludeFieldElements() { var client = CreateFormRecognizerClient(); @@ -1103,6 +1128,7 @@ public async Task StartRecognizeBusinessCardsIncludeFieldElements() } [Test] + [Ignore("Not supported")] public async Task StartRecognizeBusinessCardsCanParseBlankPage() { var client = CreateFormRecognizerClient(); @@ -1135,6 +1161,7 @@ public async Task StartRecognizeBusinessCardsCanParseBlankPage() } [Test] + [Ignore("Not supported")] public void StartRecognizeBusinessCardsThrowsForDamagedFile() { var client = CreateFormRecognizerClient(); @@ -1153,6 +1180,7 @@ public void StartRecognizeBusinessCardsThrowsForDamagedFile() /// Recognizer cognitive service and handle returned errors. /// [Test] + [Ignore("Not supported")] public void StartRecognizeBusinessCardsFromUriThrowsForNonExistingContent() { var client = CreateFormRecognizerClient(); @@ -1163,8 +1191,8 @@ public void StartRecognizeBusinessCardsFromUriThrowsForNonExistingContent() } [Test] - [TestCase(true)] - [TestCase(false)] + [TestCase(true, Ignore = "Not supported")] + [TestCase(false, Ignore = "Not supported")] public async Task StartRecognizeBusinessCardsCanParseMultipageForm(bool useStream) { var client = CreateFormRecognizerClient(); diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormTrainingClient/FormTrainingClientLiveTests.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormTrainingClient/FormTrainingClientLiveTests.cs index 92cc718768e13..8ceed006ca395 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormTrainingClient/FormTrainingClientLiveTests.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/FormTrainingClient/FormTrainingClientLiveTests.cs @@ -38,6 +38,7 @@ public void FormTrainingClientCannotAuthenticateWithFakeApiKey() } [Test] + [Ignore("AAD Not supported")] public async Task FormTrainingClientCanAuthenticateWithTokenCredential() { var client = CreateFormTrainingClient(useTokenCredential: true); diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/Models/OperationsLiveTests.cs b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/Models/OperationsLiveTests.cs index 983634ef3c81e..5c3d41b821cc1 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/Models/OperationsLiveTests.cs +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/Models/OperationsLiveTests.cs @@ -46,6 +46,7 @@ public async Task RecognizeContentOperationCanPollFromNewObject() } [Test] + [Ignore("Not supported")] public async Task RecognizeReceiptsOperationCanPollFromNewObject() { // Skip instrumenting here because the internal service client passed to the operation object would be made null otherwise, diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCannotAuthenticateWithFakeApiKey.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCannotAuthenticateWithFakeApiKey.json index de99ce35c9bb7..44a21c35272ee 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCannotAuthenticateWithFakeApiKey.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCannotAuthenticateWithFakeApiKey.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "279674", "Content-Type": "image/jpeg", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d343938fae336247bdd76332cad74a0a-36870bbf0de60043-00", + "traceparent": "00-0df2c0ba0b950e448f1bd50c148b4ff6-bb8988e031feff4e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d2c419df796518d9b352aefb451d0172", "x-ms-return-client-request-id": "true" @@ -20,13 +20,13 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Length": "224", - "Date": "Wed, 09 Sep 2020 22:28:19 GMT" + "Date": "Fri, 30 Oct 2020 12:50:27 GMT" }, "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" } ], "Variables": { - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1540698561" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCannotAuthenticateWithFakeApiKeyAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCannotAuthenticateWithFakeApiKeyAsync.json index 17b48a31ebd04..c4f5b592a2c28 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCannotAuthenticateWithFakeApiKeyAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/FormRecognizerClientCannotAuthenticateWithFakeApiKeyAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "279674", "Content-Type": "image/jpeg", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e33ddf0151e2af4c86125d9a964dbe81-686b9cc70ddb0742-00", + "traceparent": "00-46d64c74c3e1fb4baf024fb2ca861c63-98d7ee9c6b31f944-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "515eb0f0c85ee45570344f2d4336ab40", "x-ms-return-client-request-id": "true" @@ -20,13 +20,13 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Length": "224", - "Date": "Wed, 09 Sep 2020 22:33:12 GMT" + "Date": "Fri, 30 Oct 2020 12:56:42 GMT" }, "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" } ], "Variables": { - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "855311763" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseBlankPage.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseBlankPage.json index bb8694909f656..7a16c8ace4ce6 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseBlankPage.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseBlankPage.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "25662", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5812014c96ac9a449f86e592bf91121a-abd6d632711c8741-00", + "traceparent": "00-6309c65da9b5e64f877bbba145094295-72fbfe1ebdf57a4f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7ff6bd72cc5799c75d4f016d27d09500", "x-ms-return-client-request-id": "true" @@ -19,25 +19,25 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "80797026-e20f-47e7-9ef5-2a0365591bd8", + "apim-request-id": "2184e156-e35a-4f3b-88f0-25b0522821b7", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:28:19 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/80797026-e20f-47e7-9ef5-2a0365591bd8", + "Date": "Fri, 30 Oct 2020 12:50:28 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/2184e156-e35a-4f3b-88f0-25b0522821b7", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/80797026-e20f-47e7-9ef5-2a0365591bd8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/2184e156-e35a-4f3b-88f0-25b0522821b7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0b2306af61959bdc14aff49d748a4e93", "x-ms-return-client-request-id": "true" @@ -45,29 +45,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa6284a9-8838-4d20-9e09-3091674eacfe", + "apim-request-id": "45129e77-5488-4e84-aeaa-3fcb30eae377", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:19 GMT", + "Date": "Fri, 30 Oct 2020 12:50:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:28:19Z", - "lastUpdatedDateTime": "2020-09-09T22:28:19Z" + "createdDateTime": "2020-10-30T12:50:29Z", + "lastUpdatedDateTime": "2020-10-30T12:50:29Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/80797026-e20f-47e7-9ef5-2a0365591bd8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/2184e156-e35a-4f3b-88f0-25b0522821b7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "04a75681ac23dea0d65d6b7f4f8db970", "x-ms-return-client-request-id": "true" @@ -75,29 +75,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d85e0503-f582-4a9b-8353-25bc98f1fdb9", + "apim-request-id": "f8f9ea77-088e-4655-b8ac-4df8d87a2051", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:20 GMT", + "Date": "Fri, 30 Oct 2020 12:50:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:28:19Z", - "lastUpdatedDateTime": "2020-09-09T22:28:19Z" + "createdDateTime": "2020-10-30T12:50:29Z", + "lastUpdatedDateTime": "2020-10-30T12:50:29Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/80797026-e20f-47e7-9ef5-2a0365591bd8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/2184e156-e35a-4f3b-88f0-25b0522821b7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "77c57c11bb3d10dde15b6ba7d82a25d3", "x-ms-return-client-request-id": "true" @@ -105,29 +105,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "effd762c-b6c7-49ce-91af-661eb2c8475e", + "apim-request-id": "1b8dc6c8-9400-4f29-8e19-c53c05500a4d", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:21 GMT", + "Date": "Fri, 30 Oct 2020 12:50:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:28:19Z", - "lastUpdatedDateTime": "2020-09-09T22:28:19Z" + "createdDateTime": "2020-10-30T12:50:29Z", + "lastUpdatedDateTime": "2020-10-30T12:50:29Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/80797026-e20f-47e7-9ef5-2a0365591bd8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/2184e156-e35a-4f3b-88f0-25b0522821b7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d1ec6d01912903dd65443538f65d4c86", "x-ms-return-client-request-id": "true" @@ -135,29 +135,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50ec6165-f9d6-45d8-9a63-f0895bab36a8", + "apim-request-id": "8b074f0d-2fc7-46c2-91a5-ad50a7405b5f", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:22 GMT", + "Date": "Fri, 30 Oct 2020 12:50:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:28:19Z", - "lastUpdatedDateTime": "2020-09-09T22:28:19Z" + "createdDateTime": "2020-10-30T12:50:29Z", + "lastUpdatedDateTime": "2020-10-30T12:50:29Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/80797026-e20f-47e7-9ef5-2a0365591bd8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/2184e156-e35a-4f3b-88f0-25b0522821b7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f78c83f6d6c5c556799623c740f806ac", "x-ms-return-client-request-id": "true" @@ -165,56 +165,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "072233f8-e13b-449a-a719-9b8107411158", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:28:19Z", - "lastUpdatedDateTime": "2020-09-09T22:28:19Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/80797026-e20f-47e7-9ef5-2a0365591bd8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e17d9838e8a07f479ec112f886a51983", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a1213b02-f70b-48c6-ba51-eeb0a6a1e35e", - "Content-Length": "277", + "apim-request-id": "93798b5d-21c2-4c46-bd00-c17328e464f0", + "Content-Length": "269", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:24 GMT", + "Date": "Fri, 30 Oct 2020 12:50:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:28:19Z", - "lastUpdatedDateTime": "2020-09-09T22:28:24Z", + "createdDateTime": "2020-10-30T12:50:29Z", + "lastUpdatedDateTime": "2020-10-30T12:50:33Z", "analyzeResult": { "version": "2.1.0", "readResults": [ { "page": 1, "angle": 0, - "width": 8.4967, - "height": 10.9967, + "width": 8.5, + "height": 11, "unit": "inch", "lines": [] } @@ -231,7 +201,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1998675836" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseBlankPageAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseBlankPageAsync.json index 1f172913530b1..7f78f67cc0d96 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseBlankPageAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseBlankPageAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "25662", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4eaa1bd060f0724082f8b554038cd56f-2e9fdc3357aa254d-00", + "traceparent": "00-b24a79743e966f479327eff276a00b63-7c7fbd72fb3f614e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "699ec42bf063032e3895a0bb4a72a23d", "x-ms-return-client-request-id": "true" @@ -19,25 +19,25 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "981a0e0e-ca0a-4691-a897-ab3af1020076", + "apim-request-id": "56a512d9-65f9-4611-9d52-2688a1d97ea0", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:33:12 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/981a0e0e-ca0a-4691-a897-ab3af1020076", + "Date": "Fri, 30 Oct 2020 12:56:42 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/56a512d9-65f9-4611-9d52-2688a1d97ea0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/981a0e0e-ca0a-4691-a897-ab3af1020076", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/56a512d9-65f9-4611-9d52-2688a1d97ea0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8e645de96fdf7a82d73d820be9b6ff95", "x-ms-return-client-request-id": "true" @@ -45,29 +45,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37e83f41-128e-46cf-bed3-11dbdcead097", + "apim-request-id": "f0f25ad5-c075-42de-8729-61ac8222286d", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:12 GMT", + "Date": "Fri, 30 Oct 2020 12:56:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:33:13Z", - "lastUpdatedDateTime": "2020-09-09T22:33:13Z" + "createdDateTime": "2020-10-30T12:56:43Z", + "lastUpdatedDateTime": "2020-10-30T12:56:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/981a0e0e-ca0a-4691-a897-ab3af1020076", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/56a512d9-65f9-4611-9d52-2688a1d97ea0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "016f17f7e161340db2014c1b9bee1bfa", "x-ms-return-client-request-id": "true" @@ -75,29 +75,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "09526259-d2d2-4cfa-baad-ab260705d046", + "apim-request-id": "01c4262a-52fb-4257-8ab9-0bc3809dd110", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:13 GMT", + "Date": "Fri, 30 Oct 2020 12:56:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:33:13Z", - "lastUpdatedDateTime": "2020-09-09T22:33:13Z" + "createdDateTime": "2020-10-30T12:56:43Z", + "lastUpdatedDateTime": "2020-10-30T12:56:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/981a0e0e-ca0a-4691-a897-ab3af1020076", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/56a512d9-65f9-4611-9d52-2688a1d97ea0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e590e6404303bc2c422392256e231a81", "x-ms-return-client-request-id": "true" @@ -105,29 +105,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0f6f59bc-d3b9-4624-bd06-540dd0d53d56", + "apim-request-id": "22108770-dd20-43f5-88f3-9783e092f83a", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:14 GMT", + "Date": "Fri, 30 Oct 2020 12:56:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:33:13Z", - "lastUpdatedDateTime": "2020-09-09T22:33:13Z" + "createdDateTime": "2020-10-30T12:56:43Z", + "lastUpdatedDateTime": "2020-10-30T12:56:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/981a0e0e-ca0a-4691-a897-ab3af1020076", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/56a512d9-65f9-4611-9d52-2688a1d97ea0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "32c40b95a00208dc502fdcde2266dee8", "x-ms-return-client-request-id": "true" @@ -135,29 +135,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f23ca78b-a678-48fd-825b-76fd122b5db0", + "apim-request-id": "58865460-0df0-40f4-85a4-373b042643b7", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:15 GMT", + "Date": "Fri, 30 Oct 2020 12:56:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:33:13Z", - "lastUpdatedDateTime": "2020-09-09T22:33:13Z" + "createdDateTime": "2020-10-30T12:56:43Z", + "lastUpdatedDateTime": "2020-10-30T12:56:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/981a0e0e-ca0a-4691-a897-ab3af1020076", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/56a512d9-65f9-4611-9d52-2688a1d97ea0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "02ca87221a26b491ebb2bf3d4ee7c68f", "x-ms-return-client-request-id": "true" @@ -165,26 +165,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a11cce7-9893-429a-81ae-f606e52895aa", - "Content-Length": "277", + "apim-request-id": "4f3d1c07-725a-4300-9505-0aa5824d25a8", + "Content-Length": "269", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:16 GMT", + "Date": "Fri, 30 Oct 2020 12:56:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:33:13Z", - "lastUpdatedDateTime": "2020-09-09T22:33:17Z", + "createdDateTime": "2020-10-30T12:56:43Z", + "lastUpdatedDateTime": "2020-10-30T12:56:48Z", "analyzeResult": { "version": "2.1.0", "readResults": [ { "page": 1, "angle": 0, - "width": 8.4967, - "height": 10.9967, + "width": 8.5, + "height": 11, "unit": "inch", "lines": [] } @@ -201,7 +201,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "902934581" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(False).json index 5b5040932c687..b1b0b1f19ec09 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f13f96b0371bd3488d9fd328528e5096-bace6fe039f3a14f-00", + "traceparent": "00-a237f662c45e9b47bc0baabba1752cca-10a0867f55bf5245-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0c8713a4b9a7934f73f3818ce890b454", "x-ms-return-client-request-id": "true" @@ -21,25 +21,25 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3f59b176-9d65-4b75-a766-1f470838e8be", + "apim-request-id": "588594fe-25ed-4c37-b290-d51b0ef6364b", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:29:44 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/3f59b176-9d65-4b75-a766-1f470838e8be", + "Date": "Fri, 30 Oct 2020 12:51:36 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/588594fe-25ed-4c37-b290-d51b0ef6364b", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "797" + "x-envoy-upstream-service-time": "802" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/3f59b176-9d65-4b75-a766-1f470838e8be", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/588594fe-25ed-4c37-b290-d51b0ef6364b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3cba389ce393dedebd3fecc4a2fe8023", "x-ms-return-client-request-id": "true" @@ -47,29 +47,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12aa467f-d314-40c4-a0d3-52f89eaba5bb", + "apim-request-id": "dac8f220-0997-48c4-962d-141019eba46d", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:44 GMT", + "Date": "Fri, 30 Oct 2020 12:51:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:45Z", - "lastUpdatedDateTime": "2020-09-09T22:29:45Z" + "createdDateTime": "2020-10-30T12:51:37Z", + "lastUpdatedDateTime": "2020-10-30T12:51:37Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/3f59b176-9d65-4b75-a766-1f470838e8be", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/588594fe-25ed-4c37-b290-d51b0ef6364b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "28f33ba169d2af016e2259f94d011305", "x-ms-return-client-request-id": "true" @@ -77,29 +77,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7d4a04e-d498-4a45-93e3-1dda005551b4", + "apim-request-id": "44ea7c4a-5ebb-43a0-9c57-b76497f6ba1d", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:45 GMT", + "Date": "Fri, 30 Oct 2020 12:51:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:45Z", - "lastUpdatedDateTime": "2020-09-09T22:29:45Z" + "createdDateTime": "2020-10-30T12:51:37Z", + "lastUpdatedDateTime": "2020-10-30T12:51:37Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/3f59b176-9d65-4b75-a766-1f470838e8be", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/588594fe-25ed-4c37-b290-d51b0ef6364b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3de6d46ca473c1e634a94f68cc8af075", "x-ms-return-client-request-id": "true" @@ -107,29 +107,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8f43a712-be08-449f-802d-d215bc7c514c", + "apim-request-id": "acd8dbaf-00c9-40b0-a8ec-feb020078ee9", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:46 GMT", + "Date": "Fri, 30 Oct 2020 12:51:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:45Z", - "lastUpdatedDateTime": "2020-09-09T22:29:45Z" + "createdDateTime": "2020-10-30T12:51:37Z", + "lastUpdatedDateTime": "2020-10-30T12:51:37Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/3f59b176-9d65-4b75-a766-1f470838e8be", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/588594fe-25ed-4c37-b290-d51b0ef6364b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "adea5d738b9d3381360acd708ae590bb", "x-ms-return-client-request-id": "true" @@ -137,110 +137,50 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2aa05598-c8c1-4212-aef9-02411f73b28c", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:47 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:29:45Z", - "lastUpdatedDateTime": "2020-09-09T22:29:45Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/3f59b176-9d65-4b75-a766-1f470838e8be", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cd58e72c4218fdb05431f3281999e2e3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cc235a05-3c94-4dc0-a2be-ab6fa937e3a4", + "apim-request-id": "39a84248-de51-407d-8bd7-00cacdeb5246", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:29:45Z", - "lastUpdatedDateTime": "2020-09-09T22:29:45Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/3f59b176-9d65-4b75-a766-1f470838e8be", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f085e4316517e06752b30669d676374f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8ba84cdf-4341-4915-bc77-24f0dcf06d40", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:49 GMT", + "Date": "Fri, 30 Oct 2020 12:51:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:45Z", - "lastUpdatedDateTime": "2020-09-09T22:29:45Z" + "createdDateTime": "2020-10-30T12:51:37Z", + "lastUpdatedDateTime": "2020-10-30T12:51:37Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/3f59b176-9d65-4b75-a766-1f470838e8be", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/588594fe-25ed-4c37-b290-d51b0ef6364b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e53c94182332305cadec586b9758199d", + "x-ms-client-request-id": "cd58e72c4218fdb05431f3281999e2e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b1a6ba3d-10e0-41f0-9f4f-c61cfe1386af", - "Content-Length": "33148", + "apim-request-id": "119d9b15-ab21-4bce-962b-51d7f5afcfc3", + "Content-Length": "36134", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:50 GMT", + "Date": "Fri, 30 Oct 2020 12:51:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "27" }, - "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-09-09T22:29:45Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-09-09T22:29:51Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0,10.2725,1.0372,10.2725,1.0372,10.9925,0,10.9925],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0,10.6019,1.5095,10.6019,1.5095,10.9983,0,10.9983],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[2.9381,6.9634,3.0388,6.9634,3.0388,7.0736,2.9381,7.0736],\u0022confidence\u0022:0.553,\u0022state\u0022:\u0022unselected\u0022}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0.0024,9.869,1.0826,9.869,1.0826,10.9955,0.0024,10.9955],\u0022confidence\u0022:0.833,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[7.6562,1.0157,8.5,1.0157,8.5,2.8293,7.6562,2.8293],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0.0008,10.4758,1.8164,10.4758,1.8164,10.9978,0.0008,10.9978],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:20,\u0022columns\u0022:3,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[1.0033,4.6517,2.625,4.6517,2.625,4.8617,1.0033,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.625,4.6517,5.75,4.6517,5.75,4.8617,2.625,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.75,4.6517,7.4967,4.6517,7.4967,4.8617,5.75,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,4.8617,2.625,4.8617,2.625,5.0833,1.0033,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,4.8617,5.75,4.8617,5.75,5.0833,2.625,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022,\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.75,4.8617,7.4967,4.8617,7.4967,5.0833,5.75,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Pre-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,5.0833,5.75,5.0833,5.75,5.3056,2.625,5.3056],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,5.3056,5.75,5.3056,5.75,5.5139,2.625,5.5139],\u0022elements\u0022:[\u0022#/readResults/0/lines/19/words/0\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,5.5139,5.75,5.5139,5.75,5.7361,2.625,5.7361],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.625,5.7361,5.75,5.7361,5.75,5.93,2.625,5.93],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,5.93,2.625,5.93,2.625,6.1528,1.0033,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,5.93,5.75,5.93,5.75,6.1528,2.625,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.75,5.93,7.4967,5.93,7.4967,6.1528,5.75,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Post-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,6.1528,5.75,6.1528,5.75,6.375,2.625,6.375],\u0022elements\u0022:[\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,6.375,5.75,6.375,5.75,6.5833,2.625,6.5833],\u0022elements\u0022:[\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Half page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,6.5833,5.75,6.5833,5.75,6.7867,2.625,6.7867],\u0022elements\u0022:[\u0022#/readResults/0/lines/32/words/0\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,6.7867,2.625,6.7867,2.625,7.0139,1.0033,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,6.7867,5.75,6.7867,5.75,7.0139,2.625,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022,\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.75,6.7867,7.4967,6.7867,7.4967,7.0139,5.75,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,7.0139,5.75,7.0139,5.75,7.2222,2.625,7.2222],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022]},{\u0022rowIndex\u0022:12,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.2222,5.75,7.2222,5.75,7.4306,2.625,7.4306],\u0022elements\u0022:[\u0022#/readResults/0/lines/40/words/0\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022]},{\u0022rowIndex\u0022:13,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,7.4306,5.75,7.4306,5.75,7.635,2.625,7.635],\u0022elements\u0022:[\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[1.0033,7.635,2.625,7.635,2.625,7.8611,1.0033,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,7.635,5.75,7.635,5.75,7.8611,2.625,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.75,7.635,7.4967,7.635,7.4967,7.8611,5.75,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:15,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.8611,5.75,7.8611,5.75,8.0694,2.625,8.0694],\u0022elements\u0022:[\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022]},{\u0022rowIndex\u0022:16,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.0694,5.75,8.0694,5.75,8.27,2.625,8.27],\u0022elements\u0022:[\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[1.0033,8.27,2.625,8.27,2.625,8.4861,1.0033,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,8.27,5.75,8.27,5.75,8.4861,2.625,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.75,8.27,7.4967,8.27,7.4967,8.4861,5.75,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},{\u0022rowIndex\u0022:18,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 25% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,8.4861,5.75,8.4861,5.75,8.7083,2.625,8.7083],\u0022elements\u0022:[\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022]},{\u0022rowIndex\u0022:19,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.7083,5.75,8.7083,5.75,8.905,2.625,8.905],\u0022elements\u0022:[\u0022#/readResults/0/lines/56/words/0\u0022]}]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}]}}" + "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-10-30T12:51:37Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-10-30T12:51:42Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:13,\u0022columns\u0022:4,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[0.9975,4.6436,2.6168,4.6436,2.6168,4.8578,0.9975,4.8578],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.6168,4.6436,5.7422,4.6436,5.7422,4.8578,2.6168,4.8578],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.7422,4.6436,7.4882,4.6436,7.4882,4.8513,5.7422,4.8578],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[0.9975,4.8578,2.6168,4.8578,2.6168,5.0849,0.9975,5.0914],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,4.8578,3.15,4.8578,3.15,5.0849,2.6168,5.0849],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Full booth\u0022,\u0022boundingBox\u0022:[3.15,4.8578,5.7422,4.8578,5.7422,5.0849,3.15,5.0849],\u0022elements\u0022:[\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.7422,4.8578,7.4882,4.8513,7.4882,5.0849,5.7422,5.0849],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[0.9975,5.0914,2.6168,5.0849,2.6168,5.9222,0.9975,5.9222],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 \uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,5.0849,3.15,5.0849,3.15,5.5198,2.6168,5.5198],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/19/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Pre-keynote thank you Logo on poster\u0022,\u0022boundingBox\u0022:[3.15,5.0849,5.7422,5.0849,5.7489,5.5133,3.15,5.5198],\u0022elements\u0022:[\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[5.7422,5.0849,7.4882,5.0849,7.4882,5.5198,5.7489,5.5133],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.6168,5.5198,5.7489,5.5133,5.7489,5.7404,2.6168,5.7534],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[5.7489,5.5133,7.4882,5.5198,7.4882,5.7469,5.7489,5.7404],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,5.7534,5.7489,5.7404,5.7489,5.9222,2.6168,5.9222],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[5.7489,5.7404,7.4882,5.7469,7.4948,5.9222,5.7489,5.9222],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[0.9975,5.9222,2.6168,5.9222,2.6168,6.7853,0.9975,6.7788],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 \uF0B7 \uF0B7 \uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,5.9222,3.15,5.9222,3.15,6.7853,2.6168,6.7853],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/32/words/0\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:2,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Full booth Post-keynote thank you Logo on poster Half page ad in program guide\u0022,\u0022boundingBox\u0022:[3.15,5.9222,5.7489,5.9222,5.7489,6.7853,3.15,6.7853],\u0022elements\u0022:[\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.7489,5.9222,7.4948,5.9222,7.4948,6.7788,5.7489,6.7853],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[0.9975,6.7788,2.6168,6.7853,2.6168,7.6355,0.9975,7.629],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,6.7853,3.15,6.7853,3.15,7.019,2.6168,7.019],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:2,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Full booth Logo on poster 50% discount on program guide advertisements\u0022,\u0022boundingBox\u0022:[3.15,6.7853,5.7489,6.7853,5.7489,7.6355,3.1433,7.6355],\u0022elements\u0022:[\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022,\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.7489,6.7853,7.4948,6.7788,7.4948,7.6355,5.7489,7.6355],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 \uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,7.019,3.15,7.019,3.1433,7.6355,2.6168,7.6355],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/40/words/0\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[0.9975,7.629,2.6168,7.6355,2.6102,8.2651,0.9975,8.2651],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022rowSpan\u0022:2,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 Full booth \uF0B7 50% discount on program guide advertisements\u0022,\u0022boundingBox\u0022:[2.6168,7.6355,5.7489,7.6355,5.7489,8.2651,2.6102,8.2651],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022,\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022,\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.7489,7.6355,7.4948,7.6355,7.4948,8.2651,5.7489,8.2651],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[0.9975,8.2651,2.6102,8.2651,2.6102,8.9011,0.9975,8.9011],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022rowSpan\u0022:2,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 Full booth \uF0B7 25% discount on program guide advertisements\u0022,\u0022boundingBox\u0022:[2.6102,8.2651,5.7489,8.2651,5.7489,8.9011,2.6102,8.9011],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022,\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022,\u0022#/readResults/0/lines/56/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.7489,8.2651,7.4948,8.2651,7.4948,8.9011,5.7489,8.9011],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]}],\u0022boundingBox\u0022:[0.994,4.6469,7.4953,4.6454,7.4964,8.9061,0.9936,8.9066]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}]}}" } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "750378562" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(False)Async.json index b4da8a2c87ad8..ede23fd08bb85 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cce3d3fde5f4b84b843dce4c903611af-f45e047c6a8ffd4a-00", + "traceparent": "00-1e13bb74efc548409e57b5fc5d7524d8-cbaf65f50b1bda4d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "690e2508d67577c1fb30c92f40aa25bb", "x-ms-return-client-request-id": "true" @@ -21,25 +21,25 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d7fa41b4-4d96-4f53-b640-f63a439a714f", + "apim-request-id": "e589a51b-c7ea-463c-9e7d-242799a15a72", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:34:42 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/d7fa41b4-4d96-4f53-b640-f63a439a714f", + "Date": "Fri, 30 Oct 2020 12:57:53 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e589a51b-c7ea-463c-9e7d-242799a15a72", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "221" + "x-envoy-upstream-service-time": "744" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/d7fa41b4-4d96-4f53-b640-f63a439a714f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e589a51b-c7ea-463c-9e7d-242799a15a72", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0676b896c152a12f421f4c88fcf73b7a", "x-ms-return-client-request-id": "true" @@ -47,29 +47,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e963145-55a2-4baa-bca6-797da3151c3f", + "apim-request-id": "2628ce9c-2eac-4309-9e07-84aff8e03146", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:42 GMT", + "Date": "Fri, 30 Oct 2020 12:57:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:42Z", - "lastUpdatedDateTime": "2020-09-09T22:34:42Z" + "createdDateTime": "2020-10-30T12:57:53Z", + "lastUpdatedDateTime": "2020-10-30T12:57:53Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/d7fa41b4-4d96-4f53-b640-f63a439a714f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e589a51b-c7ea-463c-9e7d-242799a15a72", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5e3395a6f6c39994b5ac07992121e7b4", "x-ms-return-client-request-id": "true" @@ -77,29 +77,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a15db1e0-506e-4280-b977-c87fa18c2d2e", + "apim-request-id": "ceb6970d-0276-48c9-b2a8-b499cdcddb84", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:43 GMT", + "Date": "Fri, 30 Oct 2020 12:57:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:42Z", - "lastUpdatedDateTime": "2020-09-09T22:34:42Z" + "createdDateTime": "2020-10-30T12:57:53Z", + "lastUpdatedDateTime": "2020-10-30T12:57:53Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/d7fa41b4-4d96-4f53-b640-f63a439a714f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e589a51b-c7ea-463c-9e7d-242799a15a72", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fe250d585b2e471cf66c26568a397b03", "x-ms-return-client-request-id": "true" @@ -107,29 +107,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "34bf956d-2997-48a8-8ebf-ed4f6f0e5b87", + "apim-request-id": "a21abe2d-bd6d-4a42-8f0e-155d26dc1dea", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:44 GMT", + "Date": "Fri, 30 Oct 2020 12:57:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:42Z", - "lastUpdatedDateTime": "2020-09-09T22:34:42Z" + "createdDateTime": "2020-10-30T12:57:53Z", + "lastUpdatedDateTime": "2020-10-30T12:57:53Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/d7fa41b4-4d96-4f53-b640-f63a439a714f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e589a51b-c7ea-463c-9e7d-242799a15a72", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ab884ef5c6779ff724dd51a6ba967f21", "x-ms-return-client-request-id": "true" @@ -137,29 +137,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd82ea10-5c6a-4c77-99e9-5cf87d2e9834", + "apim-request-id": "530efbaa-e927-48d3-afb1-cbb060729880", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:45 GMT", + "Date": "Fri, 30 Oct 2020 12:57:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:42Z", - "lastUpdatedDateTime": "2020-09-09T22:34:42Z" + "createdDateTime": "2020-10-30T12:57:53Z", + "lastUpdatedDateTime": "2020-10-30T12:57:53Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/d7fa41b4-4d96-4f53-b640-f63a439a714f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e589a51b-c7ea-463c-9e7d-242799a15a72", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ee3098373dd24b4c79eb6856cf3d0e7b", "x-ms-return-client-request-id": "true" @@ -167,80 +167,50 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "978c4c08-feec-417c-ac1e-65324e05dd7c", + "apim-request-id": "871a556b-9731-4b52-8a89-8e7bb1c214e2", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:46 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:34:42Z", - "lastUpdatedDateTime": "2020-09-09T22:34:42Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/d7fa41b4-4d96-4f53-b640-f63a439a714f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d3a403303c98913d1685d9510a758d60", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "aae4f6b2-de87-4989-ac84-2789b429d797", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:47 GMT", + "Date": "Fri, 30 Oct 2020 12:57:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:42Z", - "lastUpdatedDateTime": "2020-09-09T22:34:47Z" + "createdDateTime": "2020-10-30T12:57:53Z", + "lastUpdatedDateTime": "2020-10-30T12:57:57Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/d7fa41b4-4d96-4f53-b640-f63a439a714f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e589a51b-c7ea-463c-9e7d-242799a15a72", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f21e05ed8c09b731013d328b5ea1cfe6", + "x-ms-client-request-id": "d3a403303c98913d1685d9510a758d60", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51afc112-03c7-4393-ae15-bab572f94077", - "Content-Length": "33148", + "apim-request-id": "f528fa75-070b-477c-b755-04c04d2c6bbb", + "Content-Length": "36134", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:48 GMT", + "Date": "Fri, 30 Oct 2020 12:57:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "30" }, - "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-09-09T22:34:42Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-09-09T22:34:48Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0,10.2725,1.0372,10.2725,1.0372,10.9925,0,10.9925],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0,10.6019,1.5095,10.6019,1.5095,10.9983,0,10.9983],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[2.9381,6.9634,3.0388,6.9634,3.0388,7.0736,2.9381,7.0736],\u0022confidence\u0022:0.553,\u0022state\u0022:\u0022unselected\u0022}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0.0024,9.869,1.0826,9.869,1.0826,10.9955,0.0024,10.9955],\u0022confidence\u0022:0.833,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[7.6562,1.0157,8.5,1.0157,8.5,2.8293,7.6562,2.8293],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0.0008,10.4758,1.8164,10.4758,1.8164,10.9978,0.0008,10.9978],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:20,\u0022columns\u0022:3,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[1.0033,4.6517,2.625,4.6517,2.625,4.8617,1.0033,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.625,4.6517,5.75,4.6517,5.75,4.8617,2.625,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.75,4.6517,7.4967,4.6517,7.4967,4.8617,5.75,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,4.8617,2.625,4.8617,2.625,5.0833,1.0033,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,4.8617,5.75,4.8617,5.75,5.0833,2.625,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022,\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.75,4.8617,7.4967,4.8617,7.4967,5.0833,5.75,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Pre-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,5.0833,5.75,5.0833,5.75,5.3056,2.625,5.3056],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,5.3056,5.75,5.3056,5.75,5.5139,2.625,5.5139],\u0022elements\u0022:[\u0022#/readResults/0/lines/19/words/0\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,5.5139,5.75,5.5139,5.75,5.7361,2.625,5.7361],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.625,5.7361,5.75,5.7361,5.75,5.93,2.625,5.93],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,5.93,2.625,5.93,2.625,6.1528,1.0033,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,5.93,5.75,5.93,5.75,6.1528,2.625,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.75,5.93,7.4967,5.93,7.4967,6.1528,5.75,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Post-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,6.1528,5.75,6.1528,5.75,6.375,2.625,6.375],\u0022elements\u0022:[\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,6.375,5.75,6.375,5.75,6.5833,2.625,6.5833],\u0022elements\u0022:[\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Half page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,6.5833,5.75,6.5833,5.75,6.7867,2.625,6.7867],\u0022elements\u0022:[\u0022#/readResults/0/lines/32/words/0\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,6.7867,2.625,6.7867,2.625,7.0139,1.0033,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,6.7867,5.75,6.7867,5.75,7.0139,2.625,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022,\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.75,6.7867,7.4967,6.7867,7.4967,7.0139,5.75,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,7.0139,5.75,7.0139,5.75,7.2222,2.625,7.2222],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022]},{\u0022rowIndex\u0022:12,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.2222,5.75,7.2222,5.75,7.4306,2.625,7.4306],\u0022elements\u0022:[\u0022#/readResults/0/lines/40/words/0\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022]},{\u0022rowIndex\u0022:13,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,7.4306,5.75,7.4306,5.75,7.635,2.625,7.635],\u0022elements\u0022:[\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[1.0033,7.635,2.625,7.635,2.625,7.8611,1.0033,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,7.635,5.75,7.635,5.75,7.8611,2.625,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.75,7.635,7.4967,7.635,7.4967,7.8611,5.75,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:15,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.8611,5.75,7.8611,5.75,8.0694,2.625,8.0694],\u0022elements\u0022:[\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022]},{\u0022rowIndex\u0022:16,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.0694,5.75,8.0694,5.75,8.27,2.625,8.27],\u0022elements\u0022:[\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[1.0033,8.27,2.625,8.27,2.625,8.4861,1.0033,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,8.27,5.75,8.27,5.75,8.4861,2.625,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.75,8.27,7.4967,8.27,7.4967,8.4861,5.75,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},{\u0022rowIndex\u0022:18,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 25% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,8.4861,5.75,8.4861,5.75,8.7083,2.625,8.7083],\u0022elements\u0022:[\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022]},{\u0022rowIndex\u0022:19,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.7083,5.75,8.7083,5.75,8.905,2.625,8.905],\u0022elements\u0022:[\u0022#/readResults/0/lines/56/words/0\u0022]}]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}]}}" + "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-10-30T12:57:53Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-10-30T12:57:58Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:13,\u0022columns\u0022:4,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[0.9975,4.6436,2.6168,4.6436,2.6168,4.8578,0.9975,4.8578],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.6168,4.6436,5.7422,4.6436,5.7422,4.8578,2.6168,4.8578],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.7422,4.6436,7.4882,4.6436,7.4882,4.8513,5.7422,4.8578],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[0.9975,4.8578,2.6168,4.8578,2.6168,5.0849,0.9975,5.0914],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,4.8578,3.15,4.8578,3.15,5.0849,2.6168,5.0849],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Full booth\u0022,\u0022boundingBox\u0022:[3.15,4.8578,5.7422,4.8578,5.7422,5.0849,3.15,5.0849],\u0022elements\u0022:[\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.7422,4.8578,7.4882,4.8513,7.4882,5.0849,5.7422,5.0849],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[0.9975,5.0914,2.6168,5.0849,2.6168,5.9222,0.9975,5.9222],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 \uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,5.0849,3.15,5.0849,3.15,5.5198,2.6168,5.5198],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/19/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Pre-keynote thank you Logo on poster\u0022,\u0022boundingBox\u0022:[3.15,5.0849,5.7422,5.0849,5.7489,5.5133,3.15,5.5198],\u0022elements\u0022:[\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[5.7422,5.0849,7.4882,5.0849,7.4882,5.5198,5.7489,5.5133],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.6168,5.5198,5.7489,5.5133,5.7489,5.7404,2.6168,5.7534],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[5.7489,5.5133,7.4882,5.5198,7.4882,5.7469,5.7489,5.7404],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,5.7534,5.7489,5.7404,5.7489,5.9222,2.6168,5.9222],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[5.7489,5.7404,7.4882,5.7469,7.4948,5.9222,5.7489,5.9222],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[0.9975,5.9222,2.6168,5.9222,2.6168,6.7853,0.9975,6.7788],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 \uF0B7 \uF0B7 \uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,5.9222,3.15,5.9222,3.15,6.7853,2.6168,6.7853],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/32/words/0\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:2,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Full booth Post-keynote thank you Logo on poster Half page ad in program guide\u0022,\u0022boundingBox\u0022:[3.15,5.9222,5.7489,5.9222,5.7489,6.7853,3.15,6.7853],\u0022elements\u0022:[\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.7489,5.9222,7.4948,5.9222,7.4948,6.7788,5.7489,6.7853],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[0.9975,6.7788,2.6168,6.7853,2.6168,7.6355,0.9975,7.629],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,6.7853,3.15,6.7853,3.15,7.019,2.6168,7.019],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:2,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Full booth Logo on poster 50% discount on program guide advertisements\u0022,\u0022boundingBox\u0022:[3.15,6.7853,5.7489,6.7853,5.7489,7.6355,3.1433,7.6355],\u0022elements\u0022:[\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022,\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.7489,6.7853,7.4948,6.7788,7.4948,7.6355,5.7489,7.6355],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 \uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,7.019,3.15,7.019,3.1433,7.6355,2.6168,7.6355],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/40/words/0\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[0.9975,7.629,2.6168,7.6355,2.6102,8.2651,0.9975,8.2651],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022rowSpan\u0022:2,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 Full booth \uF0B7 50% discount on program guide advertisements\u0022,\u0022boundingBox\u0022:[2.6168,7.6355,5.7489,7.6355,5.7489,8.2651,2.6102,8.2651],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022,\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022,\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.7489,7.6355,7.4948,7.6355,7.4948,8.2651,5.7489,8.2651],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[0.9975,8.2651,2.6102,8.2651,2.6102,8.9011,0.9975,8.9011],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022rowSpan\u0022:2,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 Full booth \uF0B7 25% discount on program guide advertisements\u0022,\u0022boundingBox\u0022:[2.6102,8.2651,5.7489,8.2651,5.7489,8.9011,2.6102,8.9011],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022,\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022,\u0022#/readResults/0/lines/56/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.7489,8.2651,7.4948,8.2651,7.4948,8.9011,5.7489,8.9011],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]}],\u0022boundingBox\u0022:[0.994,4.6469,7.4953,4.6454,7.4964,8.9061,0.9936,8.9066]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}]}}" } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1711192637" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(True).json index 9cbb624934e9a..8952445323fa3 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "711607", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9cb171613c7d9840a2a3e5046af864a7-d422def7e4e51340-00", + "traceparent": "00-f36e15fe2171a34999df0f01535b7ce8-4af1c8bf6afc254c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "937b6ad2052cfa02a37fa7e27310e325", "x-ms-return-client-request-id": "true" @@ -19,25 +19,25 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "75839b1b-626c-4012-9e04-252915b203ac", + "apim-request-id": "2554a0c6-a67d-492f-a194-3c6bb3ac3cf0", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:29:37 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/75839b1b-626c-4012-9e04-252915b203ac", + "Date": "Fri, 30 Oct 2020 12:51:30 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/2554a0c6-a67d-492f-a194-3c6bb3ac3cf0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "195" + "x-envoy-upstream-service-time": "158" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/75839b1b-626c-4012-9e04-252915b203ac", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/2554a0c6-a67d-492f-a194-3c6bb3ac3cf0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ea382122d1b7c1c87c44bd54cb1066b1", "x-ms-return-client-request-id": "true" @@ -45,29 +45,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fad2d19f-1bd8-4fd0-b33c-bc2ea304b45d", + "apim-request-id": "93656275-c543-4ac6-b68a-760d5df2d3af", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:37 GMT", + "Date": "Fri, 30 Oct 2020 12:51:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:37Z", - "lastUpdatedDateTime": "2020-09-09T22:29:37Z" + "createdDateTime": "2020-10-30T12:51:30Z", + "lastUpdatedDateTime": "2020-10-30T12:51:30Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/75839b1b-626c-4012-9e04-252915b203ac", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/2554a0c6-a67d-492f-a194-3c6bb3ac3cf0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "793356f94ec1157ab7884db2034a1dd8", "x-ms-return-client-request-id": "true" @@ -75,29 +75,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "82c8b61b-7353-463f-9a19-d2a9119b19b0", + "apim-request-id": "68f18852-b45b-4020-9f7e-bb42364aae1d", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:38 GMT", + "Date": "Fri, 30 Oct 2020 12:51:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:37Z", - "lastUpdatedDateTime": "2020-09-09T22:29:37Z" + "createdDateTime": "2020-10-30T12:51:30Z", + "lastUpdatedDateTime": "2020-10-30T12:51:30Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/75839b1b-626c-4012-9e04-252915b203ac", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/2554a0c6-a67d-492f-a194-3c6bb3ac3cf0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5471c7559b0801c8a1ba16e847ae2e93", "x-ms-return-client-request-id": "true" @@ -105,29 +105,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9687b7a-d373-4786-932f-f800069ec4ed", + "apim-request-id": "f71f73d7-ac51-4315-b564-c5d2bbff9a62", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:39 GMT", + "Date": "Fri, 30 Oct 2020 12:51:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:37Z", - "lastUpdatedDateTime": "2020-09-09T22:29:37Z" + "createdDateTime": "2020-10-30T12:51:30Z", + "lastUpdatedDateTime": "2020-10-30T12:51:30Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/75839b1b-626c-4012-9e04-252915b203ac", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/2554a0c6-a67d-492f-a194-3c6bb3ac3cf0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1ce8f5196addd463a623332e8316bd32", "x-ms-return-client-request-id": "true" @@ -135,29 +135,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5536f8d4-b1c9-4e08-a6bf-98bc17ce57ad", + "apim-request-id": "44070cf1-6913-4fd7-be6c-30f5f1e01669", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:40 GMT", + "Date": "Fri, 30 Oct 2020 12:51:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:37Z", - "lastUpdatedDateTime": "2020-09-09T22:29:37Z" + "createdDateTime": "2020-10-30T12:51:30Z", + "lastUpdatedDateTime": "2020-10-30T12:51:30Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/75839b1b-626c-4012-9e04-252915b203ac", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/2554a0c6-a67d-492f-a194-3c6bb3ac3cf0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "03fee426119e5da88e31d7063891cd09", "x-ms-return-client-request-id": "true" @@ -165,29 +165,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f9aacac5-4bcb-460a-acc6-e422c0cc9726", + "apim-request-id": "b606cdb0-d405-478c-9631-5b3892c5616a", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:41 GMT", + "Date": "Fri, 30 Oct 2020 12:51:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:37Z", - "lastUpdatedDateTime": "2020-09-09T22:29:37Z" + "createdDateTime": "2020-10-30T12:51:30Z", + "lastUpdatedDateTime": "2020-10-30T12:51:34Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/75839b1b-626c-4012-9e04-252915b203ac", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/2554a0c6-a67d-492f-a194-3c6bb3ac3cf0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0e99ba590161ebfb639dade5689a7e8b", "x-ms-return-client-request-id": "true" @@ -195,50 +195,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4e02ca88-e2c5-40f7-be68-11c0533f39ae", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:42 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:29:37Z", - "lastUpdatedDateTime": "2020-09-09T22:29:37Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/75839b1b-626c-4012-9e04-252915b203ac", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "63c2e3fd2baf07f44c8b8eab925d9b15", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2c19ce52-3d9b-4529-b669-f74597c9fa0a", - "Content-Length": "33148", + "apim-request-id": "7fa95b02-027b-49d2-90e2-4b3aca061461", + "Content-Length": "36134", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:43 GMT", + "Date": "Fri, 30 Oct 2020 12:51:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "29" }, - "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-09-09T22:29:37Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-09-09T22:29:43Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0,10.2725,1.0372,10.2725,1.0372,10.9925,0,10.9925],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0,10.6019,1.5095,10.6019,1.5095,10.9983,0,10.9983],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[2.9381,6.9634,3.0388,6.9634,3.0388,7.0736,2.9381,7.0736],\u0022confidence\u0022:0.553,\u0022state\u0022:\u0022unselected\u0022}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0.0024,9.869,1.0826,9.869,1.0826,10.9955,0.0024,10.9955],\u0022confidence\u0022:0.833,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[7.6562,1.0157,8.5,1.0157,8.5,2.8293,7.6562,2.8293],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0.0008,10.4758,1.8164,10.4758,1.8164,10.9978,0.0008,10.9978],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:20,\u0022columns\u0022:3,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[1.0033,4.6517,2.625,4.6517,2.625,4.8617,1.0033,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.625,4.6517,5.75,4.6517,5.75,4.8617,2.625,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.75,4.6517,7.4967,4.6517,7.4967,4.8617,5.75,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,4.8617,2.625,4.8617,2.625,5.0833,1.0033,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,4.8617,5.75,4.8617,5.75,5.0833,2.625,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022,\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.75,4.8617,7.4967,4.8617,7.4967,5.0833,5.75,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Pre-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,5.0833,5.75,5.0833,5.75,5.3056,2.625,5.3056],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,5.3056,5.75,5.3056,5.75,5.5139,2.625,5.5139],\u0022elements\u0022:[\u0022#/readResults/0/lines/19/words/0\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,5.5139,5.75,5.5139,5.75,5.7361,2.625,5.7361],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.625,5.7361,5.75,5.7361,5.75,5.93,2.625,5.93],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,5.93,2.625,5.93,2.625,6.1528,1.0033,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,5.93,5.75,5.93,5.75,6.1528,2.625,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.75,5.93,7.4967,5.93,7.4967,6.1528,5.75,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Post-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,6.1528,5.75,6.1528,5.75,6.375,2.625,6.375],\u0022elements\u0022:[\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,6.375,5.75,6.375,5.75,6.5833,2.625,6.5833],\u0022elements\u0022:[\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Half page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,6.5833,5.75,6.5833,5.75,6.7867,2.625,6.7867],\u0022elements\u0022:[\u0022#/readResults/0/lines/32/words/0\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,6.7867,2.625,6.7867,2.625,7.0139,1.0033,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,6.7867,5.75,6.7867,5.75,7.0139,2.625,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022,\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.75,6.7867,7.4967,6.7867,7.4967,7.0139,5.75,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,7.0139,5.75,7.0139,5.75,7.2222,2.625,7.2222],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022]},{\u0022rowIndex\u0022:12,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.2222,5.75,7.2222,5.75,7.4306,2.625,7.4306],\u0022elements\u0022:[\u0022#/readResults/0/lines/40/words/0\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022]},{\u0022rowIndex\u0022:13,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,7.4306,5.75,7.4306,5.75,7.635,2.625,7.635],\u0022elements\u0022:[\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[1.0033,7.635,2.625,7.635,2.625,7.8611,1.0033,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,7.635,5.75,7.635,5.75,7.8611,2.625,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.75,7.635,7.4967,7.635,7.4967,7.8611,5.75,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:15,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.8611,5.75,7.8611,5.75,8.0694,2.625,8.0694],\u0022elements\u0022:[\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022]},{\u0022rowIndex\u0022:16,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.0694,5.75,8.0694,5.75,8.27,2.625,8.27],\u0022elements\u0022:[\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[1.0033,8.27,2.625,8.27,2.625,8.4861,1.0033,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,8.27,5.75,8.27,5.75,8.4861,2.625,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.75,8.27,7.4967,8.27,7.4967,8.4861,5.75,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},{\u0022rowIndex\u0022:18,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 25% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,8.4861,5.75,8.4861,5.75,8.7083,2.625,8.7083],\u0022elements\u0022:[\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022]},{\u0022rowIndex\u0022:19,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.7083,5.75,8.7083,5.75,8.905,2.625,8.905],\u0022elements\u0022:[\u0022#/readResults/0/lines/56/words/0\u0022]}]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}]}}" + "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-10-30T12:51:30Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-10-30T12:51:35Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:13,\u0022columns\u0022:4,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[0.9975,4.6436,2.6168,4.6436,2.6168,4.8578,0.9975,4.8578],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.6168,4.6436,5.7422,4.6436,5.7422,4.8578,2.6168,4.8578],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.7422,4.6436,7.4882,4.6436,7.4882,4.8513,5.7422,4.8578],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[0.9975,4.8578,2.6168,4.8578,2.6168,5.0849,0.9975,5.0914],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,4.8578,3.15,4.8578,3.15,5.0849,2.6168,5.0849],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Full booth\u0022,\u0022boundingBox\u0022:[3.15,4.8578,5.7422,4.8578,5.7422,5.0849,3.15,5.0849],\u0022elements\u0022:[\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.7422,4.8578,7.4882,4.8513,7.4882,5.0849,5.7422,5.0849],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[0.9975,5.0914,2.6168,5.0849,2.6168,5.9222,0.9975,5.9222],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 \uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,5.0849,3.15,5.0849,3.15,5.5198,2.6168,5.5198],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/19/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Pre-keynote thank you Logo on poster\u0022,\u0022boundingBox\u0022:[3.15,5.0849,5.7422,5.0849,5.7489,5.5133,3.15,5.5198],\u0022elements\u0022:[\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[5.7422,5.0849,7.4882,5.0849,7.4882,5.5198,5.7489,5.5133],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.6168,5.5198,5.7489,5.5133,5.7489,5.7404,2.6168,5.7534],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[5.7489,5.5133,7.4882,5.5198,7.4882,5.7469,5.7489,5.7404],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,5.7534,5.7489,5.7404,5.7489,5.9222,2.6168,5.9222],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[5.7489,5.7404,7.4882,5.7469,7.4948,5.9222,5.7489,5.9222],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[0.9975,5.9222,2.6168,5.9222,2.6168,6.7853,0.9975,6.7788],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 \uF0B7 \uF0B7 \uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,5.9222,3.15,5.9222,3.15,6.7853,2.6168,6.7853],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/32/words/0\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:2,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Full booth Post-keynote thank you Logo on poster Half page ad in program guide\u0022,\u0022boundingBox\u0022:[3.15,5.9222,5.7489,5.9222,5.7489,6.7853,3.15,6.7853],\u0022elements\u0022:[\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.7489,5.9222,7.4948,5.9222,7.4948,6.7788,5.7489,6.7853],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[0.9975,6.7788,2.6168,6.7853,2.6168,7.6355,0.9975,7.629],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,6.7853,3.15,6.7853,3.15,7.019,2.6168,7.019],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:2,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Full booth Logo on poster 50% discount on program guide advertisements\u0022,\u0022boundingBox\u0022:[3.15,6.7853,5.7489,6.7853,5.7489,7.6355,3.1433,7.6355],\u0022elements\u0022:[\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022,\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.7489,6.7853,7.4948,6.7788,7.4948,7.6355,5.7489,7.6355],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 \uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,7.019,3.15,7.019,3.1433,7.6355,2.6168,7.6355],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/40/words/0\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[0.9975,7.629,2.6168,7.6355,2.6102,8.2651,0.9975,8.2651],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022rowSpan\u0022:2,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 Full booth \uF0B7 50% discount on program guide advertisements\u0022,\u0022boundingBox\u0022:[2.6168,7.6355,5.7489,7.6355,5.7489,8.2651,2.6102,8.2651],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022,\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022,\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.7489,7.6355,7.4948,7.6355,7.4948,8.2651,5.7489,8.2651],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[0.9975,8.2651,2.6102,8.2651,2.6102,8.9011,0.9975,8.9011],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022rowSpan\u0022:2,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 Full booth \uF0B7 25% discount on program guide advertisements\u0022,\u0022boundingBox\u0022:[2.6102,8.2651,5.7489,8.2651,5.7489,8.9011,2.6102,8.9011],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022,\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022,\u0022#/readResults/0/lines/56/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.7489,8.2651,7.4948,8.2651,7.4948,8.9011,5.7489,8.9011],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]}],\u0022boundingBox\u0022:[0.994,4.6469,7.4953,4.6454,7.4964,8.9061,0.9936,8.9066]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}]}}" } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1409545305" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(True)Async.json index 68916c4387fee..aaf2ae77f5c51 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageForm(True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "711607", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0cb7823bb3f3e64abde8e39079620cb1-17de38a5a631fe41-00", + "traceparent": "00-5f97555d126ef5499693d2cd834bf0a8-6c3b6b8256a2a74d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d8d01a80e2fc24e844b332e4c6c0e16f", "x-ms-return-client-request-id": "true" @@ -19,25 +19,25 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "706e2781-64d3-4c2d-aec4-6b559ec9c54b", + "apim-request-id": "b34dbb2d-d815-48c2-b037-84338c3ad2cc", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:34:35 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/706e2781-64d3-4c2d-aec4-6b559ec9c54b", + "Date": "Fri, 30 Oct 2020 12:57:45 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b34dbb2d-d815-48c2-b037-84338c3ad2cc", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131" + "x-envoy-upstream-service-time": "158" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/706e2781-64d3-4c2d-aec4-6b559ec9c54b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b34dbb2d-d815-48c2-b037-84338c3ad2cc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "916b5af79dee870f44d43aac9a9e2798", "x-ms-return-client-request-id": "true" @@ -45,29 +45,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c2e0e0f-7054-4b93-805b-67cb69ff0d08", + "apim-request-id": "556444c1-e4ba-43af-9b65-f9532d2a2d00", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:35 GMT", + "Date": "Fri, 30 Oct 2020 12:57:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:35Z", - "lastUpdatedDateTime": "2020-09-09T22:34:35Z" + "createdDateTime": "2020-10-30T12:57:45Z", + "lastUpdatedDateTime": "2020-10-30T12:57:45Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/706e2781-64d3-4c2d-aec4-6b559ec9c54b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b34dbb2d-d815-48c2-b037-84338c3ad2cc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9c3d32ccf9881689f136c1d29ea1d1fd", "x-ms-return-client-request-id": "true" @@ -75,29 +75,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c19c45c6-9a55-442c-9b55-a593b150ce95", + "apim-request-id": "5204693d-cb75-488f-9783-422cf5a5f71b", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:36 GMT", + "Date": "Fri, 30 Oct 2020 12:57:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:35Z", - "lastUpdatedDateTime": "2020-09-09T22:34:35Z" + "createdDateTime": "2020-10-30T12:57:45Z", + "lastUpdatedDateTime": "2020-10-30T12:57:45Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/706e2781-64d3-4c2d-aec4-6b559ec9c54b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b34dbb2d-d815-48c2-b037-84338c3ad2cc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6a0d6ce3a7f1e21c0b499327a83c8aa6", "x-ms-return-client-request-id": "true" @@ -105,29 +105,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec1557e8-ed5c-4fe5-aa62-a2ac46938add", + "apim-request-id": "6618a379-3f58-4de0-a753-4927f157190d", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:38 GMT", + "Date": "Fri, 30 Oct 2020 12:57:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:35Z", - "lastUpdatedDateTime": "2020-09-09T22:34:35Z" + "createdDateTime": "2020-10-30T12:57:45Z", + "lastUpdatedDateTime": "2020-10-30T12:57:45Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/706e2781-64d3-4c2d-aec4-6b559ec9c54b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b34dbb2d-d815-48c2-b037-84338c3ad2cc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "93179a8c4483fee7d055a0b7dc3de8a3", "x-ms-return-client-request-id": "true" @@ -135,29 +135,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0ea4c0ec-02de-4a33-8d9c-567f057a3892", + "apim-request-id": "aad0f15b-4803-4708-9f2c-a2f6486415db", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:39 GMT", + "Date": "Fri, 30 Oct 2020 12:57:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:35Z", - "lastUpdatedDateTime": "2020-09-09T22:34:35Z" + "createdDateTime": "2020-10-30T12:57:45Z", + "lastUpdatedDateTime": "2020-10-30T12:57:45Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/706e2781-64d3-4c2d-aec4-6b559ec9c54b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b34dbb2d-d815-48c2-b037-84338c3ad2cc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2ec83d02bc9025a6155a913f65616db4", "x-ms-return-client-request-id": "true" @@ -165,29 +165,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c906ce87-a956-4a90-8d20-584490a999d4", + "apim-request-id": "7d7a79cb-a720-490c-87f6-4993df0c7004", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:40 GMT", + "Date": "Fri, 30 Oct 2020 12:57:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:35Z", - "lastUpdatedDateTime": "2020-09-09T22:34:35Z" + "createdDateTime": "2020-10-30T12:57:45Z", + "lastUpdatedDateTime": "2020-10-30T12:57:45Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/706e2781-64d3-4c2d-aec4-6b559ec9c54b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b34dbb2d-d815-48c2-b037-84338c3ad2cc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "03451aac3d8a9e7a840f9a9c066505cd", "x-ms-return-client-request-id": "true" @@ -195,29 +195,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9426b2bb-5f6e-498a-ab4e-0e72b6f3490d", + "apim-request-id": "9b6e7ab7-9695-4311-8b49-1b55f9d58777", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:41 GMT", + "Date": "Fri, 30 Oct 2020 12:57:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:35Z", - "lastUpdatedDateTime": "2020-09-09T22:34:35Z" + "createdDateTime": "2020-10-30T12:57:45Z", + "lastUpdatedDateTime": "2020-10-30T12:57:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/706e2781-64d3-4c2d-aec4-6b559ec9c54b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b34dbb2d-d815-48c2-b037-84338c3ad2cc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6a24f0605b73d015f4f17e28b3a8996e", "x-ms-return-client-request-id": "true" @@ -225,20 +225,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4a98d51-45c0-452d-bfaf-270829ce706c", - "Content-Length": "33148", + "apim-request-id": "6be00c02-a731-4ebc-92c0-a6d1b67f97a6", + "Content-Length": "36134", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:42 GMT", + "Date": "Fri, 30 Oct 2020 12:57:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "29" }, - "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-09-09T22:34:35Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-09-09T22:34:41Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0,10.2725,1.0372,10.2725,1.0372,10.9925,0,10.9925],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0,10.6019,1.5095,10.6019,1.5095,10.9983,0,10.9983],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[2.9381,6.9634,3.0388,6.9634,3.0388,7.0736,2.9381,7.0736],\u0022confidence\u0022:0.553,\u0022state\u0022:\u0022unselected\u0022}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0.0024,9.869,1.0826,9.869,1.0826,10.9955,0.0024,10.9955],\u0022confidence\u0022:0.833,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[7.6562,1.0157,8.5,1.0157,8.5,2.8293,7.6562,2.8293],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0.0008,10.4758,1.8164,10.4758,1.8164,10.9978,0.0008,10.9978],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:20,\u0022columns\u0022:3,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[1.0033,4.6517,2.625,4.6517,2.625,4.8617,1.0033,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.625,4.6517,5.75,4.6517,5.75,4.8617,2.625,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.75,4.6517,7.4967,4.6517,7.4967,4.8617,5.75,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,4.8617,2.625,4.8617,2.625,5.0833,1.0033,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,4.8617,5.75,4.8617,5.75,5.0833,2.625,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022,\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.75,4.8617,7.4967,4.8617,7.4967,5.0833,5.75,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Pre-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,5.0833,5.75,5.0833,5.75,5.3056,2.625,5.3056],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,5.3056,5.75,5.3056,5.75,5.5139,2.625,5.5139],\u0022elements\u0022:[\u0022#/readResults/0/lines/19/words/0\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,5.5139,5.75,5.5139,5.75,5.7361,2.625,5.7361],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.625,5.7361,5.75,5.7361,5.75,5.93,2.625,5.93],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,5.93,2.625,5.93,2.625,6.1528,1.0033,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,5.93,5.75,5.93,5.75,6.1528,2.625,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.75,5.93,7.4967,5.93,7.4967,6.1528,5.75,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Post-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,6.1528,5.75,6.1528,5.75,6.375,2.625,6.375],\u0022elements\u0022:[\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,6.375,5.75,6.375,5.75,6.5833,2.625,6.5833],\u0022elements\u0022:[\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Half page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,6.5833,5.75,6.5833,5.75,6.7867,2.625,6.7867],\u0022elements\u0022:[\u0022#/readResults/0/lines/32/words/0\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,6.7867,2.625,6.7867,2.625,7.0139,1.0033,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,6.7867,5.75,6.7867,5.75,7.0139,2.625,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022,\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.75,6.7867,7.4967,6.7867,7.4967,7.0139,5.75,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,7.0139,5.75,7.0139,5.75,7.2222,2.625,7.2222],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022]},{\u0022rowIndex\u0022:12,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.2222,5.75,7.2222,5.75,7.4306,2.625,7.4306],\u0022elements\u0022:[\u0022#/readResults/0/lines/40/words/0\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022]},{\u0022rowIndex\u0022:13,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,7.4306,5.75,7.4306,5.75,7.635,2.625,7.635],\u0022elements\u0022:[\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[1.0033,7.635,2.625,7.635,2.625,7.8611,1.0033,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,7.635,5.75,7.635,5.75,7.8611,2.625,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.75,7.635,7.4967,7.635,7.4967,7.8611,5.75,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:15,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.8611,5.75,7.8611,5.75,8.0694,2.625,8.0694],\u0022elements\u0022:[\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022]},{\u0022rowIndex\u0022:16,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.0694,5.75,8.0694,5.75,8.27,2.625,8.27],\u0022elements\u0022:[\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[1.0033,8.27,2.625,8.27,2.625,8.4861,1.0033,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,8.27,5.75,8.27,5.75,8.4861,2.625,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.75,8.27,7.4967,8.27,7.4967,8.4861,5.75,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},{\u0022rowIndex\u0022:18,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 25% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,8.4861,5.75,8.4861,5.75,8.7083,2.625,8.7083],\u0022elements\u0022:[\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022]},{\u0022rowIndex\u0022:19,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.7083,5.75,8.7083,5.75,8.905,2.625,8.905],\u0022elements\u0022:[\u0022#/readResults/0/lines/56/words/0\u0022]}]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}]}}" + "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-10-30T12:57:45Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-10-30T12:57:50Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022appearance\u0022:{\u0022style\u0022:{\u0022name\u0022:\u0022other\u0022,\u0022confidence\u0022:1}},\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:13,\u0022columns\u0022:4,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[0.9975,4.6436,2.6168,4.6436,2.6168,4.8578,0.9975,4.8578],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.6168,4.6436,5.7422,4.6436,5.7422,4.8578,2.6168,4.8578],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.7422,4.6436,7.4882,4.6436,7.4882,4.8513,5.7422,4.8578],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[0.9975,4.8578,2.6168,4.8578,2.6168,5.0849,0.9975,5.0914],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,4.8578,3.15,4.8578,3.15,5.0849,2.6168,5.0849],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Full booth\u0022,\u0022boundingBox\u0022:[3.15,4.8578,5.7422,4.8578,5.7422,5.0849,3.15,5.0849],\u0022elements\u0022:[\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.7422,4.8578,7.4882,4.8513,7.4882,5.0849,5.7422,5.0849],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[0.9975,5.0914,2.6168,5.0849,2.6168,5.9222,0.9975,5.9222],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 \uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,5.0849,3.15,5.0849,3.15,5.5198,2.6168,5.5198],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/19/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Pre-keynote thank you Logo on poster\u0022,\u0022boundingBox\u0022:[3.15,5.0849,5.7422,5.0849,5.7489,5.5133,3.15,5.5198],\u0022elements\u0022:[\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[5.7422,5.0849,7.4882,5.0849,7.4882,5.5198,5.7489,5.5133],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.6168,5.5198,5.7489,5.5133,5.7489,5.7404,2.6168,5.7534],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[5.7489,5.5133,7.4882,5.5198,7.4882,5.7469,5.7489,5.7404],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,5.7534,5.7489,5.7404,5.7489,5.9222,2.6168,5.9222],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:3,\u0022text\u0022:\u0022\u0022,\u0022boundingBox\u0022:[5.7489,5.7404,7.4882,5.7469,7.4948,5.9222,5.7489,5.9222],\u0022elements\u0022:[]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[0.9975,5.9222,2.6168,5.9222,2.6168,6.7853,0.9975,6.7788],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 \uF0B7 \uF0B7 \uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,5.9222,3.15,5.9222,3.15,6.7853,2.6168,6.7853],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/32/words/0\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:2,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Full booth Post-keynote thank you Logo on poster Half page ad in program guide\u0022,\u0022boundingBox\u0022:[3.15,5.9222,5.7489,5.9222,5.7489,6.7853,3.15,6.7853],\u0022elements\u0022:[\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.7489,5.9222,7.4948,5.9222,7.4948,6.7788,5.7489,6.7853],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[0.9975,6.7788,2.6168,6.7853,2.6168,7.6355,0.9975,7.629],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,6.7853,3.15,6.7853,3.15,7.019,2.6168,7.019],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:2,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Full booth Logo on poster 50% discount on program guide advertisements\u0022,\u0022boundingBox\u0022:[3.15,6.7853,5.7489,6.7853,5.7489,7.6355,3.1433,7.6355],\u0022elements\u0022:[\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022,\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.7489,6.7853,7.4948,6.7788,7.4948,7.6355,5.7489,7.6355],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 \uF0B7\u0022,\u0022boundingBox\u0022:[2.6168,7.019,3.15,7.019,3.1433,7.6355,2.6168,7.6355],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/40/words/0\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[0.9975,7.629,2.6168,7.6355,2.6102,8.2651,0.9975,8.2651],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022rowSpan\u0022:2,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 Full booth \uF0B7 50% discount on program guide advertisements\u0022,\u0022boundingBox\u0022:[2.6168,7.6355,5.7489,7.6355,5.7489,8.2651,2.6102,8.2651],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022,\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022,\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.7489,7.6355,7.4948,7.6355,7.4948,8.2651,5.7489,8.2651],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:0,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[0.9975,8.2651,2.6102,8.2651,2.6102,8.9011,0.9975,8.9011],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022rowSpan\u0022:2,\u0022columnSpan\u0022:2,\u0022text\u0022:\u0022\uF0B7 Full booth \uF0B7 25% discount on program guide advertisements\u0022,\u0022boundingBox\u0022:[2.6102,8.2651,5.7489,8.2651,5.7489,8.9011,2.6102,8.9011],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022,\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022,\u0022#/readResults/0/lines/56/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:3,\u0022rowSpan\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.7489,8.2651,7.4948,8.2651,7.4948,8.9011,5.7489,8.9011],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]}],\u0022boundingBox\u0022:[0.994,4.6469,7.4953,4.6454,7.4964,8.9061,0.9936,8.9066]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}]}}" } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "604484574" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageFormWithBlankPage.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageFormWithBlankPage.json index 427267c34e2a7..a61ca7acef602 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageFormWithBlankPage.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageFormWithBlankPage.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "108935", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-878ed97af91ee94883d697a78b806c27-0db5aaf5300b4a49-00", + "traceparent": "00-663ec25f3103174c9730ef1f6eee06b7-7349155c5a18af4d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "18224e7e903fd268274fca724e877247", "x-ms-return-client-request-id": "true" @@ -19,25 +19,25 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "db9e4725-7872-4b98-84b5-be57a311cd5a", + "apim-request-id": "e15b168d-87b3-4fd0-8c48-0c1088f29014", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:28:24 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/db9e4725-7872-4b98-84b5-be57a311cd5a", + "Date": "Fri, 30 Oct 2020 12:50:34 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e15b168d-87b3-4fd0-8c48-0c1088f29014", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/db9e4725-7872-4b98-84b5-be57a311cd5a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e15b168d-87b3-4fd0-8c48-0c1088f29014", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "268936ca8ba51d7f5ecca18a2b44caed", "x-ms-return-client-request-id": "true" @@ -45,29 +45,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "31a23b48-0288-4848-92a7-128dfccf17fb", + "apim-request-id": "8b74f1e9-d32d-4e3d-9db7-64c8d30a6b45", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:24 GMT", + "Date": "Fri, 30 Oct 2020 12:50:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:28:25Z", - "lastUpdatedDateTime": "2020-09-09T22:28:25Z" + "createdDateTime": "2020-10-30T12:50:35Z", + "lastUpdatedDateTime": "2020-10-30T12:50:35Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/db9e4725-7872-4b98-84b5-be57a311cd5a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e15b168d-87b3-4fd0-8c48-0c1088f29014", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d64badfd1c33617e2277194c2727765a", "x-ms-return-client-request-id": "true" @@ -75,29 +75,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b2ecda77-ea8c-4417-98ae-89602d01ecae", + "apim-request-id": "e6426592-862c-435e-830f-529464e4748d", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:26 GMT", + "Date": "Fri, 30 Oct 2020 12:50:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:28:25Z", - "lastUpdatedDateTime": "2020-09-09T22:28:25Z" + "createdDateTime": "2020-10-30T12:50:35Z", + "lastUpdatedDateTime": "2020-10-30T12:50:35Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/db9e4725-7872-4b98-84b5-be57a311cd5a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e15b168d-87b3-4fd0-8c48-0c1088f29014", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3a2274c5e6e2f2cacf05b972eedda6e3", "x-ms-return-client-request-id": "true" @@ -105,29 +105,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5818c046-34f5-4fdd-af9c-da278e812d34", + "apim-request-id": "f117f829-5c27-4815-b027-e2eee57f94e2", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:27 GMT", + "Date": "Fri, 30 Oct 2020 12:50:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:28:25Z", - "lastUpdatedDateTime": "2020-09-09T22:28:25Z" + "createdDateTime": "2020-10-30T12:50:35Z", + "lastUpdatedDateTime": "2020-10-30T12:50:35Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/db9e4725-7872-4b98-84b5-be57a311cd5a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e15b168d-87b3-4fd0-8c48-0c1088f29014", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a174dc859c3cad14b827032e7232f637", "x-ms-return-client-request-id": "true" @@ -135,29 +135,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ee4ff0a-6d71-4127-baf0-287cc97113e7", + "apim-request-id": "f4fd9537-31f3-419a-9b1f-80ebd035f94f", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:28 GMT", + "Date": "Fri, 30 Oct 2020 12:50:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:28:25Z", - "lastUpdatedDateTime": "2020-09-09T22:28:25Z" + "createdDateTime": "2020-10-30T12:50:35Z", + "lastUpdatedDateTime": "2020-10-30T12:50:35Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/db9e4725-7872-4b98-84b5-be57a311cd5a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e15b168d-87b3-4fd0-8c48-0c1088f29014", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b7c547568f21170ae259072d620c7245", "x-ms-return-client-request-id": "true" @@ -165,29 +165,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e9567866-1f4d-4e4b-a679-8df3b19979bd", + "apim-request-id": "d1c48852-723b-4923-b1fd-9f305c0fd5c1", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:29 GMT", + "Date": "Fri, 30 Oct 2020 12:50:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:28:25Z", - "lastUpdatedDateTime": "2020-09-09T22:28:25Z" + "createdDateTime": "2020-10-30T12:50:35Z", + "lastUpdatedDateTime": "2020-10-30T12:50:39Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/db9e4725-7872-4b98-84b5-be57a311cd5a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/e15b168d-87b3-4fd0-8c48-0c1088f29014", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4ac736d0d4b2291e607582bae29c809d", "x-ms-return-client-request-id": "true" @@ -195,48 +195,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5df9b121-366d-418a-a608-23788a39d866", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:30 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:28:25Z", - "lastUpdatedDateTime": "2020-09-09T22:28:29Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/db9e4725-7872-4b98-84b5-be57a311cd5a", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a71b820fef17f6c1d25dbee395e64aab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e63a3004-8a9d-42ab-8ddd-4e271a115aae", - "Content-Length": "28529", + "apim-request-id": "5d5e0079-3afe-49a8-bb1d-e8e79b8529e2", + "Content-Length": "31970", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:31 GMT", + "Date": "Fri, 30 Oct 2020 12:50:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:28:25Z", - "lastUpdatedDateTime": "2020-09-09T22:28:31Z", + "createdDateTime": "2020-10-30T12:50:35Z", + "lastUpdatedDateTime": "2020-10-30T12:50:40Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -259,6 +229,12 @@ 1.2812 ], "text": "Company A Invoice", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -316,6 +292,12 @@ 1.2121 ], "text": "Invoice For:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -359,6 +341,12 @@ 1.6155 ], "text": "Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -388,6 +376,12 @@ 1.5931 ], "text": "Bilbo Baggins", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -431,6 +425,12 @@ 1.7854 ], "text": "123 Hobbit Lane", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -488,6 +488,12 @@ 1.9554 ], "text": "567 Main St.", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -545,6 +551,12 @@ 2.0275 ], "text": "Redmond, WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -588,6 +600,12 @@ 2.1975 ], "text": "Redmond, WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -631,6 +649,12 @@ 2.2254 ], "text": "555-555-5555", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -660,6 +684,12 @@ 2.3954 ], "text": "555-555-5555", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -689,6 +719,12 @@ 3.109 ], "text": "Item", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -718,6 +754,12 @@ 3.1371 ], "text": "Quantity", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -747,6 +789,12 @@ 3.109 ], "text": "Price", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -776,6 +824,12 @@ 3.318 ], "text": "A", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -805,6 +859,12 @@ 3.3176 ], "text": "1", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -834,6 +894,12 @@ 3.319 ], "text": "10.99", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -863,6 +929,12 @@ 3.531 ], "text": "B", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -892,6 +964,12 @@ 3.531 ], "text": "2", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -921,6 +999,12 @@ 3.5323 ], "text": "14.67", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -950,6 +1034,12 @@ 3.7421 ], "text": "C", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -979,6 +1069,12 @@ 3.7413 ], "text": "4", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1008,6 +1104,12 @@ 3.7423 ], "text": "15.66", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1037,6 +1139,12 @@ 3.951 ], "text": "D", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1066,6 +1174,12 @@ 3.951 ], "text": "1", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1095,6 +1209,12 @@ 3.9523 ], "text": "12.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1124,6 +1244,12 @@ 4.1614 ], "text": "E", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1153,6 +1279,12 @@ 4.1617 ], "text": "4", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1182,6 +1314,12 @@ 4.1627 ], "text": "10.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1211,6 +1349,12 @@ 4.3717 ], "text": "F", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1240,6 +1384,12 @@ 4.3727 ], "text": "6", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1269,6 +1419,12 @@ 4.3727 ], "text": "12.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1298,6 +1454,12 @@ 4.5827 ], "text": "G", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1327,6 +1489,12 @@ 4.5827 ], "text": "8", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1356,6 +1524,12 @@ 4.5827 ], "text": "22.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1385,6 +1559,12 @@ 5.0131 ], "text": "Subtotal: 300.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1428,6 +1608,12 @@ 5.2333 ], "text": "Tax: 30.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1471,6 +1657,12 @@ 5.481 ], "text": "Tip: 100.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1514,6 +1706,12 @@ 5.6733 ], "text": "Total: 430.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1557,6 +1755,12 @@ 6.7981 ], "text": "Signature: ____Bilbo Baggins__________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1602,71 +1806,13 @@ } ] } - ], - "selectionMarks": [ - { - "boundingBox": [ - 0, - 9.8745, - 1.1035, - 9.8745, - 1.1035, - 10.9943, - 0, - 10.9943 - ], - "confidence": 0.881, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.4952, - 1.9659, - 10.4952, - 1.9659, - 10.9978, - 0, - 10.9978 - ], - "confidence": 0.8, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 0.0263, - 1.0499, - 0.0263, - 1.0499, - 1.0117, - 0, - 1.0117 - ], - "confidence": 0.6, - "state": "unselected" - }, - { - "boundingBox": [ - 7.5064, - 9.9415, - 8.4985, - 9.9415, - 8.4985, - 11, - 7.5064, - 11 - ], - "confidence": 0.553, - "state": "unselected" - } ] }, { "page": 2, "angle": 0, - "width": 8.4967, - "height": 10.9967, + "width": 8.5, + "height": 11, "unit": "inch", "lines": [] }, @@ -1689,6 +1835,12 @@ 1.2812 ], "text": "Company B Invoice", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1746,6 +1898,12 @@ 1.2121 ], "text": "Invoice For:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1789,6 +1947,12 @@ 1.6155 ], "text": "Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1818,6 +1982,12 @@ 1.5931 ], "text": "Frodo Baggins", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1861,6 +2031,12 @@ 1.7854 ], "text": "123 Hobbit Lane", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1918,6 +2094,12 @@ 1.9554 ], "text": "567 Main St.", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1975,6 +2157,12 @@ 2.0275 ], "text": "Redmond, WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2018,6 +2206,12 @@ 2.1975 ], "text": "Redmond, WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2061,6 +2255,12 @@ 2.2254 ], "text": "555-555-5555", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2090,6 +2290,12 @@ 2.3954 ], "text": "555-555-5555", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2119,6 +2325,12 @@ 3.109 ], "text": "Item", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2148,6 +2360,12 @@ 3.1371 ], "text": "Quantity", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2177,6 +2395,12 @@ 3.109 ], "text": "Price", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2206,6 +2430,12 @@ 3.318 ], "text": "A", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2235,6 +2465,12 @@ 3.319 ], "text": "10", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2264,6 +2500,12 @@ 3.319 ], "text": "100.99", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2293,6 +2535,12 @@ 3.531 ], "text": "B", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2322,6 +2570,12 @@ 3.5323 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2351,6 +2605,12 @@ 3.5323 ], "text": "140.67", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2380,6 +2640,12 @@ 3.7421 ], "text": "C", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2409,6 +2675,12 @@ 3.7423 ], "text": "40", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2438,6 +2710,12 @@ 3.7423 ], "text": "150.66", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2467,6 +2745,12 @@ 3.951 ], "text": "D", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2496,6 +2780,12 @@ 3.9523 ], "text": "10", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2525,6 +2815,12 @@ 3.9523 ], "text": "120.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2554,6 +2850,12 @@ 4.1614 ], "text": "E", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2583,6 +2885,12 @@ 4.1627 ], "text": "40", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2612,6 +2920,12 @@ 4.1627 ], "text": "100.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2641,6 +2955,12 @@ 4.3717 ], "text": "F", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2670,6 +2990,12 @@ 4.3727 ], "text": "60", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2699,6 +3025,12 @@ 4.3727 ], "text": "120.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2728,6 +3060,12 @@ 4.5827 ], "text": "G", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2757,6 +3095,12 @@ 4.5827 ], "text": "80", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2786,6 +3130,12 @@ 4.5827 ], "text": "220.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2815,6 +3165,12 @@ 5.0131 ], "text": "Subtotal: 3000.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2858,6 +3214,12 @@ 5.2333 ], "text": "Tax: 300.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2901,6 +3263,12 @@ 5.481 ], "text": "Tip: 1000.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2944,6 +3312,12 @@ 5.6733 ], "text": "Total: 4300.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2987,6 +3361,12 @@ 6.7981 ], "text": "Signature: ____Frodo Baggins__________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3032,78 +3412,6 @@ } ] } - ], - "selectionMarks": [ - { - "boundingBox": [ - 0, - 9.877, - 1.1039, - 9.877, - 1.1039, - 10.9946, - 0, - 10.9946 - ], - "confidence": 0.881, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.498, - 1.9897, - 10.498, - 1.9897, - 10.9975, - 0, - 10.9975 - ], - "confidence": 0.833, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 0.0268, - 1.048, - 0.0268, - 1.048, - 1.0107, - 0, - 1.0107 - ], - "confidence": 0.6, - "state": "unselected" - }, - { - "boundingBox": [ - 6.8221, - 10.6394, - 8.4766, - 10.6394, - 8.4766, - 11, - 6.8221, - 11 - ], - "confidence": 0.6, - "state": "unselected" - }, - { - "boundingBox": [ - 7.5061, - 9.9417, - 8.4988, - 9.9417, - 8.4988, - 11, - 7.5061, - 11 - ], - "confidence": 0.553, - "state": "unselected" - } ] } ], @@ -3120,14 +3428,14 @@ "columnIndex": 0, "text": "Item", "boundingBox": [ - 1.0037, - 2.9443, - 3.1681, - 2.9443, - 3.1681, - 3.1543, - 1.0037, - 3.1543 + 0.9909, + 2.9408, + 3.1582, + 2.9408, + 3.1582, + 3.1528, + 0.9909, + 3.1528 ], "elements": [ "#/readResults/0/lines/10/words/0" @@ -3138,14 +3446,14 @@ "columnIndex": 1, "text": "Quantity", "boundingBox": [ - 3.1681, - 2.9443, - 5.3353, - 2.9443, - 5.3353, - 3.1543, - 3.1681, - 3.1543 + 3.1582, + 2.9408, + 5.3322, + 2.9408, + 5.3322, + 3.1528, + 3.1582, + 3.1528 ], "elements": [ "#/readResults/0/lines/11/words/0" @@ -3156,14 +3464,14 @@ "columnIndex": 2, "text": "Price", "boundingBox": [ - 5.3353, - 2.9443, - 7.4997, - 2.9443, - 7.4997, - 3.1543, - 5.3353, - 3.1543 + 5.3322, + 2.9408, + 7.4928, + 2.947, + 7.4928, + 3.1528, + 5.3322, + 3.1528 ], "elements": [ "#/readResults/0/lines/12/words/0" @@ -3174,14 +3482,14 @@ "columnIndex": 0, "text": "A", "boundingBox": [ - 1.0037, - 3.1543, - 3.1681, - 3.1543, - 3.1681, - 3.3643, - 1.0037, - 3.3643 + 0.9909, + 3.1528, + 3.1582, + 3.1528, + 3.1582, + 3.3649, + 0.9976, + 3.3649 ], "elements": [ "#/readResults/0/lines/13/words/0" @@ -3192,14 +3500,14 @@ "columnIndex": 1, "text": "1", "boundingBox": [ - 3.1681, - 3.1543, - 5.3353, - 3.1543, - 5.3353, - 3.3643, - 3.1681, - 3.3643 + 3.1582, + 3.1528, + 5.3322, + 3.1528, + 5.3322, + 3.3649, + 3.1582, + 3.3649 ], "elements": [ "#/readResults/0/lines/14/words/0" @@ -3210,14 +3518,14 @@ "columnIndex": 2, "text": "10.99", "boundingBox": [ - 5.3353, - 3.1543, - 7.4997, - 3.1543, - 7.4997, - 3.3643, - 5.3353, - 3.3643 + 5.3322, + 3.1528, + 7.4928, + 3.1528, + 7.4995, + 3.3649, + 5.3322, + 3.3649 ], "elements": [ "#/readResults/0/lines/15/words/0" @@ -3228,14 +3536,14 @@ "columnIndex": 0, "text": "B", "boundingBox": [ - 1.0037, - 3.3643, - 3.1681, - 3.3643, - 3.1681, - 3.5776, - 1.0037, - 3.5776 + 0.9976, + 3.3649, + 3.1582, + 3.3649, + 3.1582, + 3.5707, + 0.9976, + 3.5707 ], "elements": [ "#/readResults/0/lines/16/words/0" @@ -3246,14 +3554,14 @@ "columnIndex": 1, "text": "2", "boundingBox": [ - 3.1681, - 3.3643, - 5.3353, - 3.3643, - 5.3353, - 3.5776, - 3.1681, - 3.5776 + 3.1582, + 3.3649, + 5.3322, + 3.3649, + 5.3322, + 3.5707, + 3.1582, + 3.5707 ], "elements": [ "#/readResults/0/lines/17/words/0" @@ -3264,14 +3572,14 @@ "columnIndex": 2, "text": "14.67", "boundingBox": [ - 5.3353, - 3.3643, - 7.4997, - 3.3643, - 7.4997, - 3.5776, - 5.3353, - 3.5776 + 5.3322, + 3.3649, + 7.4995, + 3.3649, + 7.4995, + 3.5707, + 5.3322, + 3.5707 ], "elements": [ "#/readResults/0/lines/18/words/0" @@ -3282,14 +3590,14 @@ "columnIndex": 0, "text": "C", "boundingBox": [ - 1.0037, - 3.5776, - 3.1681, - 3.5776, - 3.1681, - 3.7876, - 1.0037, - 3.7876 + 0.9976, + 3.5707, + 3.1582, + 3.5707, + 3.1582, + 3.7827, + 0.9976, + 3.7827 ], "elements": [ "#/readResults/0/lines/19/words/0" @@ -3300,14 +3608,14 @@ "columnIndex": 1, "text": "4", "boundingBox": [ - 3.1681, - 3.5776, - 5.3353, - 3.5776, - 5.3353, - 3.7876, - 3.1681, - 3.7876 + 3.1582, + 3.5707, + 5.3322, + 3.5707, + 5.3322, + 3.7827, + 3.1582, + 3.7827 ], "elements": [ "#/readResults/0/lines/20/words/0" @@ -3318,14 +3626,14 @@ "columnIndex": 2, "text": "15.66", "boundingBox": [ - 5.3353, - 3.5776, - 7.4997, - 3.5776, - 7.4997, - 3.7876, - 5.3353, - 3.7876 + 5.3322, + 3.5707, + 7.4995, + 3.5707, + 7.4995, + 3.7827, + 5.3322, + 3.7827 ], "elements": [ "#/readResults/0/lines/21/words/0" @@ -3336,14 +3644,14 @@ "columnIndex": 0, "text": "D", "boundingBox": [ - 1.0037, - 3.7876, - 3.1681, - 3.7876, - 3.1681, - 3.9976, - 1.0037, - 3.9976 + 0.9976, + 3.7827, + 3.1582, + 3.7827, + 3.1582, + 3.9885, + 1.0043, + 3.9885 ], "elements": [ "#/readResults/0/lines/22/words/0" @@ -3354,14 +3662,14 @@ "columnIndex": 1, "text": "1", "boundingBox": [ - 3.1681, - 3.7876, - 5.3353, - 3.7876, - 5.3353, - 3.9976, - 3.1681, - 3.9976 + 3.1582, + 3.7827, + 5.3322, + 3.7827, + 5.3322, + 3.9885, + 3.1582, + 3.9885 ], "elements": [ "#/readResults/0/lines/23/words/0" @@ -3372,14 +3680,14 @@ "columnIndex": 2, "text": "12.00", "boundingBox": [ - 5.3353, - 3.7876, - 7.4997, - 3.7876, - 7.4997, - 3.9976, - 5.3353, - 3.9976 + 5.3322, + 3.7827, + 7.4995, + 3.7827, + 7.4995, + 3.9885, + 5.3322, + 3.9885 ], "elements": [ "#/readResults/0/lines/24/words/0" @@ -3390,14 +3698,14 @@ "columnIndex": 0, "text": "E", "boundingBox": [ - 1.0037, - 3.9976, - 3.1681, - 3.9976, - 3.1681, - 4.2081, - 1.0037, - 4.2081 + 1.0043, + 3.9885, + 3.1582, + 3.9885, + 3.1582, + 4.2006, + 1.0043, + 4.2006 ], "elements": [ "#/readResults/0/lines/25/words/0" @@ -3408,14 +3716,14 @@ "columnIndex": 1, "text": "4", "boundingBox": [ - 3.1681, - 3.9976, - 5.3353, - 3.9976, - 5.3353, - 4.2081, - 3.1681, - 4.2081 + 3.1582, + 3.9885, + 5.3322, + 3.9885, + 5.3322, + 4.2006, + 3.1582, + 4.2006 ], "elements": [ "#/readResults/0/lines/26/words/0" @@ -3426,14 +3734,14 @@ "columnIndex": 2, "text": "10.00", "boundingBox": [ - 5.3353, - 3.9976, - 7.4997, - 3.9976, - 7.4997, - 4.2081, - 5.3353, - 4.2081 + 5.3322, + 3.9885, + 7.4995, + 3.9885, + 7.5062, + 4.2006, + 5.3322, + 4.2006 ], "elements": [ "#/readResults/0/lines/27/words/0" @@ -3444,14 +3752,14 @@ "columnIndex": 0, "text": "F", "boundingBox": [ - 1.0037, - 4.2081, - 3.1681, - 4.2081, - 3.1681, - 4.4181, - 1.0037, - 4.4181 + 1.0043, + 4.2006, + 3.1582, + 4.2006, + 3.1582, + 4.4126, + 1.0043, + 4.4126 ], "elements": [ "#/readResults/0/lines/28/words/0" @@ -3462,14 +3770,14 @@ "columnIndex": 1, "text": "6", "boundingBox": [ - 3.1681, - 4.2081, - 5.3353, - 4.2081, - 5.3353, - 4.4181, - 3.1681, - 4.4181 + 3.1582, + 4.2006, + 5.3322, + 4.2006, + 5.3322, + 4.4126, + 3.1582, + 4.4126 ], "elements": [ "#/readResults/0/lines/29/words/0" @@ -3480,14 +3788,14 @@ "columnIndex": 2, "text": "12.00", "boundingBox": [ - 5.3353, - 4.2081, - 7.4997, - 4.2081, - 7.4997, - 4.4181, - 5.3353, - 4.4181 + 5.3322, + 4.2006, + 7.5062, + 4.2006, + 7.5062, + 4.4126, + 5.3322, + 4.4126 ], "elements": [ "#/readResults/0/lines/30/words/0" @@ -3498,14 +3806,14 @@ "columnIndex": 0, "text": "G", "boundingBox": [ - 1.0037, - 4.4181, - 3.1681, - 4.4181, - 3.1681, - 4.6281, - 1.0037, - 4.6281 + 1.0043, + 4.4126, + 3.1582, + 4.4126, + 3.1582, + 4.6184, + 1.011, + 4.6246 ], "elements": [ "#/readResults/0/lines/31/words/0" @@ -3516,14 +3824,14 @@ "columnIndex": 1, "text": "8", "boundingBox": [ - 3.1681, - 4.4181, - 5.3353, - 4.4181, - 5.3353, - 4.6281, - 3.1681, - 4.6281 + 3.1582, + 4.4126, + 5.3322, + 4.4126, + 5.3322, + 4.6184, + 3.1582, + 4.6184 ], "elements": [ "#/readResults/0/lines/32/words/0" @@ -3534,19 +3842,29 @@ "columnIndex": 2, "text": "22.00", "boundingBox": [ - 5.3353, - 4.4181, - 7.4997, - 4.4181, - 7.4997, - 4.6281, - 5.3353, - 4.6281 + 5.3322, + 4.4126, + 7.5062, + 4.4126, + 7.5062, + 4.6246, + 5.3322, + 4.6184 ], "elements": [ "#/readResults/0/lines/33/words/0" ] } + ], + "boundingBox": [ + 0.9957, + 2.9322, + 7.4976, + 2.9326, + 7.4974, + 4.6222, + 0.9944, + 4.6216 ] } ] @@ -3567,14 +3885,14 @@ "columnIndex": 0, "text": "Item", "boundingBox": [ - 1.0037, - 2.9443, - 3.1681, - 2.9443, - 3.1681, - 3.1543, - 1.0037, - 3.1543 + 0.9909, + 2.9408, + 3.1582, + 2.9408, + 3.1582, + 3.1528, + 0.9909, + 3.1528 ], "elements": [ "#/readResults/2/lines/10/words/0" @@ -3585,14 +3903,14 @@ "columnIndex": 1, "text": "Quantity", "boundingBox": [ - 3.1681, - 2.9443, - 5.3353, - 2.9443, - 5.3353, - 3.1543, - 3.1681, - 3.1543 + 3.1582, + 2.9408, + 5.3322, + 2.9408, + 5.3322, + 3.1528, + 3.1582, + 3.1528 ], "elements": [ "#/readResults/2/lines/11/words/0" @@ -3603,14 +3921,14 @@ "columnIndex": 2, "text": "Price", "boundingBox": [ - 5.3353, - 2.9443, - 7.4997, - 2.9443, - 7.4997, - 3.1543, - 5.3353, - 3.1543 + 5.3322, + 2.9408, + 7.4928, + 2.947, + 7.4928, + 3.1528, + 5.3322, + 3.1528 ], "elements": [ "#/readResults/2/lines/12/words/0" @@ -3621,14 +3939,14 @@ "columnIndex": 0, "text": "A", "boundingBox": [ - 1.0037, - 3.1543, - 3.1681, - 3.1543, - 3.1681, - 3.3643, - 1.0037, - 3.3643 + 0.9909, + 3.1528, + 3.1582, + 3.1528, + 3.1582, + 3.3649, + 0.9976, + 3.3649 ], "elements": [ "#/readResults/2/lines/13/words/0" @@ -3639,14 +3957,14 @@ "columnIndex": 1, "text": "10", "boundingBox": [ - 3.1681, - 3.1543, - 5.3353, - 3.1543, - 5.3353, - 3.3643, - 3.1681, - 3.3643 + 3.1582, + 3.1528, + 5.3322, + 3.1528, + 5.3322, + 3.3649, + 3.1582, + 3.3649 ], "elements": [ "#/readResults/2/lines/14/words/0" @@ -3657,14 +3975,14 @@ "columnIndex": 2, "text": "100.99", "boundingBox": [ - 5.3353, - 3.1543, - 7.4997, - 3.1543, - 7.4997, - 3.3643, - 5.3353, - 3.3643 + 5.3322, + 3.1528, + 7.4928, + 3.1528, + 7.4995, + 3.3649, + 5.3322, + 3.3649 ], "elements": [ "#/readResults/2/lines/15/words/0" @@ -3675,14 +3993,14 @@ "columnIndex": 0, "text": "B", "boundingBox": [ - 1.0037, - 3.3643, - 3.1681, - 3.3643, - 3.1681, - 3.5776, - 1.0037, - 3.5776 + 0.9976, + 3.3649, + 3.1582, + 3.3649, + 3.1582, + 3.5707, + 0.9976, + 3.5707 ], "elements": [ "#/readResults/2/lines/16/words/0" @@ -3693,14 +4011,14 @@ "columnIndex": 1, "text": "20", "boundingBox": [ - 3.1681, - 3.3643, - 5.3353, - 3.3643, - 5.3353, - 3.5776, - 3.1681, - 3.5776 + 3.1582, + 3.3649, + 5.3322, + 3.3649, + 5.3322, + 3.5707, + 3.1582, + 3.5707 ], "elements": [ "#/readResults/2/lines/17/words/0" @@ -3711,14 +4029,14 @@ "columnIndex": 2, "text": "140.67", "boundingBox": [ - 5.3353, - 3.3643, - 7.4997, - 3.3643, - 7.4997, - 3.5776, - 5.3353, - 3.5776 + 5.3322, + 3.3649, + 7.4995, + 3.3649, + 7.4995, + 3.5707, + 5.3322, + 3.5707 ], "elements": [ "#/readResults/2/lines/18/words/0" @@ -3729,14 +4047,14 @@ "columnIndex": 0, "text": "C", "boundingBox": [ - 1.0037, - 3.5776, - 3.1681, - 3.5776, - 3.1681, - 3.7876, - 1.0037, - 3.7876 + 0.9976, + 3.5707, + 3.1582, + 3.5707, + 3.1582, + 3.7827, + 0.9976, + 3.7827 ], "elements": [ "#/readResults/2/lines/19/words/0" @@ -3747,14 +4065,14 @@ "columnIndex": 1, "text": "40", "boundingBox": [ - 3.1681, - 3.5776, - 5.3353, - 3.5776, - 5.3353, - 3.7876, - 3.1681, - 3.7876 + 3.1582, + 3.5707, + 5.3322, + 3.5707, + 5.3322, + 3.7827, + 3.1582, + 3.7827 ], "elements": [ "#/readResults/2/lines/20/words/0" @@ -3765,14 +4083,14 @@ "columnIndex": 2, "text": "150.66", "boundingBox": [ - 5.3353, - 3.5776, - 7.4997, - 3.5776, - 7.4997, - 3.7876, - 5.3353, - 3.7876 + 5.3322, + 3.5707, + 7.4995, + 3.5707, + 7.4995, + 3.7827, + 5.3322, + 3.7827 ], "elements": [ "#/readResults/2/lines/21/words/0" @@ -3783,14 +4101,14 @@ "columnIndex": 0, "text": "D", "boundingBox": [ - 1.0037, - 3.7876, - 3.1681, - 3.7876, - 3.1681, - 3.9976, - 1.0037, - 3.9976 + 0.9976, + 3.7827, + 3.1582, + 3.7827, + 3.1582, + 3.9885, + 1.0043, + 3.9885 ], "elements": [ "#/readResults/2/lines/22/words/0" @@ -3801,14 +4119,14 @@ "columnIndex": 1, "text": "10", "boundingBox": [ - 3.1681, - 3.7876, - 5.3353, - 3.7876, - 5.3353, - 3.9976, - 3.1681, - 3.9976 + 3.1582, + 3.7827, + 5.3322, + 3.7827, + 5.3322, + 3.9885, + 3.1582, + 3.9885 ], "elements": [ "#/readResults/2/lines/23/words/0" @@ -3819,14 +4137,14 @@ "columnIndex": 2, "text": "120.00", "boundingBox": [ - 5.3353, - 3.7876, - 7.4997, - 3.7876, - 7.4997, - 3.9976, - 5.3353, - 3.9976 + 5.3322, + 3.7827, + 7.4995, + 3.7827, + 7.4995, + 3.9885, + 5.3322, + 3.9885 ], "elements": [ "#/readResults/2/lines/24/words/0" @@ -3837,14 +4155,14 @@ "columnIndex": 0, "text": "E", "boundingBox": [ - 1.0037, - 3.9976, - 3.1681, - 3.9976, - 3.1681, - 4.2081, - 1.0037, - 4.2081 + 1.0043, + 3.9885, + 3.1582, + 3.9885, + 3.1582, + 4.2006, + 1.0043, + 4.2006 ], "elements": [ "#/readResults/2/lines/25/words/0" @@ -3855,14 +4173,14 @@ "columnIndex": 1, "text": "40", "boundingBox": [ - 3.1681, - 3.9976, - 5.3353, - 3.9976, - 5.3353, - 4.2081, - 3.1681, - 4.2081 + 3.1582, + 3.9885, + 5.3322, + 3.9885, + 5.3322, + 4.2006, + 3.1582, + 4.2006 ], "elements": [ "#/readResults/2/lines/26/words/0" @@ -3873,14 +4191,14 @@ "columnIndex": 2, "text": "100.00", "boundingBox": [ - 5.3353, - 3.9976, - 7.4997, - 3.9976, - 7.4997, - 4.2081, - 5.3353, - 4.2081 + 5.3322, + 3.9885, + 7.4995, + 3.9885, + 7.5062, + 4.2006, + 5.3322, + 4.2006 ], "elements": [ "#/readResults/2/lines/27/words/0" @@ -3891,14 +4209,14 @@ "columnIndex": 0, "text": "F", "boundingBox": [ - 1.0037, - 4.2081, - 3.1681, - 4.2081, - 3.1681, - 4.4181, - 1.0037, - 4.4181 + 1.0043, + 4.2006, + 3.1582, + 4.2006, + 3.1582, + 4.4126, + 1.0043, + 4.4126 ], "elements": [ "#/readResults/2/lines/28/words/0" @@ -3909,14 +4227,14 @@ "columnIndex": 1, "text": "60", "boundingBox": [ - 3.1681, - 4.2081, - 5.3353, - 4.2081, - 5.3353, - 4.4181, - 3.1681, - 4.4181 + 3.1582, + 4.2006, + 5.3322, + 4.2006, + 5.3322, + 4.4126, + 3.1582, + 4.4126 ], "elements": [ "#/readResults/2/lines/29/words/0" @@ -3927,14 +4245,14 @@ "columnIndex": 2, "text": "120.00", "boundingBox": [ - 5.3353, - 4.2081, - 7.4997, - 4.2081, - 7.4997, - 4.4181, - 5.3353, - 4.4181 + 5.3322, + 4.2006, + 7.5062, + 4.2006, + 7.5062, + 4.4126, + 5.3322, + 4.4126 ], "elements": [ "#/readResults/2/lines/30/words/0" @@ -3945,14 +4263,14 @@ "columnIndex": 0, "text": "G", "boundingBox": [ - 1.0037, - 4.4181, - 3.1681, - 4.4181, - 3.1681, - 4.6281, - 1.0037, - 4.6281 + 1.0043, + 4.4126, + 3.1582, + 4.4126, + 3.1582, + 4.6184, + 1.011, + 4.6246 ], "elements": [ "#/readResults/2/lines/31/words/0" @@ -3963,14 +4281,14 @@ "columnIndex": 1, "text": "80", "boundingBox": [ - 3.1681, - 4.4181, - 5.3353, - 4.4181, - 5.3353, - 4.6281, - 3.1681, - 4.6281 + 3.1582, + 4.4126, + 5.3322, + 4.4126, + 5.3322, + 4.6184, + 3.1582, + 4.6184 ], "elements": [ "#/readResults/2/lines/32/words/0" @@ -3981,19 +4299,29 @@ "columnIndex": 2, "text": "220.00", "boundingBox": [ - 5.3353, - 4.4181, - 7.4997, - 4.4181, - 7.4997, - 4.6281, - 5.3353, - 4.6281 + 5.3322, + 4.4126, + 7.5062, + 4.4126, + 7.5062, + 4.6246, + 5.3322, + 4.6184 ], "elements": [ "#/readResults/2/lines/33/words/0" ] } + ], + "boundingBox": [ + 0.996, + 2.9328, + 7.4972, + 2.9334, + 7.4967, + 4.6223, + 0.9946, + 4.6216 ] } ] @@ -4005,7 +4333,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1412474581" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageFormWithBlankPageAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageFormWithBlankPageAsync.json index 7fcdabf5b34c3..3fa046fcb974d 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageFormWithBlankPageAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentCanParseMultipageFormWithBlankPageAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "108935", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-336ab34f08f6454fb77a3a3913c7cde3-730744994bf9e043-00", + "traceparent": "00-5458eeee68830e4db3d2980390d2abfe-baa6c159e40f524e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e757498aaaaf306d698f146f13b0c941", "x-ms-return-client-request-id": "true" @@ -19,25 +19,25 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a16810b9-6962-4235-8a13-4e62c967dd72", + "apim-request-id": "cd40e6d1-2d16-4b71-9aa5-b4615dd655c4", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:33:17 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a16810b9-6962-4235-8a13-4e62c967dd72", + "Date": "Fri, 30 Oct 2020 12:56:48 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/cd40e6d1-2d16-4b71-9aa5-b4615dd655c4", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "71" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a16810b9-6962-4235-8a13-4e62c967dd72", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/cd40e6d1-2d16-4b71-9aa5-b4615dd655c4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c6bf9ccd2d26146b3efa6ee17835f431", "x-ms-return-client-request-id": "true" @@ -45,29 +45,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "48153ada-ab48-48d7-8c35-180348cbb672", + "apim-request-id": "9ddf201f-1195-417c-819e-f0896785fe17", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:17 GMT", + "Date": "Fri, 30 Oct 2020 12:56:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:33:17Z", - "lastUpdatedDateTime": "2020-09-09T22:33:17Z" + "createdDateTime": "2020-10-30T12:56:49Z", + "lastUpdatedDateTime": "2020-10-30T12:56:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a16810b9-6962-4235-8a13-4e62c967dd72", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/cd40e6d1-2d16-4b71-9aa5-b4615dd655c4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "49c77cbf99fde4633744a5a63a33d28f", "x-ms-return-client-request-id": "true" @@ -75,29 +75,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c82de5a1-b557-4607-8801-fba6ce80d778", + "apim-request-id": "74a72063-476a-4488-b910-75cc94b3ca38", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:18 GMT", + "Date": "Fri, 30 Oct 2020 12:56:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:33:17Z", - "lastUpdatedDateTime": "2020-09-09T22:33:17Z" + "createdDateTime": "2020-10-30T12:56:49Z", + "lastUpdatedDateTime": "2020-10-30T12:56:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a16810b9-6962-4235-8a13-4e62c967dd72", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/cd40e6d1-2d16-4b71-9aa5-b4615dd655c4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9e1809403a405d5ede42a8b53b8cb834", "x-ms-return-client-request-id": "true" @@ -105,29 +105,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "99eb8252-f5af-49ca-9d65-38b411867546", + "apim-request-id": "76406223-a654-4805-b6c8-bbc2c218a651", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:19 GMT", + "Date": "Fri, 30 Oct 2020 12:56:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:33:17Z", - "lastUpdatedDateTime": "2020-09-09T22:33:17Z" + "createdDateTime": "2020-10-30T12:56:49Z", + "lastUpdatedDateTime": "2020-10-30T12:56:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a16810b9-6962-4235-8a13-4e62c967dd72", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/cd40e6d1-2d16-4b71-9aa5-b4615dd655c4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "96b0e29a80e8344338da8fe288c4da0a", "x-ms-return-client-request-id": "true" @@ -135,29 +135,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c1cb266-b998-43d9-9575-2b35b2753237", + "apim-request-id": "69bb9ade-12b5-4c71-94a0-67d5401bee43", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:20 GMT", + "Date": "Fri, 30 Oct 2020 12:56:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:33:17Z", - "lastUpdatedDateTime": "2020-09-09T22:33:17Z" + "createdDateTime": "2020-10-30T12:56:49Z", + "lastUpdatedDateTime": "2020-10-30T12:56:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a16810b9-6962-4235-8a13-4e62c967dd72", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/cd40e6d1-2d16-4b71-9aa5-b4615dd655c4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6ea1de28561c84f11e696bbbf0aea8aa", "x-ms-return-client-request-id": "true" @@ -165,29 +165,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2297791a-b887-4a5d-af5f-21de9b8411e5", + "apim-request-id": "6934e21c-b900-4514-b96b-fd1451dc32db", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:21 GMT", + "Date": "Fri, 30 Oct 2020 12:56:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:33:17Z", - "lastUpdatedDateTime": "2020-09-09T22:33:17Z" + "createdDateTime": "2020-10-30T12:56:49Z", + "lastUpdatedDateTime": "2020-10-30T12:56:53Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a16810b9-6962-4235-8a13-4e62c967dd72", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/cd40e6d1-2d16-4b71-9aa5-b4615dd655c4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "580c708c3b83bfa6c5e46565ab7cd419", "x-ms-return-client-request-id": "true" @@ -195,48 +195,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e3abdd4-1f54-486b-b0e2-d2be0544f72b", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:22 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:33:17Z", - "lastUpdatedDateTime": "2020-09-09T22:33:17Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a16810b9-6962-4235-8a13-4e62c967dd72", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5c8c9d6849eb4318f12c787e1588438a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6c541dbd-cc3f-46b6-887e-d1ce8312efcb", - "Content-Length": "28529", + "apim-request-id": "1e009edf-8b55-4b64-9e69-4c05506cf848", + "Content-Length": "31970", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:23 GMT", + "Date": "Fri, 30 Oct 2020 12:56:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:33:17Z", - "lastUpdatedDateTime": "2020-09-09T22:33:23Z", + "createdDateTime": "2020-10-30T12:56:49Z", + "lastUpdatedDateTime": "2020-10-30T12:56:54Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -259,6 +229,12 @@ 1.2812 ], "text": "Company A Invoice", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -316,6 +292,12 @@ 1.2121 ], "text": "Invoice For:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -359,6 +341,12 @@ 1.6155 ], "text": "Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -388,6 +376,12 @@ 1.5931 ], "text": "Bilbo Baggins", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -431,6 +425,12 @@ 1.7854 ], "text": "123 Hobbit Lane", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -488,6 +488,12 @@ 1.9554 ], "text": "567 Main St.", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -545,6 +551,12 @@ 2.0275 ], "text": "Redmond, WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -588,6 +600,12 @@ 2.1975 ], "text": "Redmond, WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -631,6 +649,12 @@ 2.2254 ], "text": "555-555-5555", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -660,6 +684,12 @@ 2.3954 ], "text": "555-555-5555", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -689,6 +719,12 @@ 3.109 ], "text": "Item", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -718,6 +754,12 @@ 3.1371 ], "text": "Quantity", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -747,6 +789,12 @@ 3.109 ], "text": "Price", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -776,6 +824,12 @@ 3.318 ], "text": "A", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -805,6 +859,12 @@ 3.3176 ], "text": "1", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -834,6 +894,12 @@ 3.319 ], "text": "10.99", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -863,6 +929,12 @@ 3.531 ], "text": "B", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -892,6 +964,12 @@ 3.531 ], "text": "2", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -921,6 +999,12 @@ 3.5323 ], "text": "14.67", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -950,6 +1034,12 @@ 3.7421 ], "text": "C", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -979,6 +1069,12 @@ 3.7413 ], "text": "4", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1008,6 +1104,12 @@ 3.7423 ], "text": "15.66", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1037,6 +1139,12 @@ 3.951 ], "text": "D", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1066,6 +1174,12 @@ 3.951 ], "text": "1", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1095,6 +1209,12 @@ 3.9523 ], "text": "12.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1124,6 +1244,12 @@ 4.1614 ], "text": "E", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1153,6 +1279,12 @@ 4.1617 ], "text": "4", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1182,6 +1314,12 @@ 4.1627 ], "text": "10.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1211,6 +1349,12 @@ 4.3717 ], "text": "F", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1240,6 +1384,12 @@ 4.3727 ], "text": "6", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1269,6 +1419,12 @@ 4.3727 ], "text": "12.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1298,6 +1454,12 @@ 4.5827 ], "text": "G", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1327,6 +1489,12 @@ 4.5827 ], "text": "8", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1356,6 +1524,12 @@ 4.5827 ], "text": "22.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1385,6 +1559,12 @@ 5.0131 ], "text": "Subtotal: 300.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1428,6 +1608,12 @@ 5.2333 ], "text": "Tax: 30.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1471,6 +1657,12 @@ 5.481 ], "text": "Tip: 100.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1514,6 +1706,12 @@ 5.6733 ], "text": "Total: 430.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1557,6 +1755,12 @@ 6.7981 ], "text": "Signature: ____Bilbo Baggins__________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1602,71 +1806,13 @@ } ] } - ], - "selectionMarks": [ - { - "boundingBox": [ - 0, - 9.8745, - 1.1035, - 9.8745, - 1.1035, - 10.9943, - 0, - 10.9943 - ], - "confidence": 0.881, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.4952, - 1.9659, - 10.4952, - 1.9659, - 10.9978, - 0, - 10.9978 - ], - "confidence": 0.8, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 0.0263, - 1.0499, - 0.0263, - 1.0499, - 1.0117, - 0, - 1.0117 - ], - "confidence": 0.6, - "state": "unselected" - }, - { - "boundingBox": [ - 7.5064, - 9.9415, - 8.4985, - 9.9415, - 8.4985, - 11, - 7.5064, - 11 - ], - "confidence": 0.553, - "state": "unselected" - } ] }, { "page": 2, "angle": 0, - "width": 8.4967, - "height": 10.9967, + "width": 8.5, + "height": 11, "unit": "inch", "lines": [] }, @@ -1689,6 +1835,12 @@ 1.2812 ], "text": "Company B Invoice", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1746,6 +1898,12 @@ 1.2121 ], "text": "Invoice For:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1789,6 +1947,12 @@ 1.6155 ], "text": "Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1818,6 +1982,12 @@ 1.5931 ], "text": "Frodo Baggins", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1861,6 +2031,12 @@ 1.7854 ], "text": "123 Hobbit Lane", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1918,6 +2094,12 @@ 1.9554 ], "text": "567 Main St.", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1975,6 +2157,12 @@ 2.0275 ], "text": "Redmond, WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2018,6 +2206,12 @@ 2.1975 ], "text": "Redmond, WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2061,6 +2255,12 @@ 2.2254 ], "text": "555-555-5555", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2090,6 +2290,12 @@ 2.3954 ], "text": "555-555-5555", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2119,6 +2325,12 @@ 3.109 ], "text": "Item", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2148,6 +2360,12 @@ 3.1371 ], "text": "Quantity", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2177,6 +2395,12 @@ 3.109 ], "text": "Price", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2206,6 +2430,12 @@ 3.318 ], "text": "A", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2235,6 +2465,12 @@ 3.319 ], "text": "10", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2264,6 +2500,12 @@ 3.319 ], "text": "100.99", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2293,6 +2535,12 @@ 3.531 ], "text": "B", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2322,6 +2570,12 @@ 3.5323 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2351,6 +2605,12 @@ 3.5323 ], "text": "140.67", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2380,6 +2640,12 @@ 3.7421 ], "text": "C", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2409,6 +2675,12 @@ 3.7423 ], "text": "40", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2438,6 +2710,12 @@ 3.7423 ], "text": "150.66", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2467,6 +2745,12 @@ 3.951 ], "text": "D", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2496,6 +2780,12 @@ 3.9523 ], "text": "10", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2525,6 +2815,12 @@ 3.9523 ], "text": "120.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2554,6 +2850,12 @@ 4.1614 ], "text": "E", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2583,6 +2885,12 @@ 4.1627 ], "text": "40", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2612,6 +2920,12 @@ 4.1627 ], "text": "100.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2641,6 +2955,12 @@ 4.3717 ], "text": "F", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2670,6 +2990,12 @@ 4.3727 ], "text": "60", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2699,6 +3025,12 @@ 4.3727 ], "text": "120.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2728,6 +3060,12 @@ 4.5827 ], "text": "G", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2757,6 +3095,12 @@ 4.5827 ], "text": "80", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2786,6 +3130,12 @@ 4.5827 ], "text": "220.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2815,6 +3165,12 @@ 5.0131 ], "text": "Subtotal: 3000.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2858,6 +3214,12 @@ 5.2333 ], "text": "Tax: 300.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2901,6 +3263,12 @@ 5.481 ], "text": "Tip: 1000.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2944,6 +3312,12 @@ 5.6733 ], "text": "Total: 4300.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2987,6 +3361,12 @@ 6.7981 ], "text": "Signature: ____Frodo Baggins__________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3032,78 +3412,6 @@ } ] } - ], - "selectionMarks": [ - { - "boundingBox": [ - 0, - 9.877, - 1.1039, - 9.877, - 1.1039, - 10.9946, - 0, - 10.9946 - ], - "confidence": 0.881, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.498, - 1.9897, - 10.498, - 1.9897, - 10.9975, - 0, - 10.9975 - ], - "confidence": 0.833, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 0.0268, - 1.048, - 0.0268, - 1.048, - 1.0107, - 0, - 1.0107 - ], - "confidence": 0.6, - "state": "unselected" - }, - { - "boundingBox": [ - 6.8221, - 10.6394, - 8.4766, - 10.6394, - 8.4766, - 11, - 6.8221, - 11 - ], - "confidence": 0.6, - "state": "unselected" - }, - { - "boundingBox": [ - 7.5061, - 9.9417, - 8.4988, - 9.9417, - 8.4988, - 11, - 7.5061, - 11 - ], - "confidence": 0.553, - "state": "unselected" - } ] } ], @@ -3120,14 +3428,14 @@ "columnIndex": 0, "text": "Item", "boundingBox": [ - 1.0037, - 2.9443, - 3.1681, - 2.9443, - 3.1681, - 3.1543, - 1.0037, - 3.1543 + 0.9909, + 2.9408, + 3.1582, + 2.9408, + 3.1582, + 3.1528, + 0.9909, + 3.1528 ], "elements": [ "#/readResults/0/lines/10/words/0" @@ -3138,14 +3446,14 @@ "columnIndex": 1, "text": "Quantity", "boundingBox": [ - 3.1681, - 2.9443, - 5.3353, - 2.9443, - 5.3353, - 3.1543, - 3.1681, - 3.1543 + 3.1582, + 2.9408, + 5.3322, + 2.9408, + 5.3322, + 3.1528, + 3.1582, + 3.1528 ], "elements": [ "#/readResults/0/lines/11/words/0" @@ -3156,14 +3464,14 @@ "columnIndex": 2, "text": "Price", "boundingBox": [ - 5.3353, - 2.9443, - 7.4997, - 2.9443, - 7.4997, - 3.1543, - 5.3353, - 3.1543 + 5.3322, + 2.9408, + 7.4928, + 2.947, + 7.4928, + 3.1528, + 5.3322, + 3.1528 ], "elements": [ "#/readResults/0/lines/12/words/0" @@ -3174,14 +3482,14 @@ "columnIndex": 0, "text": "A", "boundingBox": [ - 1.0037, - 3.1543, - 3.1681, - 3.1543, - 3.1681, - 3.3643, - 1.0037, - 3.3643 + 0.9909, + 3.1528, + 3.1582, + 3.1528, + 3.1582, + 3.3649, + 0.9976, + 3.3649 ], "elements": [ "#/readResults/0/lines/13/words/0" @@ -3192,14 +3500,14 @@ "columnIndex": 1, "text": "1", "boundingBox": [ - 3.1681, - 3.1543, - 5.3353, - 3.1543, - 5.3353, - 3.3643, - 3.1681, - 3.3643 + 3.1582, + 3.1528, + 5.3322, + 3.1528, + 5.3322, + 3.3649, + 3.1582, + 3.3649 ], "elements": [ "#/readResults/0/lines/14/words/0" @@ -3210,14 +3518,14 @@ "columnIndex": 2, "text": "10.99", "boundingBox": [ - 5.3353, - 3.1543, - 7.4997, - 3.1543, - 7.4997, - 3.3643, - 5.3353, - 3.3643 + 5.3322, + 3.1528, + 7.4928, + 3.1528, + 7.4995, + 3.3649, + 5.3322, + 3.3649 ], "elements": [ "#/readResults/0/lines/15/words/0" @@ -3228,14 +3536,14 @@ "columnIndex": 0, "text": "B", "boundingBox": [ - 1.0037, - 3.3643, - 3.1681, - 3.3643, - 3.1681, - 3.5776, - 1.0037, - 3.5776 + 0.9976, + 3.3649, + 3.1582, + 3.3649, + 3.1582, + 3.5707, + 0.9976, + 3.5707 ], "elements": [ "#/readResults/0/lines/16/words/0" @@ -3246,14 +3554,14 @@ "columnIndex": 1, "text": "2", "boundingBox": [ - 3.1681, - 3.3643, - 5.3353, - 3.3643, - 5.3353, - 3.5776, - 3.1681, - 3.5776 + 3.1582, + 3.3649, + 5.3322, + 3.3649, + 5.3322, + 3.5707, + 3.1582, + 3.5707 ], "elements": [ "#/readResults/0/lines/17/words/0" @@ -3264,14 +3572,14 @@ "columnIndex": 2, "text": "14.67", "boundingBox": [ - 5.3353, - 3.3643, - 7.4997, - 3.3643, - 7.4997, - 3.5776, - 5.3353, - 3.5776 + 5.3322, + 3.3649, + 7.4995, + 3.3649, + 7.4995, + 3.5707, + 5.3322, + 3.5707 ], "elements": [ "#/readResults/0/lines/18/words/0" @@ -3282,14 +3590,14 @@ "columnIndex": 0, "text": "C", "boundingBox": [ - 1.0037, - 3.5776, - 3.1681, - 3.5776, - 3.1681, - 3.7876, - 1.0037, - 3.7876 + 0.9976, + 3.5707, + 3.1582, + 3.5707, + 3.1582, + 3.7827, + 0.9976, + 3.7827 ], "elements": [ "#/readResults/0/lines/19/words/0" @@ -3300,14 +3608,14 @@ "columnIndex": 1, "text": "4", "boundingBox": [ - 3.1681, - 3.5776, - 5.3353, - 3.5776, - 5.3353, - 3.7876, - 3.1681, - 3.7876 + 3.1582, + 3.5707, + 5.3322, + 3.5707, + 5.3322, + 3.7827, + 3.1582, + 3.7827 ], "elements": [ "#/readResults/0/lines/20/words/0" @@ -3318,14 +3626,14 @@ "columnIndex": 2, "text": "15.66", "boundingBox": [ - 5.3353, - 3.5776, - 7.4997, - 3.5776, - 7.4997, - 3.7876, - 5.3353, - 3.7876 + 5.3322, + 3.5707, + 7.4995, + 3.5707, + 7.4995, + 3.7827, + 5.3322, + 3.7827 ], "elements": [ "#/readResults/0/lines/21/words/0" @@ -3336,14 +3644,14 @@ "columnIndex": 0, "text": "D", "boundingBox": [ - 1.0037, - 3.7876, - 3.1681, - 3.7876, - 3.1681, - 3.9976, - 1.0037, - 3.9976 + 0.9976, + 3.7827, + 3.1582, + 3.7827, + 3.1582, + 3.9885, + 1.0043, + 3.9885 ], "elements": [ "#/readResults/0/lines/22/words/0" @@ -3354,14 +3662,14 @@ "columnIndex": 1, "text": "1", "boundingBox": [ - 3.1681, - 3.7876, - 5.3353, - 3.7876, - 5.3353, - 3.9976, - 3.1681, - 3.9976 + 3.1582, + 3.7827, + 5.3322, + 3.7827, + 5.3322, + 3.9885, + 3.1582, + 3.9885 ], "elements": [ "#/readResults/0/lines/23/words/0" @@ -3372,14 +3680,14 @@ "columnIndex": 2, "text": "12.00", "boundingBox": [ - 5.3353, - 3.7876, - 7.4997, - 3.7876, - 7.4997, - 3.9976, - 5.3353, - 3.9976 + 5.3322, + 3.7827, + 7.4995, + 3.7827, + 7.4995, + 3.9885, + 5.3322, + 3.9885 ], "elements": [ "#/readResults/0/lines/24/words/0" @@ -3390,14 +3698,14 @@ "columnIndex": 0, "text": "E", "boundingBox": [ - 1.0037, - 3.9976, - 3.1681, - 3.9976, - 3.1681, - 4.2081, - 1.0037, - 4.2081 + 1.0043, + 3.9885, + 3.1582, + 3.9885, + 3.1582, + 4.2006, + 1.0043, + 4.2006 ], "elements": [ "#/readResults/0/lines/25/words/0" @@ -3408,14 +3716,14 @@ "columnIndex": 1, "text": "4", "boundingBox": [ - 3.1681, - 3.9976, - 5.3353, - 3.9976, - 5.3353, - 4.2081, - 3.1681, - 4.2081 + 3.1582, + 3.9885, + 5.3322, + 3.9885, + 5.3322, + 4.2006, + 3.1582, + 4.2006 ], "elements": [ "#/readResults/0/lines/26/words/0" @@ -3426,14 +3734,14 @@ "columnIndex": 2, "text": "10.00", "boundingBox": [ - 5.3353, - 3.9976, - 7.4997, - 3.9976, - 7.4997, - 4.2081, - 5.3353, - 4.2081 + 5.3322, + 3.9885, + 7.4995, + 3.9885, + 7.5062, + 4.2006, + 5.3322, + 4.2006 ], "elements": [ "#/readResults/0/lines/27/words/0" @@ -3444,14 +3752,14 @@ "columnIndex": 0, "text": "F", "boundingBox": [ - 1.0037, - 4.2081, - 3.1681, - 4.2081, - 3.1681, - 4.4181, - 1.0037, - 4.4181 + 1.0043, + 4.2006, + 3.1582, + 4.2006, + 3.1582, + 4.4126, + 1.0043, + 4.4126 ], "elements": [ "#/readResults/0/lines/28/words/0" @@ -3462,14 +3770,14 @@ "columnIndex": 1, "text": "6", "boundingBox": [ - 3.1681, - 4.2081, - 5.3353, - 4.2081, - 5.3353, - 4.4181, - 3.1681, - 4.4181 + 3.1582, + 4.2006, + 5.3322, + 4.2006, + 5.3322, + 4.4126, + 3.1582, + 4.4126 ], "elements": [ "#/readResults/0/lines/29/words/0" @@ -3480,14 +3788,14 @@ "columnIndex": 2, "text": "12.00", "boundingBox": [ - 5.3353, - 4.2081, - 7.4997, - 4.2081, - 7.4997, - 4.4181, - 5.3353, - 4.4181 + 5.3322, + 4.2006, + 7.5062, + 4.2006, + 7.5062, + 4.4126, + 5.3322, + 4.4126 ], "elements": [ "#/readResults/0/lines/30/words/0" @@ -3498,14 +3806,14 @@ "columnIndex": 0, "text": "G", "boundingBox": [ - 1.0037, - 4.4181, - 3.1681, - 4.4181, - 3.1681, - 4.6281, - 1.0037, - 4.6281 + 1.0043, + 4.4126, + 3.1582, + 4.4126, + 3.1582, + 4.6184, + 1.011, + 4.6246 ], "elements": [ "#/readResults/0/lines/31/words/0" @@ -3516,14 +3824,14 @@ "columnIndex": 1, "text": "8", "boundingBox": [ - 3.1681, - 4.4181, - 5.3353, - 4.4181, - 5.3353, - 4.6281, - 3.1681, - 4.6281 + 3.1582, + 4.4126, + 5.3322, + 4.4126, + 5.3322, + 4.6184, + 3.1582, + 4.6184 ], "elements": [ "#/readResults/0/lines/32/words/0" @@ -3534,19 +3842,29 @@ "columnIndex": 2, "text": "22.00", "boundingBox": [ - 5.3353, - 4.4181, - 7.4997, - 4.4181, - 7.4997, - 4.6281, - 5.3353, - 4.6281 + 5.3322, + 4.4126, + 7.5062, + 4.4126, + 7.5062, + 4.6246, + 5.3322, + 4.6184 ], "elements": [ "#/readResults/0/lines/33/words/0" ] } + ], + "boundingBox": [ + 0.9957, + 2.9322, + 7.4976, + 2.9326, + 7.4974, + 4.6222, + 0.9944, + 4.6216 ] } ] @@ -3567,14 +3885,14 @@ "columnIndex": 0, "text": "Item", "boundingBox": [ - 1.0037, - 2.9443, - 3.1681, - 2.9443, - 3.1681, - 3.1543, - 1.0037, - 3.1543 + 0.9909, + 2.9408, + 3.1582, + 2.9408, + 3.1582, + 3.1528, + 0.9909, + 3.1528 ], "elements": [ "#/readResults/2/lines/10/words/0" @@ -3585,14 +3903,14 @@ "columnIndex": 1, "text": "Quantity", "boundingBox": [ - 3.1681, - 2.9443, - 5.3353, - 2.9443, - 5.3353, - 3.1543, - 3.1681, - 3.1543 + 3.1582, + 2.9408, + 5.3322, + 2.9408, + 5.3322, + 3.1528, + 3.1582, + 3.1528 ], "elements": [ "#/readResults/2/lines/11/words/0" @@ -3603,14 +3921,14 @@ "columnIndex": 2, "text": "Price", "boundingBox": [ - 5.3353, - 2.9443, - 7.4997, - 2.9443, - 7.4997, - 3.1543, - 5.3353, - 3.1543 + 5.3322, + 2.9408, + 7.4928, + 2.947, + 7.4928, + 3.1528, + 5.3322, + 3.1528 ], "elements": [ "#/readResults/2/lines/12/words/0" @@ -3621,14 +3939,14 @@ "columnIndex": 0, "text": "A", "boundingBox": [ - 1.0037, - 3.1543, - 3.1681, - 3.1543, - 3.1681, - 3.3643, - 1.0037, - 3.3643 + 0.9909, + 3.1528, + 3.1582, + 3.1528, + 3.1582, + 3.3649, + 0.9976, + 3.3649 ], "elements": [ "#/readResults/2/lines/13/words/0" @@ -3639,14 +3957,14 @@ "columnIndex": 1, "text": "10", "boundingBox": [ - 3.1681, - 3.1543, - 5.3353, - 3.1543, - 5.3353, - 3.3643, - 3.1681, - 3.3643 + 3.1582, + 3.1528, + 5.3322, + 3.1528, + 5.3322, + 3.3649, + 3.1582, + 3.3649 ], "elements": [ "#/readResults/2/lines/14/words/0" @@ -3657,14 +3975,14 @@ "columnIndex": 2, "text": "100.99", "boundingBox": [ - 5.3353, - 3.1543, - 7.4997, - 3.1543, - 7.4997, - 3.3643, - 5.3353, - 3.3643 + 5.3322, + 3.1528, + 7.4928, + 3.1528, + 7.4995, + 3.3649, + 5.3322, + 3.3649 ], "elements": [ "#/readResults/2/lines/15/words/0" @@ -3675,14 +3993,14 @@ "columnIndex": 0, "text": "B", "boundingBox": [ - 1.0037, - 3.3643, - 3.1681, - 3.3643, - 3.1681, - 3.5776, - 1.0037, - 3.5776 + 0.9976, + 3.3649, + 3.1582, + 3.3649, + 3.1582, + 3.5707, + 0.9976, + 3.5707 ], "elements": [ "#/readResults/2/lines/16/words/0" @@ -3693,14 +4011,14 @@ "columnIndex": 1, "text": "20", "boundingBox": [ - 3.1681, - 3.3643, - 5.3353, - 3.3643, - 5.3353, - 3.5776, - 3.1681, - 3.5776 + 3.1582, + 3.3649, + 5.3322, + 3.3649, + 5.3322, + 3.5707, + 3.1582, + 3.5707 ], "elements": [ "#/readResults/2/lines/17/words/0" @@ -3711,14 +4029,14 @@ "columnIndex": 2, "text": "140.67", "boundingBox": [ - 5.3353, - 3.3643, - 7.4997, - 3.3643, - 7.4997, - 3.5776, - 5.3353, - 3.5776 + 5.3322, + 3.3649, + 7.4995, + 3.3649, + 7.4995, + 3.5707, + 5.3322, + 3.5707 ], "elements": [ "#/readResults/2/lines/18/words/0" @@ -3729,14 +4047,14 @@ "columnIndex": 0, "text": "C", "boundingBox": [ - 1.0037, - 3.5776, - 3.1681, - 3.5776, - 3.1681, - 3.7876, - 1.0037, - 3.7876 + 0.9976, + 3.5707, + 3.1582, + 3.5707, + 3.1582, + 3.7827, + 0.9976, + 3.7827 ], "elements": [ "#/readResults/2/lines/19/words/0" @@ -3747,14 +4065,14 @@ "columnIndex": 1, "text": "40", "boundingBox": [ - 3.1681, - 3.5776, - 5.3353, - 3.5776, - 5.3353, - 3.7876, - 3.1681, - 3.7876 + 3.1582, + 3.5707, + 5.3322, + 3.5707, + 5.3322, + 3.7827, + 3.1582, + 3.7827 ], "elements": [ "#/readResults/2/lines/20/words/0" @@ -3765,14 +4083,14 @@ "columnIndex": 2, "text": "150.66", "boundingBox": [ - 5.3353, - 3.5776, - 7.4997, - 3.5776, - 7.4997, - 3.7876, - 5.3353, - 3.7876 + 5.3322, + 3.5707, + 7.4995, + 3.5707, + 7.4995, + 3.7827, + 5.3322, + 3.7827 ], "elements": [ "#/readResults/2/lines/21/words/0" @@ -3783,14 +4101,14 @@ "columnIndex": 0, "text": "D", "boundingBox": [ - 1.0037, - 3.7876, - 3.1681, - 3.7876, - 3.1681, - 3.9976, - 1.0037, - 3.9976 + 0.9976, + 3.7827, + 3.1582, + 3.7827, + 3.1582, + 3.9885, + 1.0043, + 3.9885 ], "elements": [ "#/readResults/2/lines/22/words/0" @@ -3801,14 +4119,14 @@ "columnIndex": 1, "text": "10", "boundingBox": [ - 3.1681, - 3.7876, - 5.3353, - 3.7876, - 5.3353, - 3.9976, - 3.1681, - 3.9976 + 3.1582, + 3.7827, + 5.3322, + 3.7827, + 5.3322, + 3.9885, + 3.1582, + 3.9885 ], "elements": [ "#/readResults/2/lines/23/words/0" @@ -3819,14 +4137,14 @@ "columnIndex": 2, "text": "120.00", "boundingBox": [ - 5.3353, - 3.7876, - 7.4997, - 3.7876, - 7.4997, - 3.9976, - 5.3353, - 3.9976 + 5.3322, + 3.7827, + 7.4995, + 3.7827, + 7.4995, + 3.9885, + 5.3322, + 3.9885 ], "elements": [ "#/readResults/2/lines/24/words/0" @@ -3837,14 +4155,14 @@ "columnIndex": 0, "text": "E", "boundingBox": [ - 1.0037, - 3.9976, - 3.1681, - 3.9976, - 3.1681, - 4.2081, - 1.0037, - 4.2081 + 1.0043, + 3.9885, + 3.1582, + 3.9885, + 3.1582, + 4.2006, + 1.0043, + 4.2006 ], "elements": [ "#/readResults/2/lines/25/words/0" @@ -3855,14 +4173,14 @@ "columnIndex": 1, "text": "40", "boundingBox": [ - 3.1681, - 3.9976, - 5.3353, - 3.9976, - 5.3353, - 4.2081, - 3.1681, - 4.2081 + 3.1582, + 3.9885, + 5.3322, + 3.9885, + 5.3322, + 4.2006, + 3.1582, + 4.2006 ], "elements": [ "#/readResults/2/lines/26/words/0" @@ -3873,14 +4191,14 @@ "columnIndex": 2, "text": "100.00", "boundingBox": [ - 5.3353, - 3.9976, - 7.4997, - 3.9976, - 7.4997, - 4.2081, - 5.3353, - 4.2081 + 5.3322, + 3.9885, + 7.4995, + 3.9885, + 7.5062, + 4.2006, + 5.3322, + 4.2006 ], "elements": [ "#/readResults/2/lines/27/words/0" @@ -3891,14 +4209,14 @@ "columnIndex": 0, "text": "F", "boundingBox": [ - 1.0037, - 4.2081, - 3.1681, - 4.2081, - 3.1681, - 4.4181, - 1.0037, - 4.4181 + 1.0043, + 4.2006, + 3.1582, + 4.2006, + 3.1582, + 4.4126, + 1.0043, + 4.4126 ], "elements": [ "#/readResults/2/lines/28/words/0" @@ -3909,14 +4227,14 @@ "columnIndex": 1, "text": "60", "boundingBox": [ - 3.1681, - 4.2081, - 5.3353, - 4.2081, - 5.3353, - 4.4181, - 3.1681, - 4.4181 + 3.1582, + 4.2006, + 5.3322, + 4.2006, + 5.3322, + 4.4126, + 3.1582, + 4.4126 ], "elements": [ "#/readResults/2/lines/29/words/0" @@ -3927,14 +4245,14 @@ "columnIndex": 2, "text": "120.00", "boundingBox": [ - 5.3353, - 4.2081, - 7.4997, - 4.2081, - 7.4997, - 4.4181, - 5.3353, - 4.4181 + 5.3322, + 4.2006, + 7.5062, + 4.2006, + 7.5062, + 4.4126, + 5.3322, + 4.4126 ], "elements": [ "#/readResults/2/lines/30/words/0" @@ -3945,14 +4263,14 @@ "columnIndex": 0, "text": "G", "boundingBox": [ - 1.0037, - 4.4181, - 3.1681, - 4.4181, - 3.1681, - 4.6281, - 1.0037, - 4.6281 + 1.0043, + 4.4126, + 3.1582, + 4.4126, + 3.1582, + 4.6184, + 1.011, + 4.6246 ], "elements": [ "#/readResults/2/lines/31/words/0" @@ -3963,14 +4281,14 @@ "columnIndex": 1, "text": "80", "boundingBox": [ - 3.1681, - 4.4181, - 5.3353, - 4.4181, - 5.3353, - 4.6281, - 3.1681, - 4.6281 + 3.1582, + 4.4126, + 5.3322, + 4.4126, + 5.3322, + 4.6184, + 3.1582, + 4.6184 ], "elements": [ "#/readResults/2/lines/32/words/0" @@ -3981,19 +4299,29 @@ "columnIndex": 2, "text": "220.00", "boundingBox": [ - 5.3353, - 4.4181, - 7.4997, - 4.4181, - 7.4997, - 4.6281, - 5.3353, - 4.6281 + 5.3322, + 4.4126, + 7.5062, + 4.4126, + 7.5062, + 4.6246, + 5.3322, + 4.6184 ], "elements": [ "#/readResults/2/lines/33/words/0" ] } + ], + "boundingBox": [ + 0.996, + 2.9328, + 7.4972, + 2.9334, + 7.4967, + 4.6223, + 0.9946, + 4.6216 ] } ] @@ -4005,7 +4333,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1500463666" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentFromUriThrowsForNonExistingContent.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentFromUriThrowsForNonExistingContent.json index 18500d1be98f5..5ff90bb05afb4 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentFromUriThrowsForNonExistingContent.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentFromUriThrowsForNonExistingContent.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2d22a7d3f518b248b8c51052944ea126-c5f7a48f9ba87d4e-00", + "traceparent": "00-e41150c77d257944adccd5c97fd8cb91-a308d74f3aa80446-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3fb24ee500b907e2e9685db142ae6e9f", "x-ms-return-client-request-id": "true" @@ -21,13 +21,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "9d303fd9-648e-49e5-9e7c-6782cc9ed0af", + "apim-request-id": "181d4e6b-677e-4c9a-aa81-e71a6c292aab", "Content-Length": "95", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:31 GMT", + "Date": "Fri, 30 Oct 2020 12:50:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "272" + "x-envoy-upstream-service-time": "693" }, "ResponseBody": { "error": { @@ -39,7 +39,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "968130052" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentFromUriThrowsForNonExistingContentAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentFromUriThrowsForNonExistingContentAsync.json index 0024218b8a5d5..e75d0be5c626d 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentFromUriThrowsForNonExistingContentAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentFromUriThrowsForNonExistingContentAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e8152bccd1a0374b908b7e0ee7a1ef73-844bb0e623bc8c43-00", + "traceparent": "00-1a7df2c79d7af040bb705d51e1f277f9-4805f648dbcb874a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ea9fc6f9db9f68f9a429f642ecc9ca32", "x-ms-return-client-request-id": "true" @@ -21,13 +21,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "789d32a9-13ca-44b5-ba5a-19229377d89f", + "apim-request-id": "19dcefe0-b251-46cc-9aa6-f09f43efc332", "Content-Length": "95", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:23 GMT", + "Date": "Fri, 30 Oct 2020 12:56:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "153" + "x-envoy-upstream-service-time": "138" }, "ResponseBody": { "error": { @@ -39,7 +39,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "189591610" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(False).json index bf461683c8843..cbec4b003969d 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-830b1f10c3d94f47b7dbd6e9d4b01323-29bf09e06fb62f4a-00", + "traceparent": "00-59f0fdadeec2da4cb4fc975e3f3b4aca-ff90a51107954946-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ab80dd6ffed61ee9729e79382fb8409b", "x-ms-return-client-request-id": "true" @@ -21,25 +21,25 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "eaeee5a3-4705-416d-9e0e-d568c68027dc", + "apim-request-id": "fc463ffb-8b1f-422f-b00e-42af0f23843b", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:29:55 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/eaeee5a3-4705-416d-9e0e-d568c68027dc", + "Date": "Fri, 30 Oct 2020 12:46:15 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/fc463ffb-8b1f-422f-b00e-42af0f23843b", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "384" + "x-envoy-upstream-service-time": "520" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/eaeee5a3-4705-416d-9e0e-d568c68027dc", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/fc463ffb-8b1f-422f-b00e-42af0f23843b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "64185bfbd9e38aac26d92d9b6e558563", "x-ms-return-client-request-id": "true" @@ -47,29 +47,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7dc2154f-fc94-4e8e-a3bb-f441c6f87746", + "apim-request-id": "f8bfde4d-5804-4d2f-b1f0-161e68f55f4d", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:55 GMT", + "Date": "Fri, 30 Oct 2020 12:46:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:55Z", - "lastUpdatedDateTime": "2020-09-09T22:29:55Z" + "createdDateTime": "2020-10-30T12:46:15Z", + "lastUpdatedDateTime": "2020-10-30T12:46:15Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/eaeee5a3-4705-416d-9e0e-d568c68027dc", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/fc463ffb-8b1f-422f-b00e-42af0f23843b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "de25e0894a1f6ff476f99a08dfa4f3e9", "x-ms-return-client-request-id": "true" @@ -77,29 +77,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4443e27d-29e1-4040-a6fb-1bac5738319e", + "apim-request-id": "ee9d51d6-adf6-401f-82dc-9cdebc60810b", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:56 GMT", + "Date": "Fri, 30 Oct 2020 12:46:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:55Z", - "lastUpdatedDateTime": "2020-09-09T22:29:55Z" + "createdDateTime": "2020-10-30T12:46:15Z", + "lastUpdatedDateTime": "2020-10-30T12:46:15Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/eaeee5a3-4705-416d-9e0e-d568c68027dc", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/fc463ffb-8b1f-422f-b00e-42af0f23843b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c507427a08bb96db30f684fdd14eaf1d", "x-ms-return-client-request-id": "true" @@ -107,29 +107,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b7d4badf-c24c-4dce-9a43-7668460511c4", + "apim-request-id": "2da37eea-97fe-4401-92da-dbbaf8946f51", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:57 GMT", + "Date": "Fri, 30 Oct 2020 12:46:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:55Z", - "lastUpdatedDateTime": "2020-09-09T22:29:55Z" + "createdDateTime": "2020-10-30T12:46:15Z", + "lastUpdatedDateTime": "2020-10-30T12:46:15Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/eaeee5a3-4705-416d-9e0e-d568c68027dc", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/fc463ffb-8b1f-422f-b00e-42af0f23843b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4faf15196292b07b66a8eeea3ea4aa82", "x-ms-return-client-request-id": "true" @@ -137,18 +137,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c52bca96-70ab-4d12-b0d6-8324b561fd00", - "Content-Length": "21134", + "apim-request-id": "9fcc6e26-8409-4517-8ab5-3a13f71a3d39", + "Content-Length": "24387", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:58 GMT", + "Date": "Fri, 30 Oct 2020 12:46:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:29:55Z", - "lastUpdatedDateTime": "2020-09-09T22:29:58Z", + "createdDateTime": "2020-10-30T12:46:15Z", + "lastUpdatedDateTime": "2020-10-30T12:46:19Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -171,6 +171,12 @@ 166 ], "text": "Purchase Order", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -214,6 +220,12 @@ 266 ], "text": "Hero Limited", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -257,6 +269,12 @@ 369 ], "text": "Purchase Order", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -300,6 +318,12 @@ 379 ], "text": "Company Phone: 555-348-6512", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -357,6 +381,12 @@ 418 ], "text": "Website: www.herolimited.com", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -400,6 +430,12 @@ 460 ], "text": "Email:", + "appearance": { + "style": { + "name": "other", + "confidence": 0.99 + } + }, "words": [ { "boundingBox": [ @@ -429,6 +465,12 @@ 448 ], "text": "Dated As: 12/20/2020", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -486,6 +528,12 @@ 503 ], "text": "accounts@herolimited.com", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -515,6 +563,12 @@ 488 ], "text": "Purchase Order #: 948284", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -586,6 +640,12 @@ 592 ], "text": "Shipped To", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -629,6 +689,12 @@ 638 ], "text": "Vendor Name: Hillary Swank", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -700,6 +766,12 @@ 679 ], "text": "Company Name: Higgly Wiggly Books", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -785,6 +857,12 @@ 711 ], "text": "Address: 938 NE Burner Road", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -870,6 +948,12 @@ 751 ], "text": "Boulder City, CO 92848", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -925,7 +1009,7 @@ 751 ], "text": "92848", - "confidence": 0.977 + "confidence": 0.976 } ] }, @@ -941,6 +1025,12 @@ 748 ], "text": "Phone: 938-294-2949", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -984,6 +1074,12 @@ 830 ], "text": "Shipped From", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1027,6 +1123,12 @@ 879 ], "text": "Name: Bernie Sanders", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1040,7 +1142,7 @@ 879 ], "text": "Name:", - "confidence": 0.986 + "confidence": 0.983 }, { "boundingBox": [ @@ -1084,6 +1186,12 @@ 919 ], "text": "Company Name: Jupiter Book Supply", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1169,6 +1277,12 @@ 952 ], "text": "Address: 383 N Kinnick Road", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1254,6 +1368,12 @@ 991 ], "text": "Seattle, WA 38383", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1311,6 +1431,12 @@ 990 ], "text": "Phone: 932-299-0292", + "appearance": { + "style": { + "name": "other", + "confidence": 0.997 + } + }, "words": [ { "boundingBox": [ @@ -1354,6 +1480,12 @@ 1077 ], "text": "Details", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1383,6 +1515,12 @@ 1083 ], "text": "Quantity", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1412,6 +1550,12 @@ 1077 ], "text": "Unit Price", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1455,6 +1599,12 @@ 1077 ], "text": "Total", + "appearance": { + "style": { + "name": "other", + "confidence": 0.997 + } + }, "words": [ { "boundingBox": [ @@ -1484,6 +1634,12 @@ 1121 ], "text": "Bindings", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1513,6 +1669,12 @@ 1119 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.959 + } + }, "words": [ { "boundingBox": [ @@ -1542,6 +1704,12 @@ 1118 ], "text": "1.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1571,6 +1739,12 @@ 1119 ], "text": "20.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1600,6 +1774,12 @@ 1161 ], "text": "Covers Small", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1643,6 +1823,12 @@ 1160 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.952 + } + }, "words": [ { "boundingBox": [ @@ -1672,6 +1858,12 @@ 1160 ], "text": "1.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1701,6 +1893,12 @@ 1160 ], "text": "20.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1730,6 +1928,12 @@ 1206 ], "text": "Feather Bookmark", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1773,6 +1977,12 @@ 1203 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.842 + } + }, "words": [ { "boundingBox": [ @@ -1802,6 +2012,12 @@ 1204 ], "text": "5.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -1831,6 +2047,12 @@ 1204 ], "text": "100.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1860,6 +2082,12 @@ 1253 ], "text": "Copper Swirl Marker", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1917,6 +2145,12 @@ 1247 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.985 + } + }, "words": [ { "boundingBox": [ @@ -1946,6 +2180,12 @@ 1247 ], "text": "5.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.996 + } + }, "words": [ { "boundingBox": [ @@ -1975,6 +2215,12 @@ 1247 ], "text": "100.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2004,6 +2250,12 @@ 1600 ], "text": "SUBTOTAL", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2033,6 +2285,12 @@ 1598 ], "text": "$140.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.997 + } + }, "words": [ { "boundingBox": [ @@ -2062,6 +2320,12 @@ 1643 ], "text": "TAX", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2091,6 +2355,12 @@ 1643 ], "text": "$4.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2120,6 +2390,12 @@ 1706 ], "text": "Bernie Sanders", + "appearance": { + "style": { + "name": "handwriting", + "confidence": 0.793 + } + }, "words": [ { "boundingBox": [ @@ -2163,6 +2439,12 @@ 1699 ], "text": "TOTAL", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2192,6 +2474,12 @@ 1697 ], "text": "$144.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.995 + } + }, "words": [ { "boundingBox": [ @@ -2221,6 +2509,12 @@ 1741 ], "text": "Bernie Sanders", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2264,6 +2558,12 @@ 1776 ], "text": "Manager", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -2293,6 +2593,12 @@ 1831 ], "text": "Additional Notes:", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2336,6 +2642,12 @@ 1908 ], "text": "Do not Jostle Box. Unpack carefully. Enjoy.", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2449,6 +2761,12 @@ 1958 ], "text": "Jupiter Book Supply will refund you 50% per book if returned within 60 days of reading and", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2702,6 +3020,12 @@ 1991 ], "text": "offer you 25% off you next total purchase.", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2817,22 +3141,6 @@ } ] } - ], - "selectionMarks": [ - { - "boundingBox": [ - 2, - 2060, - 195, - 2060, - 195, - 2200, - 2, - 2200 - ], - "confidence": 0.881, - "state": "unselected" - } ] } ], @@ -2841,155 +3149,23 @@ "page": 1, "tables": [ { - "rows": 4, - "columns": 3, - "cells": [ - { - "rowIndex": 1, - "columnIndex": 1, - "text": "SUBTOTAL", - "boundingBox": [ - 1072, - 1566, - 1309, - 1566, - 1309, - 1610, - 1072, - 1610 - ], - "elements": [ - "#/readResults/0/lines/41/words/0" - ] - }, - { - "rowIndex": 1, - "columnIndex": 2, - "text": "$140.00", - "boundingBox": [ - 1309, - 1566, - 1544, - 1566, - 1544, - 1610, - 1309, - 1610 - ], - "elements": [ - "#/readResults/0/lines/42/words/0" - ] - }, - { - "rowIndex": 2, - "columnIndex": 1, - "text": "TAX", - "boundingBox": [ - 1072, - 1610, - 1309, - 1610, - 1309, - 1658, - 1072, - 1658 - ], - "elements": [ - "#/readResults/0/lines/43/words/0" - ] - }, - { - "rowIndex": 2, - "columnIndex": 2, - "text": "$4.00", - "boundingBox": [ - 1309, - 1610, - 1544, - 1610, - 1544, - 1658, - 1309, - 1658 - ], - "elements": [ - "#/readResults/0/lines/44/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 0, - "text": "Bernie Sanders", - "boundingBox": [ - 489, - 1658, - 1072, - 1658, - 1072, - 1708, - 489, - 1708 - ], - "elements": [ - "#/readResults/0/lines/45/words/0", - "#/readResults/0/lines/45/words/1" - ] - }, - { - "rowIndex": 3, - "columnIndex": 1, - "text": "TOTAL", - "boundingBox": [ - 1072, - 1658, - 1309, - 1658, - 1309, - 1708, - 1072, - 1708 - ], - "elements": [ - "#/readResults/0/lines/46/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 2, - "text": "$144.00", - "boundingBox": [ - 1309, - 1658, - 1544, - 1658, - 1544, - 1708, - 1309, - 1708 - ], - "elements": [ - "#/readResults/0/lines/47/words/0" - ] - } - ] - }, - { - "rows": 6, - "columns": 4, + "rows": 5, + "columns": 5, "cells": [ { "rowIndex": 0, "columnIndex": 0, + "columnSpan": 2, "text": "Details", "boundingBox": [ - 156, + 157, 1038, 847, - 1038, + 1037, 847, - 1087, - 156, - 1087 + 1086, + 157, + 1086 ], "elements": [ "#/readResults/0/lines/21/words/0" @@ -2997,17 +3173,17 @@ }, { "rowIndex": 0, - "columnIndex": 1, + "columnIndex": 2, "text": "Quantity", "boundingBox": [ 847, - 1038, - 1072, - 1038, - 1072, - 1087, + 1037, + 1071, + 1037, + 1071, + 1086, 847, - 1087 + 1086 ], "elements": [ "#/readResults/0/lines/22/words/0" @@ -3015,17 +3191,17 @@ }, { "rowIndex": 0, - "columnIndex": 2, + "columnIndex": 3, "text": "Unit Price", "boundingBox": [ - 1072, + 1071, + 1037, + 1310, 1038, - 1309, - 1038, - 1309, - 1087, - 1072, - 1087 + 1310, + 1086, + 1071, + 1086 ], "elements": [ "#/readResults/0/lines/23/words/0", @@ -3034,17 +3210,17 @@ }, { "rowIndex": 0, - "columnIndex": 3, + "columnIndex": 4, "text": "Total", "boundingBox": [ - 1309, + 1310, 1038, - 1544, + 1543, 1038, - 1544, - 1087, - 1309, - 1087 + 1543, + 1086, + 1310, + 1086 ], "elements": [ "#/readResults/0/lines/24/words/0" @@ -3053,15 +3229,16 @@ { "rowIndex": 1, "columnIndex": 0, + "columnSpan": 2, "text": "Bindings", "boundingBox": [ - 156, - 1087, + 157, + 1086, 847, - 1087, + 1086, 847, - 1128, - 156, + 1127, + 157, 1128 ], "elements": [ @@ -3070,17 +3247,17 @@ }, { "rowIndex": 1, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1087, - 1072, - 1087, - 1072, - 1128, + 1086, + 1071, + 1086, + 1071, + 1127, 847, - 1128 + 1127 ], "elements": [ "#/readResults/0/lines/26/words/0" @@ -3088,17 +3265,17 @@ }, { "rowIndex": 1, - "columnIndex": 2, + "columnIndex": 3, "text": "1.00", "boundingBox": [ - 1072, - 1087, - 1309, - 1087, - 1309, - 1128, - 1072, - 1128 + 1071, + 1086, + 1310, + 1086, + 1310, + 1127, + 1071, + 1127 ], "elements": [ "#/readResults/0/lines/27/words/0" @@ -3106,17 +3283,17 @@ }, { "rowIndex": 1, - "columnIndex": 3, + "columnIndex": 4, "text": "20.00", "boundingBox": [ - 1309, - 1087, - 1544, - 1087, - 1544, - 1128, - 1309, - 1128 + 1310, + 1086, + 1543, + 1086, + 1543, + 1127, + 1310, + 1127 ], "elements": [ "#/readResults/0/lines/28/words/0" @@ -3125,16 +3302,17 @@ { "rowIndex": 2, "columnIndex": 0, + "columnSpan": 2, "text": "Covers Small", "boundingBox": [ - 156, + 157, 1128, 847, - 1128, + 1127, 847, - 1172, - 156, - 1172 + 1171, + 157, + 1171 ], "elements": [ "#/readResults/0/lines/29/words/0", @@ -3143,17 +3321,17 @@ }, { "rowIndex": 2, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1128, - 1072, - 1128, - 1072, - 1172, + 1127, + 1071, + 1127, + 1071, + 1171, 847, - 1172 + 1171 ], "elements": [ "#/readResults/0/lines/30/words/0" @@ -3161,17 +3339,17 @@ }, { "rowIndex": 2, - "columnIndex": 2, + "columnIndex": 3, "text": "1.00", "boundingBox": [ - 1072, - 1128, - 1309, - 1128, - 1309, - 1172, - 1072, - 1172 + 1071, + 1127, + 1310, + 1127, + 1310, + 1171, + 1071, + 1171 ], "elements": [ "#/readResults/0/lines/31/words/0" @@ -3179,17 +3357,17 @@ }, { "rowIndex": 2, - "columnIndex": 3, + "columnIndex": 4, "text": "20.00", "boundingBox": [ - 1309, - 1128, - 1544, - 1128, - 1544, - 1172, - 1309, - 1172 + 1310, + 1127, + 1543, + 1127, + 1543, + 1171, + 1310, + 1171 ], "elements": [ "#/readResults/0/lines/32/words/0" @@ -3198,16 +3376,17 @@ { "rowIndex": 3, "columnIndex": 0, + "columnSpan": 2, "text": "Feather Bookmark", "boundingBox": [ - 156, - 1172, + 157, + 1171, 847, - 1172, + 1171, 847, - 1216, - 156, - 1216 + 1214, + 157, + 1214 ], "elements": [ "#/readResults/0/lines/33/words/0", @@ -3216,17 +3395,17 @@ }, { "rowIndex": 3, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1172, - 1072, - 1172, - 1072, - 1216, + 1171, + 1071, + 1171, + 1071, + 1214, 847, - 1216 + 1214 ], "elements": [ "#/readResults/0/lines/34/words/0" @@ -3234,17 +3413,17 @@ }, { "rowIndex": 3, - "columnIndex": 2, + "columnIndex": 3, "text": "5.00", "boundingBox": [ - 1072, - 1172, - 1309, - 1172, - 1309, - 1216, - 1072, - 1216 + 1071, + 1171, + 1310, + 1171, + 1310, + 1214, + 1071, + 1214 ], "elements": [ "#/readResults/0/lines/35/words/0" @@ -3252,17 +3431,17 @@ }, { "rowIndex": 3, - "columnIndex": 3, + "columnIndex": 4, "text": "100.00", "boundingBox": [ - 1309, - 1172, - 1544, - 1172, - 1544, - 1216, - 1309, - 1216 + 1310, + 1171, + 1543, + 1171, + 1543, + 1215, + 1310, + 1214 ], "elements": [ "#/readResults/0/lines/36/words/0" @@ -3271,16 +3450,17 @@ { "rowIndex": 4, "columnIndex": 0, + "columnSpan": 2, "text": "Copper Swirl Marker", "boundingBox": [ - 156, - 1216, + 157, + 1214, 847, - 1216, + 1214, 847, - 1260, - 156, - 1260 + 1258, + 157, + 1258 ], "elements": [ "#/readResults/0/lines/37/words/0", @@ -3290,17 +3470,17 @@ }, { "rowIndex": 4, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1216, - 1072, - 1216, - 1072, - 1260, + 1214, + 1071, + 1214, + 1071, + 1258, 847, - 1260 + 1258 ], "elements": [ "#/readResults/0/lines/38/words/0" @@ -3308,17 +3488,17 @@ }, { "rowIndex": 4, - "columnIndex": 2, + "columnIndex": 3, "text": "5.00", "boundingBox": [ - 1072, - 1216, - 1309, - 1216, - 1309, - 1260, - 1072, - 1260 + 1071, + 1214, + 1310, + 1214, + 1310, + 1258, + 1071, + 1258 ], "elements": [ "#/readResults/0/lines/39/words/0" @@ -3326,22 +3506,188 @@ }, { "rowIndex": 4, - "columnIndex": 3, + "columnIndex": 4, "text": "100.00", "boundingBox": [ - 1309, - 1216, - 1544, - 1216, - 1544, + 1310, + 1214, + 1543, + 1215, + 1543, 1260, - 1309, - 1260 + 1310, + 1258 ], "elements": [ "#/readResults/0/lines/40/words/0" ] } + ], + "boundingBox": [ + 153, + 1036, + 1547, + 1037, + 1547, + 1265, + 153, + 1265 + ] + }, + { + "rows": 4, + "columns": 2, + "cells": [ + { + "rowIndex": 0, + "columnIndex": 0, + "text": "SUBTOTAL", + "boundingBox": [ + 1072, + 1564, + 1307, + 1565, + 1308, + 1609, + 1071, + 1608 + ], + "elements": [ + "#/readResults/0/lines/41/words/0" + ] + }, + { + "rowIndex": 0, + "columnIndex": 1, + "text": "$140.00", + "boundingBox": [ + 1307, + 1565, + 1542, + 1564, + 1543, + 1609, + 1308, + 1609 + ], + "elements": [ + "#/readResults/0/lines/42/words/0" + ] + }, + { + "rowIndex": 1, + "columnIndex": 0, + "text": "TAX", + "boundingBox": [ + 1071, + 1608, + 1308, + 1609, + 1308, + 1652, + 1071, + 1651 + ], + "elements": [ + "#/readResults/0/lines/43/words/0" + ] + }, + { + "rowIndex": 1, + "columnIndex": 1, + "text": "$4.00", + "boundingBox": [ + 1308, + 1609, + 1543, + 1609, + 1543, + 1652, + 1308, + 1652 + ], + "elements": [ + "#/readResults/0/lines/44/words/0" + ] + }, + { + "rowIndex": 2, + "columnIndex": 0, + "text": "", + "boundingBox": [ + 1071, + 1651, + 1308, + 1652, + 1308, + 1663, + 1071, + 1663 + ], + "elements": [] + }, + { + "rowIndex": 2, + "columnIndex": 1, + "text": "", + "boundingBox": [ + 1308, + 1652, + 1543, + 1652, + 1543, + 1663, + 1308, + 1663 + ], + "elements": [] + }, + { + "rowIndex": 3, + "columnIndex": 0, + "text": "TOTAL", + "boundingBox": [ + 1071, + 1663, + 1308, + 1663, + 1308, + 1707, + 1071, + 1707 + ], + "elements": [ + "#/readResults/0/lines/46/words/0" + ] + }, + { + "rowIndex": 3, + "columnIndex": 1, + "text": "$144.00", + "boundingBox": [ + 1308, + 1663, + 1543, + 1663, + 1543, + 1708, + 1308, + 1707 + ], + "elements": [ + "#/readResults/0/lines/47/words/0" + ] + } + ], + "boundingBox": [ + 1058, + 1563, + 1555, + 1563, + 1555, + 1707, + 1058, + 1707 ] } ] @@ -3353,7 +3699,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "544470524" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(False)Async.json index 25dc8bb5be3f1..ca1108e8bfa03 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-19761488d72d6b44887fa7d435eaa227-1dafb7f9bc8d4849-00", + "traceparent": "00-1406b36509e14b478b8d79af1d335df3-05267e37ca61554d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cdd10967c01982270787b334a6afc39d", "x-ms-return-client-request-id": "true" @@ -21,25 +21,25 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1afb0c7e-d4dc-44ce-8a33-c3522085873f", + "apim-request-id": "f10db941-228c-4b7c-921f-8902f24d70ee", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:35:01 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1afb0c7e-d4dc-44ce-8a33-c3522085873f", + "Date": "Fri, 30 Oct 2020 12:46:38 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/f10db941-228c-4b7c-921f-8902f24d70ee", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "500" + "x-envoy-upstream-service-time": "415" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1afb0c7e-d4dc-44ce-8a33-c3522085873f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/f10db941-228c-4b7c-921f-8902f24d70ee", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "709760bed7cd52e4097783df27470087", "x-ms-return-client-request-id": "true" @@ -47,29 +47,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "09df5742-2ebc-4fd3-be9f-25cfa989e351", + "apim-request-id": "5b00a8ea-5d25-433f-b580-051c717bb4bf", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:01 GMT", + "Date": "Fri, 30 Oct 2020 12:46:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:35:02Z", - "lastUpdatedDateTime": "2020-09-09T22:35:02Z" + "createdDateTime": "2020-10-30T12:46:38Z", + "lastUpdatedDateTime": "2020-10-30T12:46:38Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1afb0c7e-d4dc-44ce-8a33-c3522085873f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/f10db941-228c-4b7c-921f-8902f24d70ee", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b4286c37c627033f606b1a0a86641c4f", "x-ms-return-client-request-id": "true" @@ -77,29 +77,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74ad6833-d16f-4813-bf4c-bc62717bec0c", + "apim-request-id": "492c18f3-30fa-4c2a-a698-0748e3466416", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:02 GMT", + "Date": "Fri, 30 Oct 2020 12:46:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:35:02Z", - "lastUpdatedDateTime": "2020-09-09T22:35:02Z" + "createdDateTime": "2020-10-30T12:46:38Z", + "lastUpdatedDateTime": "2020-10-30T12:46:38Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1afb0c7e-d4dc-44ce-8a33-c3522085873f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/f10db941-228c-4b7c-921f-8902f24d70ee", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4c664511dccb8f50257fc3a13c475bbf", "x-ms-return-client-request-id": "true" @@ -107,29 +107,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "62261afe-de60-4f09-8fd4-72be3d14c462", + "apim-request-id": "e9d96ed5-bec9-4d1c-8b5c-27329bf69dc2", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:04 GMT", + "Date": "Fri, 30 Oct 2020 12:46:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:35:02Z", - "lastUpdatedDateTime": "2020-09-09T22:35:02Z" + "createdDateTime": "2020-10-30T12:46:38Z", + "lastUpdatedDateTime": "2020-10-30T12:46:38Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1afb0c7e-d4dc-44ce-8a33-c3522085873f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/f10db941-228c-4b7c-921f-8902f24d70ee", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "39fc2c870f87f87621931061bdd9cba5", "x-ms-return-client-request-id": "true" @@ -137,48 +137,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b6876ca9-8657-49d1-822e-2fb9b8681fcc", - "Content-Length": "106", + "apim-request-id": "addc9399-5c3f-4e13-aecc-97ebb3de3f70", + "Content-Length": "24387", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:05 GMT", + "Date": "Fri, 30 Oct 2020 12:46:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:35:02Z", - "lastUpdatedDateTime": "2020-09-09T22:35:02Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1afb0c7e-d4dc-44ce-8a33-c3522085873f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e2ce345ab3e15bbc1b998ea7029ec719", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2512396c-eabb-43a1-942b-508fc27ccc02", - "Content-Length": "21134", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:06 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:35:02Z", - "lastUpdatedDateTime": "2020-09-09T22:35:05Z", + "createdDateTime": "2020-10-30T12:46:38Z", + "lastUpdatedDateTime": "2020-10-30T12:46:41Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -201,6 +171,12 @@ 166 ], "text": "Purchase Order", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -244,6 +220,12 @@ 266 ], "text": "Hero Limited", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -287,6 +269,12 @@ 369 ], "text": "Purchase Order", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -330,6 +318,12 @@ 379 ], "text": "Company Phone: 555-348-6512", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -387,6 +381,12 @@ 418 ], "text": "Website: www.herolimited.com", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -430,6 +430,12 @@ 460 ], "text": "Email:", + "appearance": { + "style": { + "name": "other", + "confidence": 0.99 + } + }, "words": [ { "boundingBox": [ @@ -459,6 +465,12 @@ 448 ], "text": "Dated As: 12/20/2020", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -516,6 +528,12 @@ 503 ], "text": "accounts@herolimited.com", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -545,6 +563,12 @@ 488 ], "text": "Purchase Order #: 948284", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -616,6 +640,12 @@ 592 ], "text": "Shipped To", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -659,6 +689,12 @@ 638 ], "text": "Vendor Name: Hillary Swank", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -730,6 +766,12 @@ 679 ], "text": "Company Name: Higgly Wiggly Books", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -815,6 +857,12 @@ 711 ], "text": "Address: 938 NE Burner Road", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -900,6 +948,12 @@ 751 ], "text": "Boulder City, CO 92848", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -955,7 +1009,7 @@ 751 ], "text": "92848", - "confidence": 0.977 + "confidence": 0.976 } ] }, @@ -971,6 +1025,12 @@ 748 ], "text": "Phone: 938-294-2949", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -1014,6 +1074,12 @@ 830 ], "text": "Shipped From", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1057,6 +1123,12 @@ 879 ], "text": "Name: Bernie Sanders", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1070,7 +1142,7 @@ 879 ], "text": "Name:", - "confidence": 0.986 + "confidence": 0.983 }, { "boundingBox": [ @@ -1114,6 +1186,12 @@ 919 ], "text": "Company Name: Jupiter Book Supply", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1199,6 +1277,12 @@ 952 ], "text": "Address: 383 N Kinnick Road", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1284,6 +1368,12 @@ 991 ], "text": "Seattle, WA 38383", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1341,6 +1431,12 @@ 990 ], "text": "Phone: 932-299-0292", + "appearance": { + "style": { + "name": "other", + "confidence": 0.997 + } + }, "words": [ { "boundingBox": [ @@ -1384,6 +1480,12 @@ 1077 ], "text": "Details", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1413,6 +1515,12 @@ 1083 ], "text": "Quantity", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1442,6 +1550,12 @@ 1077 ], "text": "Unit Price", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1485,6 +1599,12 @@ 1077 ], "text": "Total", + "appearance": { + "style": { + "name": "other", + "confidence": 0.997 + } + }, "words": [ { "boundingBox": [ @@ -1514,6 +1634,12 @@ 1121 ], "text": "Bindings", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1543,6 +1669,12 @@ 1119 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.959 + } + }, "words": [ { "boundingBox": [ @@ -1572,6 +1704,12 @@ 1118 ], "text": "1.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1601,6 +1739,12 @@ 1119 ], "text": "20.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1630,6 +1774,12 @@ 1161 ], "text": "Covers Small", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1673,6 +1823,12 @@ 1160 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.952 + } + }, "words": [ { "boundingBox": [ @@ -1702,6 +1858,12 @@ 1160 ], "text": "1.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1731,6 +1893,12 @@ 1160 ], "text": "20.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1760,6 +1928,12 @@ 1206 ], "text": "Feather Bookmark", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1803,6 +1977,12 @@ 1203 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.842 + } + }, "words": [ { "boundingBox": [ @@ -1832,6 +2012,12 @@ 1204 ], "text": "5.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -1861,6 +2047,12 @@ 1204 ], "text": "100.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1890,6 +2082,12 @@ 1253 ], "text": "Copper Swirl Marker", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1947,6 +2145,12 @@ 1247 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.985 + } + }, "words": [ { "boundingBox": [ @@ -1976,6 +2180,12 @@ 1247 ], "text": "5.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.996 + } + }, "words": [ { "boundingBox": [ @@ -2005,6 +2215,12 @@ 1247 ], "text": "100.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2034,6 +2250,12 @@ 1600 ], "text": "SUBTOTAL", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2063,6 +2285,12 @@ 1598 ], "text": "$140.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.997 + } + }, "words": [ { "boundingBox": [ @@ -2092,6 +2320,12 @@ 1643 ], "text": "TAX", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2121,6 +2355,12 @@ 1643 ], "text": "$4.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2150,6 +2390,12 @@ 1706 ], "text": "Bernie Sanders", + "appearance": { + "style": { + "name": "handwriting", + "confidence": 0.793 + } + }, "words": [ { "boundingBox": [ @@ -2193,6 +2439,12 @@ 1699 ], "text": "TOTAL", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2222,6 +2474,12 @@ 1697 ], "text": "$144.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.995 + } + }, "words": [ { "boundingBox": [ @@ -2251,6 +2509,12 @@ 1741 ], "text": "Bernie Sanders", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2294,6 +2558,12 @@ 1776 ], "text": "Manager", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -2323,6 +2593,12 @@ 1831 ], "text": "Additional Notes:", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2366,6 +2642,12 @@ 1908 ], "text": "Do not Jostle Box. Unpack carefully. Enjoy.", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2479,6 +2761,12 @@ 1958 ], "text": "Jupiter Book Supply will refund you 50% per book if returned within 60 days of reading and", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2732,6 +3020,12 @@ 1991 ], "text": "offer you 25% off you next total purchase.", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2847,22 +3141,6 @@ } ] } - ], - "selectionMarks": [ - { - "boundingBox": [ - 2, - 2060, - 195, - 2060, - 195, - 2200, - 2, - 2200 - ], - "confidence": 0.881, - "state": "unselected" - } ] } ], @@ -2871,155 +3149,23 @@ "page": 1, "tables": [ { - "rows": 4, - "columns": 3, - "cells": [ - { - "rowIndex": 1, - "columnIndex": 1, - "text": "SUBTOTAL", - "boundingBox": [ - 1072, - 1566, - 1309, - 1566, - 1309, - 1610, - 1072, - 1610 - ], - "elements": [ - "#/readResults/0/lines/41/words/0" - ] - }, - { - "rowIndex": 1, - "columnIndex": 2, - "text": "$140.00", - "boundingBox": [ - 1309, - 1566, - 1544, - 1566, - 1544, - 1610, - 1309, - 1610 - ], - "elements": [ - "#/readResults/0/lines/42/words/0" - ] - }, - { - "rowIndex": 2, - "columnIndex": 1, - "text": "TAX", - "boundingBox": [ - 1072, - 1610, - 1309, - 1610, - 1309, - 1658, - 1072, - 1658 - ], - "elements": [ - "#/readResults/0/lines/43/words/0" - ] - }, - { - "rowIndex": 2, - "columnIndex": 2, - "text": "$4.00", - "boundingBox": [ - 1309, - 1610, - 1544, - 1610, - 1544, - 1658, - 1309, - 1658 - ], - "elements": [ - "#/readResults/0/lines/44/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 0, - "text": "Bernie Sanders", - "boundingBox": [ - 489, - 1658, - 1072, - 1658, - 1072, - 1708, - 489, - 1708 - ], - "elements": [ - "#/readResults/0/lines/45/words/0", - "#/readResults/0/lines/45/words/1" - ] - }, - { - "rowIndex": 3, - "columnIndex": 1, - "text": "TOTAL", - "boundingBox": [ - 1072, - 1658, - 1309, - 1658, - 1309, - 1708, - 1072, - 1708 - ], - "elements": [ - "#/readResults/0/lines/46/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 2, - "text": "$144.00", - "boundingBox": [ - 1309, - 1658, - 1544, - 1658, - 1544, - 1708, - 1309, - 1708 - ], - "elements": [ - "#/readResults/0/lines/47/words/0" - ] - } - ] - }, - { - "rows": 6, - "columns": 4, + "rows": 5, + "columns": 5, "cells": [ { "rowIndex": 0, "columnIndex": 0, + "columnSpan": 2, "text": "Details", "boundingBox": [ - 156, + 157, 1038, 847, - 1038, + 1037, 847, - 1087, - 156, - 1087 + 1086, + 157, + 1086 ], "elements": [ "#/readResults/0/lines/21/words/0" @@ -3027,17 +3173,17 @@ }, { "rowIndex": 0, - "columnIndex": 1, + "columnIndex": 2, "text": "Quantity", "boundingBox": [ 847, - 1038, - 1072, - 1038, - 1072, - 1087, + 1037, + 1071, + 1037, + 1071, + 1086, 847, - 1087 + 1086 ], "elements": [ "#/readResults/0/lines/22/words/0" @@ -3045,17 +3191,17 @@ }, { "rowIndex": 0, - "columnIndex": 2, + "columnIndex": 3, "text": "Unit Price", "boundingBox": [ - 1072, + 1071, + 1037, + 1310, 1038, - 1309, - 1038, - 1309, - 1087, - 1072, - 1087 + 1310, + 1086, + 1071, + 1086 ], "elements": [ "#/readResults/0/lines/23/words/0", @@ -3064,17 +3210,17 @@ }, { "rowIndex": 0, - "columnIndex": 3, + "columnIndex": 4, "text": "Total", "boundingBox": [ - 1309, + 1310, 1038, - 1544, + 1543, 1038, - 1544, - 1087, - 1309, - 1087 + 1543, + 1086, + 1310, + 1086 ], "elements": [ "#/readResults/0/lines/24/words/0" @@ -3083,15 +3229,16 @@ { "rowIndex": 1, "columnIndex": 0, + "columnSpan": 2, "text": "Bindings", "boundingBox": [ - 156, - 1087, + 157, + 1086, 847, - 1087, + 1086, 847, - 1128, - 156, + 1127, + 157, 1128 ], "elements": [ @@ -3100,17 +3247,17 @@ }, { "rowIndex": 1, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1087, - 1072, - 1087, - 1072, - 1128, + 1086, + 1071, + 1086, + 1071, + 1127, 847, - 1128 + 1127 ], "elements": [ "#/readResults/0/lines/26/words/0" @@ -3118,17 +3265,17 @@ }, { "rowIndex": 1, - "columnIndex": 2, + "columnIndex": 3, "text": "1.00", "boundingBox": [ - 1072, - 1087, - 1309, - 1087, - 1309, - 1128, - 1072, - 1128 + 1071, + 1086, + 1310, + 1086, + 1310, + 1127, + 1071, + 1127 ], "elements": [ "#/readResults/0/lines/27/words/0" @@ -3136,17 +3283,17 @@ }, { "rowIndex": 1, - "columnIndex": 3, + "columnIndex": 4, "text": "20.00", "boundingBox": [ - 1309, - 1087, - 1544, - 1087, - 1544, - 1128, - 1309, - 1128 + 1310, + 1086, + 1543, + 1086, + 1543, + 1127, + 1310, + 1127 ], "elements": [ "#/readResults/0/lines/28/words/0" @@ -3155,16 +3302,17 @@ { "rowIndex": 2, "columnIndex": 0, + "columnSpan": 2, "text": "Covers Small", "boundingBox": [ - 156, + 157, 1128, 847, - 1128, + 1127, 847, - 1172, - 156, - 1172 + 1171, + 157, + 1171 ], "elements": [ "#/readResults/0/lines/29/words/0", @@ -3173,17 +3321,17 @@ }, { "rowIndex": 2, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1128, - 1072, - 1128, - 1072, - 1172, + 1127, + 1071, + 1127, + 1071, + 1171, 847, - 1172 + 1171 ], "elements": [ "#/readResults/0/lines/30/words/0" @@ -3191,17 +3339,17 @@ }, { "rowIndex": 2, - "columnIndex": 2, + "columnIndex": 3, "text": "1.00", "boundingBox": [ - 1072, - 1128, - 1309, - 1128, - 1309, - 1172, - 1072, - 1172 + 1071, + 1127, + 1310, + 1127, + 1310, + 1171, + 1071, + 1171 ], "elements": [ "#/readResults/0/lines/31/words/0" @@ -3209,17 +3357,17 @@ }, { "rowIndex": 2, - "columnIndex": 3, + "columnIndex": 4, "text": "20.00", "boundingBox": [ - 1309, - 1128, - 1544, - 1128, - 1544, - 1172, - 1309, - 1172 + 1310, + 1127, + 1543, + 1127, + 1543, + 1171, + 1310, + 1171 ], "elements": [ "#/readResults/0/lines/32/words/0" @@ -3228,16 +3376,17 @@ { "rowIndex": 3, "columnIndex": 0, + "columnSpan": 2, "text": "Feather Bookmark", "boundingBox": [ - 156, - 1172, + 157, + 1171, 847, - 1172, + 1171, 847, - 1216, - 156, - 1216 + 1214, + 157, + 1214 ], "elements": [ "#/readResults/0/lines/33/words/0", @@ -3246,17 +3395,17 @@ }, { "rowIndex": 3, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1172, - 1072, - 1172, - 1072, - 1216, + 1171, + 1071, + 1171, + 1071, + 1214, 847, - 1216 + 1214 ], "elements": [ "#/readResults/0/lines/34/words/0" @@ -3264,17 +3413,17 @@ }, { "rowIndex": 3, - "columnIndex": 2, + "columnIndex": 3, "text": "5.00", "boundingBox": [ - 1072, - 1172, - 1309, - 1172, - 1309, - 1216, - 1072, - 1216 + 1071, + 1171, + 1310, + 1171, + 1310, + 1214, + 1071, + 1214 ], "elements": [ "#/readResults/0/lines/35/words/0" @@ -3282,17 +3431,17 @@ }, { "rowIndex": 3, - "columnIndex": 3, + "columnIndex": 4, "text": "100.00", "boundingBox": [ - 1309, - 1172, - 1544, - 1172, - 1544, - 1216, - 1309, - 1216 + 1310, + 1171, + 1543, + 1171, + 1543, + 1215, + 1310, + 1214 ], "elements": [ "#/readResults/0/lines/36/words/0" @@ -3301,16 +3450,17 @@ { "rowIndex": 4, "columnIndex": 0, + "columnSpan": 2, "text": "Copper Swirl Marker", "boundingBox": [ - 156, - 1216, + 157, + 1214, 847, - 1216, + 1214, 847, - 1260, - 156, - 1260 + 1258, + 157, + 1258 ], "elements": [ "#/readResults/0/lines/37/words/0", @@ -3320,17 +3470,17 @@ }, { "rowIndex": 4, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1216, - 1072, - 1216, - 1072, - 1260, + 1214, + 1071, + 1214, + 1071, + 1258, 847, - 1260 + 1258 ], "elements": [ "#/readResults/0/lines/38/words/0" @@ -3338,17 +3488,17 @@ }, { "rowIndex": 4, - "columnIndex": 2, + "columnIndex": 3, "text": "5.00", "boundingBox": [ - 1072, - 1216, - 1309, - 1216, - 1309, - 1260, - 1072, - 1260 + 1071, + 1214, + 1310, + 1214, + 1310, + 1258, + 1071, + 1258 ], "elements": [ "#/readResults/0/lines/39/words/0" @@ -3356,22 +3506,188 @@ }, { "rowIndex": 4, - "columnIndex": 3, + "columnIndex": 4, "text": "100.00", "boundingBox": [ - 1309, - 1216, - 1544, - 1216, - 1544, + 1310, + 1214, + 1543, + 1215, + 1543, 1260, - 1309, - 1260 + 1310, + 1258 ], "elements": [ "#/readResults/0/lines/40/words/0" ] } + ], + "boundingBox": [ + 153, + 1036, + 1547, + 1037, + 1547, + 1265, + 153, + 1265 + ] + }, + { + "rows": 4, + "columns": 2, + "cells": [ + { + "rowIndex": 0, + "columnIndex": 0, + "text": "SUBTOTAL", + "boundingBox": [ + 1072, + 1564, + 1307, + 1565, + 1308, + 1609, + 1071, + 1608 + ], + "elements": [ + "#/readResults/0/lines/41/words/0" + ] + }, + { + "rowIndex": 0, + "columnIndex": 1, + "text": "$140.00", + "boundingBox": [ + 1307, + 1565, + 1542, + 1564, + 1543, + 1609, + 1308, + 1609 + ], + "elements": [ + "#/readResults/0/lines/42/words/0" + ] + }, + { + "rowIndex": 1, + "columnIndex": 0, + "text": "TAX", + "boundingBox": [ + 1071, + 1608, + 1308, + 1609, + 1308, + 1652, + 1071, + 1651 + ], + "elements": [ + "#/readResults/0/lines/43/words/0" + ] + }, + { + "rowIndex": 1, + "columnIndex": 1, + "text": "$4.00", + "boundingBox": [ + 1308, + 1609, + 1543, + 1609, + 1543, + 1652, + 1308, + 1652 + ], + "elements": [ + "#/readResults/0/lines/44/words/0" + ] + }, + { + "rowIndex": 2, + "columnIndex": 0, + "text": "", + "boundingBox": [ + 1071, + 1651, + 1308, + 1652, + 1308, + 1663, + 1071, + 1663 + ], + "elements": [] + }, + { + "rowIndex": 2, + "columnIndex": 1, + "text": "", + "boundingBox": [ + 1308, + 1652, + 1543, + 1652, + 1543, + 1663, + 1308, + 1663 + ], + "elements": [] + }, + { + "rowIndex": 3, + "columnIndex": 0, + "text": "TOTAL", + "boundingBox": [ + 1071, + 1663, + 1308, + 1663, + 1308, + 1707, + 1071, + 1707 + ], + "elements": [ + "#/readResults/0/lines/46/words/0" + ] + }, + { + "rowIndex": 3, + "columnIndex": 1, + "text": "$144.00", + "boundingBox": [ + 1308, + 1663, + 1543, + 1663, + 1543, + 1708, + 1308, + 1707 + ], + "elements": [ + "#/readResults/0/lines/47/words/0" + ] + } + ], + "boundingBox": [ + 1058, + 1563, + 1555, + 1563, + 1555, + 1707, + 1058, + 1707 ] } ] @@ -3383,7 +3699,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "629147399" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(True).json index b54eb32edf623..1f969f05107f2 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "479269", "Content-Type": "image/jpeg", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cbec0a2ab722ef48b2e47a63f7c64c09-bc4405499fa57d4f-00", + "traceparent": "00-b05e1836d4a2a84889793a6ade27a063-45b9a64ae6f9094d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7647e5c7a6fbe00ff56f3c683e7d2304", "x-ms-return-client-request-id": "true" @@ -19,25 +19,25 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "0eb8d34c-9409-4ab4-89fe-e2d85ac7429d", + "apim-request-id": "7f181cba-ca09-49f3-a908-07b028a665c6", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:29:51 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0eb8d34c-9409-4ab4-89fe-e2d85ac7429d", + "Date": "Fri, 30 Oct 2020 12:46:10 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/7f181cba-ca09-49f3-a908-07b028a665c6", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "169" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0eb8d34c-9409-4ab4-89fe-e2d85ac7429d", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/7f181cba-ca09-49f3-a908-07b028a665c6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e8428e1239dc0a5b2278972bff28ff01", "x-ms-return-client-request-id": "true" @@ -45,29 +45,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1cb1c6b-f298-418f-9449-28bac13da215", + "apim-request-id": "b5e28bba-28e9-4db7-96b8-10c26fe741ad", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:51 GMT", + "Date": "Fri, 30 Oct 2020 12:46:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:52Z", - "lastUpdatedDateTime": "2020-09-09T22:29:52Z" + "createdDateTime": "2020-10-30T12:46:10Z", + "lastUpdatedDateTime": "2020-10-30T12:46:10Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0eb8d34c-9409-4ab4-89fe-e2d85ac7429d", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/7f181cba-ca09-49f3-a908-07b028a665c6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a2a10a01fd1308f2fb1411f9a79bfd6a", "x-ms-return-client-request-id": "true" @@ -75,29 +75,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c5a6c300-b294-4300-8b2e-85c000a49745", + "apim-request-id": "b365345b-4b88-4169-954b-8bb930e9d934", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:52 GMT", + "Date": "Fri, 30 Oct 2020 12:46:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:52Z", - "lastUpdatedDateTime": "2020-09-09T22:29:52Z" + "createdDateTime": "2020-10-30T12:46:10Z", + "lastUpdatedDateTime": "2020-10-30T12:46:10Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0eb8d34c-9409-4ab4-89fe-e2d85ac7429d", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/7f181cba-ca09-49f3-a908-07b028a665c6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8088827426c78d898a3d53820ee3e0cd", "x-ms-return-client-request-id": "true" @@ -105,29 +105,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b93325fc-3fe6-4e62-879d-36400ee400b2", + "apim-request-id": "1f616e47-e82a-4523-8f73-e330508a5147", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:53 GMT", + "Date": "Fri, 30 Oct 2020 12:46:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:52Z", - "lastUpdatedDateTime": "2020-09-09T22:29:52Z" + "createdDateTime": "2020-10-30T12:46:10Z", + "lastUpdatedDateTime": "2020-10-30T12:46:10Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0eb8d34c-9409-4ab4-89fe-e2d85ac7429d", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/7f181cba-ca09-49f3-a908-07b028a665c6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "33673a6f81db15f09c3aecc828616387", "x-ms-return-client-request-id": "true" @@ -135,18 +135,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47f88d61-8bec-4d02-9305-2480ee8c7995", - "Content-Length": "21134", + "apim-request-id": "a9a553b0-27c1-4cb2-bf5c-97057eccdfe5", + "Content-Length": "24387", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:55 GMT", + "Date": "Fri, 30 Oct 2020 12:46:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:29:52Z", - "lastUpdatedDateTime": "2020-09-09T22:29:55Z", + "createdDateTime": "2020-10-30T12:46:10Z", + "lastUpdatedDateTime": "2020-10-30T12:46:13Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -169,6 +169,12 @@ 166 ], "text": "Purchase Order", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -212,6 +218,12 @@ 266 ], "text": "Hero Limited", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -255,6 +267,12 @@ 369 ], "text": "Purchase Order", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -298,6 +316,12 @@ 379 ], "text": "Company Phone: 555-348-6512", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -355,6 +379,12 @@ 418 ], "text": "Website: www.herolimited.com", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -398,6 +428,12 @@ 460 ], "text": "Email:", + "appearance": { + "style": { + "name": "other", + "confidence": 0.99 + } + }, "words": [ { "boundingBox": [ @@ -427,6 +463,12 @@ 448 ], "text": "Dated As: 12/20/2020", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -484,6 +526,12 @@ 503 ], "text": "accounts@herolimited.com", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -513,6 +561,12 @@ 488 ], "text": "Purchase Order #: 948284", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -584,6 +638,12 @@ 592 ], "text": "Shipped To", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -627,6 +687,12 @@ 638 ], "text": "Vendor Name: Hillary Swank", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -698,6 +764,12 @@ 679 ], "text": "Company Name: Higgly Wiggly Books", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -783,6 +855,12 @@ 711 ], "text": "Address: 938 NE Burner Road", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -868,6 +946,12 @@ 751 ], "text": "Boulder City, CO 92848", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -923,7 +1007,7 @@ 751 ], "text": "92848", - "confidence": 0.977 + "confidence": 0.976 } ] }, @@ -939,6 +1023,12 @@ 748 ], "text": "Phone: 938-294-2949", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -982,6 +1072,12 @@ 830 ], "text": "Shipped From", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1025,6 +1121,12 @@ 879 ], "text": "Name: Bernie Sanders", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1038,7 +1140,7 @@ 879 ], "text": "Name:", - "confidence": 0.986 + "confidence": 0.983 }, { "boundingBox": [ @@ -1082,6 +1184,12 @@ 919 ], "text": "Company Name: Jupiter Book Supply", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1167,6 +1275,12 @@ 952 ], "text": "Address: 383 N Kinnick Road", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1252,6 +1366,12 @@ 991 ], "text": "Seattle, WA 38383", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1309,6 +1429,12 @@ 990 ], "text": "Phone: 932-299-0292", + "appearance": { + "style": { + "name": "other", + "confidence": 0.997 + } + }, "words": [ { "boundingBox": [ @@ -1352,6 +1478,12 @@ 1077 ], "text": "Details", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1381,6 +1513,12 @@ 1083 ], "text": "Quantity", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1410,6 +1548,12 @@ 1077 ], "text": "Unit Price", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1453,6 +1597,12 @@ 1077 ], "text": "Total", + "appearance": { + "style": { + "name": "other", + "confidence": 0.997 + } + }, "words": [ { "boundingBox": [ @@ -1482,6 +1632,12 @@ 1121 ], "text": "Bindings", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1511,6 +1667,12 @@ 1119 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.959 + } + }, "words": [ { "boundingBox": [ @@ -1540,6 +1702,12 @@ 1118 ], "text": "1.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1569,6 +1737,12 @@ 1119 ], "text": "20.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1598,6 +1772,12 @@ 1161 ], "text": "Covers Small", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1641,6 +1821,12 @@ 1160 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.952 + } + }, "words": [ { "boundingBox": [ @@ -1670,6 +1856,12 @@ 1160 ], "text": "1.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1699,6 +1891,12 @@ 1160 ], "text": "20.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1728,6 +1926,12 @@ 1206 ], "text": "Feather Bookmark", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1771,6 +1975,12 @@ 1203 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.842 + } + }, "words": [ { "boundingBox": [ @@ -1800,6 +2010,12 @@ 1204 ], "text": "5.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -1829,6 +2045,12 @@ 1204 ], "text": "100.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1858,6 +2080,12 @@ 1253 ], "text": "Copper Swirl Marker", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1915,6 +2143,12 @@ 1247 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.985 + } + }, "words": [ { "boundingBox": [ @@ -1944,6 +2178,12 @@ 1247 ], "text": "5.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.996 + } + }, "words": [ { "boundingBox": [ @@ -1973,6 +2213,12 @@ 1247 ], "text": "100.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2002,6 +2248,12 @@ 1600 ], "text": "SUBTOTAL", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2031,6 +2283,12 @@ 1598 ], "text": "$140.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.997 + } + }, "words": [ { "boundingBox": [ @@ -2060,6 +2318,12 @@ 1643 ], "text": "TAX", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2089,6 +2353,12 @@ 1643 ], "text": "$4.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2118,6 +2388,12 @@ 1706 ], "text": "Bernie Sanders", + "appearance": { + "style": { + "name": "handwriting", + "confidence": 0.793 + } + }, "words": [ { "boundingBox": [ @@ -2161,6 +2437,12 @@ 1699 ], "text": "TOTAL", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2190,6 +2472,12 @@ 1697 ], "text": "$144.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.995 + } + }, "words": [ { "boundingBox": [ @@ -2219,6 +2507,12 @@ 1741 ], "text": "Bernie Sanders", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2262,6 +2556,12 @@ 1776 ], "text": "Manager", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -2291,6 +2591,12 @@ 1831 ], "text": "Additional Notes:", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2334,6 +2640,12 @@ 1908 ], "text": "Do not Jostle Box. Unpack carefully. Enjoy.", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2447,6 +2759,12 @@ 1958 ], "text": "Jupiter Book Supply will refund you 50% per book if returned within 60 days of reading and", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2700,6 +3018,12 @@ 1991 ], "text": "offer you 25% off you next total purchase.", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2815,22 +3139,6 @@ } ] } - ], - "selectionMarks": [ - { - "boundingBox": [ - 2, - 2060, - 195, - 2060, - 195, - 2200, - 2, - 2200 - ], - "confidence": 0.881, - "state": "unselected" - } ] } ], @@ -2839,155 +3147,23 @@ "page": 1, "tables": [ { - "rows": 4, - "columns": 3, - "cells": [ - { - "rowIndex": 1, - "columnIndex": 1, - "text": "SUBTOTAL", - "boundingBox": [ - 1072, - 1566, - 1309, - 1566, - 1309, - 1610, - 1072, - 1610 - ], - "elements": [ - "#/readResults/0/lines/41/words/0" - ] - }, - { - "rowIndex": 1, - "columnIndex": 2, - "text": "$140.00", - "boundingBox": [ - 1309, - 1566, - 1544, - 1566, - 1544, - 1610, - 1309, - 1610 - ], - "elements": [ - "#/readResults/0/lines/42/words/0" - ] - }, - { - "rowIndex": 2, - "columnIndex": 1, - "text": "TAX", - "boundingBox": [ - 1072, - 1610, - 1309, - 1610, - 1309, - 1658, - 1072, - 1658 - ], - "elements": [ - "#/readResults/0/lines/43/words/0" - ] - }, - { - "rowIndex": 2, - "columnIndex": 2, - "text": "$4.00", - "boundingBox": [ - 1309, - 1610, - 1544, - 1610, - 1544, - 1658, - 1309, - 1658 - ], - "elements": [ - "#/readResults/0/lines/44/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 0, - "text": "Bernie Sanders", - "boundingBox": [ - 489, - 1658, - 1072, - 1658, - 1072, - 1708, - 489, - 1708 - ], - "elements": [ - "#/readResults/0/lines/45/words/0", - "#/readResults/0/lines/45/words/1" - ] - }, - { - "rowIndex": 3, - "columnIndex": 1, - "text": "TOTAL", - "boundingBox": [ - 1072, - 1658, - 1309, - 1658, - 1309, - 1708, - 1072, - 1708 - ], - "elements": [ - "#/readResults/0/lines/46/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 2, - "text": "$144.00", - "boundingBox": [ - 1309, - 1658, - 1544, - 1658, - 1544, - 1708, - 1309, - 1708 - ], - "elements": [ - "#/readResults/0/lines/47/words/0" - ] - } - ] - }, - { - "rows": 6, - "columns": 4, + "rows": 5, + "columns": 5, "cells": [ { "rowIndex": 0, "columnIndex": 0, + "columnSpan": 2, "text": "Details", "boundingBox": [ - 156, + 157, 1038, 847, - 1038, + 1037, 847, - 1087, - 156, - 1087 + 1086, + 157, + 1086 ], "elements": [ "#/readResults/0/lines/21/words/0" @@ -2995,17 +3171,17 @@ }, { "rowIndex": 0, - "columnIndex": 1, + "columnIndex": 2, "text": "Quantity", "boundingBox": [ 847, - 1038, - 1072, - 1038, - 1072, - 1087, + 1037, + 1071, + 1037, + 1071, + 1086, 847, - 1087 + 1086 ], "elements": [ "#/readResults/0/lines/22/words/0" @@ -3013,17 +3189,17 @@ }, { "rowIndex": 0, - "columnIndex": 2, + "columnIndex": 3, "text": "Unit Price", "boundingBox": [ - 1072, - 1038, - 1309, + 1071, + 1037, + 1310, 1038, - 1309, - 1087, - 1072, - 1087 + 1310, + 1086, + 1071, + 1086 ], "elements": [ "#/readResults/0/lines/23/words/0", @@ -3032,17 +3208,17 @@ }, { "rowIndex": 0, - "columnIndex": 3, + "columnIndex": 4, "text": "Total", "boundingBox": [ - 1309, + 1310, 1038, - 1544, + 1543, 1038, - 1544, - 1087, - 1309, - 1087 + 1543, + 1086, + 1310, + 1086 ], "elements": [ "#/readResults/0/lines/24/words/0" @@ -3051,15 +3227,16 @@ { "rowIndex": 1, "columnIndex": 0, + "columnSpan": 2, "text": "Bindings", "boundingBox": [ - 156, - 1087, + 157, + 1086, 847, - 1087, + 1086, 847, - 1128, - 156, + 1127, + 157, 1128 ], "elements": [ @@ -3068,17 +3245,17 @@ }, { "rowIndex": 1, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1087, - 1072, - 1087, - 1072, - 1128, + 1086, + 1071, + 1086, + 1071, + 1127, 847, - 1128 + 1127 ], "elements": [ "#/readResults/0/lines/26/words/0" @@ -3086,17 +3263,17 @@ }, { "rowIndex": 1, - "columnIndex": 2, + "columnIndex": 3, "text": "1.00", "boundingBox": [ - 1072, - 1087, - 1309, - 1087, - 1309, - 1128, - 1072, - 1128 + 1071, + 1086, + 1310, + 1086, + 1310, + 1127, + 1071, + 1127 ], "elements": [ "#/readResults/0/lines/27/words/0" @@ -3104,17 +3281,17 @@ }, { "rowIndex": 1, - "columnIndex": 3, + "columnIndex": 4, "text": "20.00", "boundingBox": [ - 1309, - 1087, - 1544, - 1087, - 1544, - 1128, - 1309, - 1128 + 1310, + 1086, + 1543, + 1086, + 1543, + 1127, + 1310, + 1127 ], "elements": [ "#/readResults/0/lines/28/words/0" @@ -3123,16 +3300,17 @@ { "rowIndex": 2, "columnIndex": 0, + "columnSpan": 2, "text": "Covers Small", "boundingBox": [ - 156, + 157, 1128, 847, - 1128, + 1127, 847, - 1172, - 156, - 1172 + 1171, + 157, + 1171 ], "elements": [ "#/readResults/0/lines/29/words/0", @@ -3141,17 +3319,17 @@ }, { "rowIndex": 2, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1128, - 1072, - 1128, - 1072, - 1172, + 1127, + 1071, + 1127, + 1071, + 1171, 847, - 1172 + 1171 ], "elements": [ "#/readResults/0/lines/30/words/0" @@ -3159,17 +3337,17 @@ }, { "rowIndex": 2, - "columnIndex": 2, + "columnIndex": 3, "text": "1.00", "boundingBox": [ - 1072, - 1128, - 1309, - 1128, - 1309, - 1172, - 1072, - 1172 + 1071, + 1127, + 1310, + 1127, + 1310, + 1171, + 1071, + 1171 ], "elements": [ "#/readResults/0/lines/31/words/0" @@ -3177,17 +3355,17 @@ }, { "rowIndex": 2, - "columnIndex": 3, + "columnIndex": 4, "text": "20.00", "boundingBox": [ - 1309, - 1128, - 1544, - 1128, - 1544, - 1172, - 1309, - 1172 + 1310, + 1127, + 1543, + 1127, + 1543, + 1171, + 1310, + 1171 ], "elements": [ "#/readResults/0/lines/32/words/0" @@ -3196,16 +3374,17 @@ { "rowIndex": 3, "columnIndex": 0, + "columnSpan": 2, "text": "Feather Bookmark", "boundingBox": [ - 156, - 1172, + 157, + 1171, 847, - 1172, + 1171, 847, - 1216, - 156, - 1216 + 1214, + 157, + 1214 ], "elements": [ "#/readResults/0/lines/33/words/0", @@ -3214,17 +3393,17 @@ }, { "rowIndex": 3, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1172, - 1072, - 1172, - 1072, - 1216, + 1171, + 1071, + 1171, + 1071, + 1214, 847, - 1216 + 1214 ], "elements": [ "#/readResults/0/lines/34/words/0" @@ -3232,17 +3411,17 @@ }, { "rowIndex": 3, - "columnIndex": 2, + "columnIndex": 3, "text": "5.00", "boundingBox": [ - 1072, - 1172, - 1309, - 1172, - 1309, - 1216, - 1072, - 1216 + 1071, + 1171, + 1310, + 1171, + 1310, + 1214, + 1071, + 1214 ], "elements": [ "#/readResults/0/lines/35/words/0" @@ -3250,17 +3429,17 @@ }, { "rowIndex": 3, - "columnIndex": 3, + "columnIndex": 4, "text": "100.00", "boundingBox": [ - 1309, - 1172, - 1544, - 1172, - 1544, - 1216, - 1309, - 1216 + 1310, + 1171, + 1543, + 1171, + 1543, + 1215, + 1310, + 1214 ], "elements": [ "#/readResults/0/lines/36/words/0" @@ -3269,16 +3448,17 @@ { "rowIndex": 4, "columnIndex": 0, + "columnSpan": 2, "text": "Copper Swirl Marker", "boundingBox": [ - 156, - 1216, + 157, + 1214, 847, - 1216, + 1214, 847, - 1260, - 156, - 1260 + 1258, + 157, + 1258 ], "elements": [ "#/readResults/0/lines/37/words/0", @@ -3288,17 +3468,17 @@ }, { "rowIndex": 4, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1216, - 1072, - 1216, - 1072, - 1260, + 1214, + 1071, + 1214, + 1071, + 1258, 847, - 1260 + 1258 ], "elements": [ "#/readResults/0/lines/38/words/0" @@ -3306,17 +3486,17 @@ }, { "rowIndex": 4, - "columnIndex": 2, + "columnIndex": 3, "text": "5.00", "boundingBox": [ - 1072, - 1216, - 1309, - 1216, - 1309, - 1260, - 1072, - 1260 + 1071, + 1214, + 1310, + 1214, + 1310, + 1258, + 1071, + 1258 ], "elements": [ "#/readResults/0/lines/39/words/0" @@ -3324,22 +3504,188 @@ }, { "rowIndex": 4, - "columnIndex": 3, + "columnIndex": 4, "text": "100.00", "boundingBox": [ - 1309, - 1216, - 1544, - 1216, - 1544, + 1310, + 1214, + 1543, + 1215, + 1543, 1260, - 1309, - 1260 + 1310, + 1258 ], "elements": [ "#/readResults/0/lines/40/words/0" ] } + ], + "boundingBox": [ + 153, + 1036, + 1547, + 1037, + 1547, + 1265, + 153, + 1265 + ] + }, + { + "rows": 4, + "columns": 2, + "cells": [ + { + "rowIndex": 0, + "columnIndex": 0, + "text": "SUBTOTAL", + "boundingBox": [ + 1072, + 1564, + 1307, + 1565, + 1308, + 1609, + 1071, + 1608 + ], + "elements": [ + "#/readResults/0/lines/41/words/0" + ] + }, + { + "rowIndex": 0, + "columnIndex": 1, + "text": "$140.00", + "boundingBox": [ + 1307, + 1565, + 1542, + 1564, + 1543, + 1609, + 1308, + 1609 + ], + "elements": [ + "#/readResults/0/lines/42/words/0" + ] + }, + { + "rowIndex": 1, + "columnIndex": 0, + "text": "TAX", + "boundingBox": [ + 1071, + 1608, + 1308, + 1609, + 1308, + 1652, + 1071, + 1651 + ], + "elements": [ + "#/readResults/0/lines/43/words/0" + ] + }, + { + "rowIndex": 1, + "columnIndex": 1, + "text": "$4.00", + "boundingBox": [ + 1308, + 1609, + 1543, + 1609, + 1543, + 1652, + 1308, + 1652 + ], + "elements": [ + "#/readResults/0/lines/44/words/0" + ] + }, + { + "rowIndex": 2, + "columnIndex": 0, + "text": "", + "boundingBox": [ + 1071, + 1651, + 1308, + 1652, + 1308, + 1663, + 1071, + 1663 + ], + "elements": [] + }, + { + "rowIndex": 2, + "columnIndex": 1, + "text": "", + "boundingBox": [ + 1308, + 1652, + 1543, + 1652, + 1543, + 1663, + 1308, + 1663 + ], + "elements": [] + }, + { + "rowIndex": 3, + "columnIndex": 0, + "text": "TOTAL", + "boundingBox": [ + 1071, + 1663, + 1308, + 1663, + 1308, + 1707, + 1071, + 1707 + ], + "elements": [ + "#/readResults/0/lines/46/words/0" + ] + }, + { + "rowIndex": 3, + "columnIndex": 1, + "text": "$144.00", + "boundingBox": [ + 1308, + 1663, + 1543, + 1663, + 1543, + 1708, + 1308, + 1707 + ], + "elements": [ + "#/readResults/0/lines/47/words/0" + ] + } + ], + "boundingBox": [ + 1058, + 1563, + 1555, + 1563, + 1555, + 1707, + 1058, + 1707 ] } ] @@ -3351,7 +3697,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1218876654" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(True)Async.json index bdcaa58da9554..30a1972c0976e 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPageJpg(True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "479269", "Content-Type": "image/jpeg", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1b779299755255438d26101996b45e49-083ec1d93bd1014c-00", + "traceparent": "00-7bf34f83e4cf3b449b493956013cd5af-0410c081bc1f6440-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e59a22f4eabcf314d1ef0fe0bb600981", "x-ms-return-client-request-id": "true" @@ -19,25 +19,25 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "de1ebb5a-11cb-4629-82f3-491d00a2f66b", + "apim-request-id": "0ae8ac16-cb77-4e04-bffd-6f7014e9b030", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:34:57 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/de1ebb5a-11cb-4629-82f3-491d00a2f66b", + "Date": "Fri, 30 Oct 2020 12:46:32 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/0ae8ac16-cb77-4e04-bffd-6f7014e9b030", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "155" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/de1ebb5a-11cb-4629-82f3-491d00a2f66b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/0ae8ac16-cb77-4e04-bffd-6f7014e9b030", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "24bdc359347d64841a818f281dc61a60", "x-ms-return-client-request-id": "true" @@ -45,29 +45,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11bb0a16-2fca-4323-b5da-1e4622629e7f", + "apim-request-id": "e20d5935-1f00-4738-9e65-c88188053c3e", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:57 GMT", + "Date": "Fri, 30 Oct 2020 12:46:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:58Z", - "lastUpdatedDateTime": "2020-09-09T22:34:58Z" + "createdDateTime": "2020-10-30T12:46:32Z", + "lastUpdatedDateTime": "2020-10-30T12:46:32Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/de1ebb5a-11cb-4629-82f3-491d00a2f66b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/0ae8ac16-cb77-4e04-bffd-6f7014e9b030", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2728eb5cbad352816f14cc0d1eef5731", "x-ms-return-client-request-id": "true" @@ -75,29 +75,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b93148ff-53ea-4a4f-a99a-ab756f06d57d", + "apim-request-id": "8b407d3a-9f60-498b-96af-5e306e6129ec", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:58 GMT", + "Date": "Fri, 30 Oct 2020 12:46:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:58Z", - "lastUpdatedDateTime": "2020-09-09T22:34:58Z" + "createdDateTime": "2020-10-30T12:46:32Z", + "lastUpdatedDateTime": "2020-10-30T12:46:32Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/de1ebb5a-11cb-4629-82f3-491d00a2f66b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/0ae8ac16-cb77-4e04-bffd-6f7014e9b030", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d3ba96c54d1ebf249d35ca3b5aecd60a", "x-ms-return-client-request-id": "true" @@ -105,29 +105,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d130e663-27ac-4b19-87db-ed9cd8e371d9", + "apim-request-id": "b38c2f37-b81f-44f8-871f-cfd679c32f53", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:00 GMT", + "Date": "Fri, 30 Oct 2020 12:46:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:58Z", - "lastUpdatedDateTime": "2020-09-09T22:34:58Z" + "createdDateTime": "2020-10-30T12:46:32Z", + "lastUpdatedDateTime": "2020-10-30T12:46:32Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/de1ebb5a-11cb-4629-82f3-491d00a2f66b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/0ae8ac16-cb77-4e04-bffd-6f7014e9b030", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cf83afd5e2389fae426ab4686877452b", "x-ms-return-client-request-id": "true" @@ -135,18 +135,48 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "55fd5578-d997-4532-a66c-a892f97ad1e3", - "Content-Length": "21134", + "apim-request-id": "b4247840-0813-4ff1-a4c0-f5dda03ffcab", + "Content-Length": "106", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 12:46:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-10-30T12:46:32Z", + "lastUpdatedDateTime": "2020-10-30T12:46:32Z" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/0ae8ac16-cb77-4e04-bffd-6f7014e9b030", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "86625e29470c0e41c768899df046f783", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9505716d-c072-4fdc-89f7-355268ea36ce", + "Content-Length": "24387", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:01 GMT", + "Date": "Fri, 30 Oct 2020 12:46:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:34:58Z", - "lastUpdatedDateTime": "2020-09-09T22:35:00Z", + "createdDateTime": "2020-10-30T12:46:32Z", + "lastUpdatedDateTime": "2020-10-30T12:46:36Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -169,6 +199,12 @@ 166 ], "text": "Purchase Order", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -212,6 +248,12 @@ 266 ], "text": "Hero Limited", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -255,6 +297,12 @@ 369 ], "text": "Purchase Order", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -298,6 +346,12 @@ 379 ], "text": "Company Phone: 555-348-6512", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -355,6 +409,12 @@ 418 ], "text": "Website: www.herolimited.com", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -398,6 +458,12 @@ 460 ], "text": "Email:", + "appearance": { + "style": { + "name": "other", + "confidence": 0.99 + } + }, "words": [ { "boundingBox": [ @@ -427,6 +493,12 @@ 448 ], "text": "Dated As: 12/20/2020", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -484,6 +556,12 @@ 503 ], "text": "accounts@herolimited.com", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -513,6 +591,12 @@ 488 ], "text": "Purchase Order #: 948284", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -584,6 +668,12 @@ 592 ], "text": "Shipped To", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -627,6 +717,12 @@ 638 ], "text": "Vendor Name: Hillary Swank", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -640,7 +736,7 @@ 637 ], "text": "Vendor", - "confidence": 0.983 + "confidence": 0.982 }, { "boundingBox": [ @@ -698,6 +794,12 @@ 679 ], "text": "Company Name: Higgly Wiggly Books", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -783,6 +885,12 @@ 711 ], "text": "Address: 938 NE Burner Road", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -868,6 +976,12 @@ 751 ], "text": "Boulder City, CO 92848", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -923,7 +1037,7 @@ 751 ], "text": "92848", - "confidence": 0.977 + "confidence": 0.976 } ] }, @@ -939,6 +1053,12 @@ 748 ], "text": "Phone: 938-294-2949", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -982,6 +1102,12 @@ 830 ], "text": "Shipped From", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1025,6 +1151,12 @@ 879 ], "text": "Name: Bernie Sanders", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1082,6 +1214,12 @@ 919 ], "text": "Company Name: Jupiter Book Supply", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1167,6 +1305,12 @@ 952 ], "text": "Address: 383 N Kinnick Road", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1252,6 +1396,12 @@ 991 ], "text": "Seattle, WA 38383", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1309,6 +1459,12 @@ 990 ], "text": "Phone: 932-299-0292", + "appearance": { + "style": { + "name": "other", + "confidence": 0.997 + } + }, "words": [ { "boundingBox": [ @@ -1352,6 +1508,12 @@ 1077 ], "text": "Details", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1381,6 +1543,12 @@ 1083 ], "text": "Quantity", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1410,6 +1578,12 @@ 1077 ], "text": "Unit Price", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1453,6 +1627,12 @@ 1077 ], "text": "Total", + "appearance": { + "style": { + "name": "other", + "confidence": 0.997 + } + }, "words": [ { "boundingBox": [ @@ -1482,6 +1662,12 @@ 1121 ], "text": "Bindings", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1511,6 +1697,12 @@ 1119 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.959 + } + }, "words": [ { "boundingBox": [ @@ -1540,6 +1732,12 @@ 1118 ], "text": "1.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1569,6 +1767,12 @@ 1119 ], "text": "20.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1598,6 +1802,12 @@ 1161 ], "text": "Covers Small", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1641,6 +1851,12 @@ 1160 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.952 + } + }, "words": [ { "boundingBox": [ @@ -1670,6 +1886,12 @@ 1160 ], "text": "1.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1699,6 +1921,12 @@ 1160 ], "text": "20.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -1728,6 +1956,12 @@ 1206 ], "text": "Feather Bookmark", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1771,6 +2005,12 @@ 1203 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.842 + } + }, "words": [ { "boundingBox": [ @@ -1800,6 +2040,12 @@ 1204 ], "text": "5.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -1829,6 +2075,12 @@ 1204 ], "text": "100.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1858,6 +2110,12 @@ 1253 ], "text": "Copper Swirl Marker", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -1915,6 +2173,12 @@ 1247 ], "text": "20", + "appearance": { + "style": { + "name": "other", + "confidence": 0.985 + } + }, "words": [ { "boundingBox": [ @@ -1944,6 +2208,12 @@ 1247 ], "text": "5.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.996 + } + }, "words": [ { "boundingBox": [ @@ -1973,6 +2243,12 @@ 1247 ], "text": "100.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2002,6 +2278,12 @@ 1600 ], "text": "SUBTOTAL", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2031,6 +2313,12 @@ 1598 ], "text": "$140.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.997 + } + }, "words": [ { "boundingBox": [ @@ -2060,6 +2348,12 @@ 1643 ], "text": "TAX", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2089,6 +2383,12 @@ 1643 ], "text": "$4.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2118,6 +2418,12 @@ 1706 ], "text": "Bernie Sanders", + "appearance": { + "style": { + "name": "handwriting", + "confidence": 0.793 + } + }, "words": [ { "boundingBox": [ @@ -2161,6 +2467,12 @@ 1699 ], "text": "TOTAL", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2190,6 +2502,12 @@ 1697 ], "text": "$144.00", + "appearance": { + "style": { + "name": "other", + "confidence": 0.995 + } + }, "words": [ { "boundingBox": [ @@ -2219,6 +2537,12 @@ 1741 ], "text": "Bernie Sanders", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2262,6 +2586,12 @@ 1776 ], "text": "Manager", + "appearance": { + "style": { + "name": "other", + "confidence": 0.999 + } + }, "words": [ { "boundingBox": [ @@ -2291,6 +2621,12 @@ 1831 ], "text": "Additional Notes:", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2334,6 +2670,12 @@ 1908 ], "text": "Do not Jostle Box. Unpack carefully. Enjoy.", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2447,6 +2789,12 @@ 1958 ], "text": "Jupiter Book Supply will refund you 50% per book if returned within 60 days of reading and", + "appearance": { + "style": { + "name": "other", + "confidence": 0.998 + } + }, "words": [ { "boundingBox": [ @@ -2700,6 +3048,12 @@ 1991 ], "text": "offer you 25% off you next total purchase.", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ @@ -2815,22 +3169,6 @@ } ] } - ], - "selectionMarks": [ - { - "boundingBox": [ - 2, - 2060, - 195, - 2060, - 195, - 2200, - 2, - 2200 - ], - "confidence": 0.881, - "state": "unselected" - } ] } ], @@ -2839,155 +3177,23 @@ "page": 1, "tables": [ { - "rows": 4, - "columns": 3, - "cells": [ - { - "rowIndex": 1, - "columnIndex": 1, - "text": "SUBTOTAL", - "boundingBox": [ - 1072, - 1566, - 1309, - 1566, - 1309, - 1610, - 1072, - 1610 - ], - "elements": [ - "#/readResults/0/lines/41/words/0" - ] - }, - { - "rowIndex": 1, - "columnIndex": 2, - "text": "$140.00", - "boundingBox": [ - 1309, - 1566, - 1544, - 1566, - 1544, - 1610, - 1309, - 1610 - ], - "elements": [ - "#/readResults/0/lines/42/words/0" - ] - }, - { - "rowIndex": 2, - "columnIndex": 1, - "text": "TAX", - "boundingBox": [ - 1072, - 1610, - 1309, - 1610, - 1309, - 1658, - 1072, - 1658 - ], - "elements": [ - "#/readResults/0/lines/43/words/0" - ] - }, - { - "rowIndex": 2, - "columnIndex": 2, - "text": "$4.00", - "boundingBox": [ - 1309, - 1610, - 1544, - 1610, - 1544, - 1658, - 1309, - 1658 - ], - "elements": [ - "#/readResults/0/lines/44/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 0, - "text": "Bernie Sanders", - "boundingBox": [ - 489, - 1658, - 1072, - 1658, - 1072, - 1708, - 489, - 1708 - ], - "elements": [ - "#/readResults/0/lines/45/words/0", - "#/readResults/0/lines/45/words/1" - ] - }, - { - "rowIndex": 3, - "columnIndex": 1, - "text": "TOTAL", - "boundingBox": [ - 1072, - 1658, - 1309, - 1658, - 1309, - 1708, - 1072, - 1708 - ], - "elements": [ - "#/readResults/0/lines/46/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 2, - "text": "$144.00", - "boundingBox": [ - 1309, - 1658, - 1544, - 1658, - 1544, - 1708, - 1309, - 1708 - ], - "elements": [ - "#/readResults/0/lines/47/words/0" - ] - } - ] - }, - { - "rows": 6, - "columns": 4, + "rows": 5, + "columns": 5, "cells": [ { "rowIndex": 0, "columnIndex": 0, + "columnSpan": 2, "text": "Details", "boundingBox": [ - 156, + 157, 1038, 847, - 1038, + 1037, 847, - 1087, - 156, - 1087 + 1086, + 157, + 1086 ], "elements": [ "#/readResults/0/lines/21/words/0" @@ -2995,17 +3201,17 @@ }, { "rowIndex": 0, - "columnIndex": 1, + "columnIndex": 2, "text": "Quantity", "boundingBox": [ 847, - 1038, - 1072, - 1038, - 1072, - 1087, + 1037, + 1071, + 1037, + 1071, + 1086, 847, - 1087 + 1086 ], "elements": [ "#/readResults/0/lines/22/words/0" @@ -3013,17 +3219,17 @@ }, { "rowIndex": 0, - "columnIndex": 2, + "columnIndex": 3, "text": "Unit Price", "boundingBox": [ - 1072, + 1071, + 1037, + 1310, 1038, - 1309, - 1038, - 1309, - 1087, - 1072, - 1087 + 1310, + 1086, + 1071, + 1086 ], "elements": [ "#/readResults/0/lines/23/words/0", @@ -3032,17 +3238,17 @@ }, { "rowIndex": 0, - "columnIndex": 3, + "columnIndex": 4, "text": "Total", "boundingBox": [ - 1309, + 1310, 1038, - 1544, + 1543, 1038, - 1544, - 1087, - 1309, - 1087 + 1543, + 1086, + 1310, + 1086 ], "elements": [ "#/readResults/0/lines/24/words/0" @@ -3051,15 +3257,16 @@ { "rowIndex": 1, "columnIndex": 0, + "columnSpan": 2, "text": "Bindings", "boundingBox": [ - 156, - 1087, + 157, + 1086, 847, - 1087, + 1086, 847, - 1128, - 156, + 1127, + 157, 1128 ], "elements": [ @@ -3068,17 +3275,17 @@ }, { "rowIndex": 1, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1087, - 1072, - 1087, - 1072, - 1128, + 1086, + 1071, + 1086, + 1071, + 1127, 847, - 1128 + 1127 ], "elements": [ "#/readResults/0/lines/26/words/0" @@ -3086,17 +3293,17 @@ }, { "rowIndex": 1, - "columnIndex": 2, + "columnIndex": 3, "text": "1.00", "boundingBox": [ - 1072, - 1087, - 1309, - 1087, - 1309, - 1128, - 1072, - 1128 + 1071, + 1086, + 1310, + 1086, + 1310, + 1127, + 1071, + 1127 ], "elements": [ "#/readResults/0/lines/27/words/0" @@ -3104,17 +3311,17 @@ }, { "rowIndex": 1, - "columnIndex": 3, + "columnIndex": 4, "text": "20.00", "boundingBox": [ - 1309, - 1087, - 1544, - 1087, - 1544, - 1128, - 1309, - 1128 + 1310, + 1086, + 1543, + 1086, + 1543, + 1127, + 1310, + 1127 ], "elements": [ "#/readResults/0/lines/28/words/0" @@ -3123,16 +3330,17 @@ { "rowIndex": 2, "columnIndex": 0, + "columnSpan": 2, "text": "Covers Small", "boundingBox": [ - 156, + 157, 1128, 847, - 1128, + 1127, 847, - 1172, - 156, - 1172 + 1171, + 157, + 1171 ], "elements": [ "#/readResults/0/lines/29/words/0", @@ -3141,17 +3349,17 @@ }, { "rowIndex": 2, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1128, - 1072, - 1128, - 1072, - 1172, + 1127, + 1071, + 1127, + 1071, + 1171, 847, - 1172 + 1171 ], "elements": [ "#/readResults/0/lines/30/words/0" @@ -3159,17 +3367,17 @@ }, { "rowIndex": 2, - "columnIndex": 2, + "columnIndex": 3, "text": "1.00", "boundingBox": [ - 1072, - 1128, - 1309, - 1128, - 1309, - 1172, - 1072, - 1172 + 1071, + 1127, + 1310, + 1127, + 1310, + 1171, + 1071, + 1171 ], "elements": [ "#/readResults/0/lines/31/words/0" @@ -3177,17 +3385,17 @@ }, { "rowIndex": 2, - "columnIndex": 3, + "columnIndex": 4, "text": "20.00", "boundingBox": [ - 1309, - 1128, - 1544, - 1128, - 1544, - 1172, - 1309, - 1172 + 1310, + 1127, + 1543, + 1127, + 1543, + 1171, + 1310, + 1171 ], "elements": [ "#/readResults/0/lines/32/words/0" @@ -3196,16 +3404,17 @@ { "rowIndex": 3, "columnIndex": 0, + "columnSpan": 2, "text": "Feather Bookmark", "boundingBox": [ - 156, - 1172, + 157, + 1171, 847, - 1172, + 1171, 847, - 1216, - 156, - 1216 + 1214, + 157, + 1214 ], "elements": [ "#/readResults/0/lines/33/words/0", @@ -3214,17 +3423,17 @@ }, { "rowIndex": 3, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1172, - 1072, - 1172, - 1072, - 1216, + 1171, + 1071, + 1171, + 1071, + 1214, 847, - 1216 + 1214 ], "elements": [ "#/readResults/0/lines/34/words/0" @@ -3232,17 +3441,17 @@ }, { "rowIndex": 3, - "columnIndex": 2, + "columnIndex": 3, "text": "5.00", "boundingBox": [ - 1072, - 1172, - 1309, - 1172, - 1309, - 1216, - 1072, - 1216 + 1071, + 1171, + 1310, + 1171, + 1310, + 1214, + 1071, + 1214 ], "elements": [ "#/readResults/0/lines/35/words/0" @@ -3250,17 +3459,17 @@ }, { "rowIndex": 3, - "columnIndex": 3, + "columnIndex": 4, "text": "100.00", "boundingBox": [ - 1309, - 1172, - 1544, - 1172, - 1544, - 1216, - 1309, - 1216 + 1310, + 1171, + 1543, + 1171, + 1543, + 1215, + 1310, + 1214 ], "elements": [ "#/readResults/0/lines/36/words/0" @@ -3269,16 +3478,17 @@ { "rowIndex": 4, "columnIndex": 0, + "columnSpan": 2, "text": "Copper Swirl Marker", "boundingBox": [ - 156, - 1216, + 157, + 1214, 847, - 1216, + 1214, 847, - 1260, - 156, - 1260 + 1258, + 157, + 1258 ], "elements": [ "#/readResults/0/lines/37/words/0", @@ -3288,17 +3498,17 @@ }, { "rowIndex": 4, - "columnIndex": 1, + "columnIndex": 2, "text": "20", "boundingBox": [ 847, - 1216, - 1072, - 1216, - 1072, - 1260, + 1214, + 1071, + 1214, + 1071, + 1258, 847, - 1260 + 1258 ], "elements": [ "#/readResults/0/lines/38/words/0" @@ -3306,17 +3516,17 @@ }, { "rowIndex": 4, - "columnIndex": 2, + "columnIndex": 3, "text": "5.00", "boundingBox": [ - 1072, - 1216, - 1309, - 1216, - 1309, - 1260, - 1072, - 1260 + 1071, + 1214, + 1310, + 1214, + 1310, + 1258, + 1071, + 1258 ], "elements": [ "#/readResults/0/lines/39/words/0" @@ -3324,22 +3534,188 @@ }, { "rowIndex": 4, - "columnIndex": 3, + "columnIndex": 4, "text": "100.00", "boundingBox": [ - 1309, - 1216, - 1544, - 1216, - 1544, + 1310, + 1214, + 1543, + 1215, + 1543, 1260, - 1309, - 1260 + 1310, + 1258 ], "elements": [ "#/readResults/0/lines/40/words/0" ] } + ], + "boundingBox": [ + 153, + 1036, + 1547, + 1037, + 1547, + 1265, + 153, + 1265 + ] + }, + { + "rows": 4, + "columns": 2, + "cells": [ + { + "rowIndex": 0, + "columnIndex": 0, + "text": "SUBTOTAL", + "boundingBox": [ + 1072, + 1564, + 1307, + 1565, + 1308, + 1609, + 1071, + 1608 + ], + "elements": [ + "#/readResults/0/lines/41/words/0" + ] + }, + { + "rowIndex": 0, + "columnIndex": 1, + "text": "$140.00", + "boundingBox": [ + 1307, + 1565, + 1542, + 1564, + 1543, + 1609, + 1308, + 1609 + ], + "elements": [ + "#/readResults/0/lines/42/words/0" + ] + }, + { + "rowIndex": 1, + "columnIndex": 0, + "text": "TAX", + "boundingBox": [ + 1071, + 1608, + 1308, + 1609, + 1308, + 1652, + 1071, + 1651 + ], + "elements": [ + "#/readResults/0/lines/43/words/0" + ] + }, + { + "rowIndex": 1, + "columnIndex": 1, + "text": "$4.00", + "boundingBox": [ + 1308, + 1609, + 1543, + 1609, + 1543, + 1652, + 1308, + 1652 + ], + "elements": [ + "#/readResults/0/lines/44/words/0" + ] + }, + { + "rowIndex": 2, + "columnIndex": 0, + "text": "", + "boundingBox": [ + 1071, + 1651, + 1308, + 1652, + 1308, + 1663, + 1071, + 1663 + ], + "elements": [] + }, + { + "rowIndex": 2, + "columnIndex": 1, + "text": "", + "boundingBox": [ + 1308, + 1652, + 1543, + 1652, + 1543, + 1663, + 1308, + 1663 + ], + "elements": [] + }, + { + "rowIndex": 3, + "columnIndex": 0, + "text": "TOTAL", + "boundingBox": [ + 1071, + 1663, + 1308, + 1663, + 1308, + 1707, + 1071, + 1707 + ], + "elements": [ + "#/readResults/0/lines/46/words/0" + ] + }, + { + "rowIndex": 3, + "columnIndex": 1, + "text": "$144.00", + "boundingBox": [ + 1308, + 1663, + 1543, + 1663, + 1543, + 1708, + 1308, + 1707 + ], + "elements": [ + "#/readResults/0/lines/47/words/0" + ] + } + ], + "boundingBox": [ + 1058, + 1563, + 1555, + 1563, + 1555, + 1707, + 1058, + 1707 ] } ] @@ -3351,7 +3727,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "505472818" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(False).json index 2ce77e0967adb..9a87a6e7cd0b9 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-65e540630571e04dbef3b1ddc5e7aeac-f7d910eee8efab46-00", + "traceparent": "00-8e565c6fe0ac2141ab8dd94d8ffcf3df-1bc05690bec2334f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "be1dca6beb90584589aa66afc62b95de", "x-ms-return-client-request-id": "true" @@ -21,25 +21,25 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e448f0dd-f83b-4dc9-8bf4-4ff0823890ff", + "apim-request-id": "66b88f48-22d4-4b9b-9332-419b1f4d06fd", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:05 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/e448f0dd-f83b-4dc9-8bf4-4ff0823890ff", + "Date": "Fri, 30 Oct 2020 12:46:25 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/66b88f48-22d4-4b9b-9332-419b1f4d06fd", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "355" + "x-envoy-upstream-service-time": "401" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/e448f0dd-f83b-4dc9-8bf4-4ff0823890ff", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/66b88f48-22d4-4b9b-9332-419b1f4d06fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "26b2bf0519c3b2fde4dfe67abc583ece", "x-ms-return-client-request-id": "true" @@ -47,29 +47,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f838acb-f741-45ee-ba95-d6d04c299f8d", + "apim-request-id": "73f14886-2367-40c1-b43f-0a399d8a5f55", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:05 GMT", + "Date": "Fri, 30 Oct 2020 12:46:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:30:06Z", - "lastUpdatedDateTime": "2020-09-09T22:30:06Z" + "createdDateTime": "2020-10-30T12:46:26Z", + "lastUpdatedDateTime": "2020-10-30T12:46:26Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/e448f0dd-f83b-4dc9-8bf4-4ff0823890ff", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/66b88f48-22d4-4b9b-9332-419b1f4d06fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ab1ec499b67e10c4529c03a7fec3e67a", "x-ms-return-client-request-id": "true" @@ -77,29 +77,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a06e463-3156-43b8-a183-4bfc9ec3074c", + "apim-request-id": "5f9f8584-b077-41c8-9c89-daa938f5541f", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:06 GMT", + "Date": "Fri, 30 Oct 2020 12:46:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:30:06Z", - "lastUpdatedDateTime": "2020-09-09T22:30:06Z" + "createdDateTime": "2020-10-30T12:46:26Z", + "lastUpdatedDateTime": "2020-10-30T12:46:26Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/e448f0dd-f83b-4dc9-8bf4-4ff0823890ff", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/66b88f48-22d4-4b9b-9332-419b1f4d06fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2e0d5bf95d3152a4cc6ad9b005ca9b31", "x-ms-return-client-request-id": "true" @@ -107,29 +107,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "31cf04e8-cb05-46b2-8ed7-26c2381f69d8", + "apim-request-id": "d1d0b73c-3971-4eff-9237-0966f10ba484", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:07 GMT", + "Date": "Fri, 30 Oct 2020 12:46:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:30:06Z", - "lastUpdatedDateTime": "2020-09-09T22:30:06Z" + "createdDateTime": "2020-10-30T12:46:26Z", + "lastUpdatedDateTime": "2020-10-30T12:46:26Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/e448f0dd-f83b-4dc9-8bf4-4ff0823890ff", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/66b88f48-22d4-4b9b-9332-419b1f4d06fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0115976ce90c4f60faa2d3261556b320", "x-ms-return-client-request-id": "true" @@ -137,29 +137,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eba01cab-fb25-4ddb-8546-a86ffff8886b", + "apim-request-id": "cfe84069-331e-4775-94b1-fd56384d92f8", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:08 GMT", + "Date": "Fri, 30 Oct 2020 12:46:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:30:06Z", - "lastUpdatedDateTime": "2020-09-09T22:30:06Z" + "createdDateTime": "2020-10-30T12:46:26Z", + "lastUpdatedDateTime": "2020-10-30T12:46:26Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/e448f0dd-f83b-4dc9-8bf4-4ff0823890ff", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/66b88f48-22d4-4b9b-9332-419b1f4d06fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "60816cf9104b3c9d1fccdf13dc140b87", "x-ms-return-client-request-id": "true" @@ -167,29 +167,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e260cc7-02f2-48c2-a783-a1fa8a6bad9d", + "apim-request-id": "89028b4a-9419-4d14-bfab-5d65a56b21d4", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:09 GMT", + "Date": "Fri, 30 Oct 2020 12:46:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:30:06Z", - "lastUpdatedDateTime": "2020-09-09T22:30:06Z" + "createdDateTime": "2020-10-30T12:46:26Z", + "lastUpdatedDateTime": "2020-10-30T12:46:31Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/e448f0dd-f83b-4dc9-8bf4-4ff0823890ff", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/66b88f48-22d4-4b9b-9332-419b1f4d06fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "673bd201e4ae0f6efbbe338f897e3c76", "x-ms-return-client-request-id": "true" @@ -197,48 +197,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f2e4892-093c-4d9b-925a-1318e2f4fbc6", - "Content-Length": "106", + "apim-request-id": "b999241d-e8f0-421b-8603-3541154e017b", + "Content-Length": "8802", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:10 GMT", + "Date": "Fri, 30 Oct 2020 12:46:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:30:06Z", - "lastUpdatedDateTime": "2020-09-09T22:30:06Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/e448f0dd-f83b-4dc9-8bf4-4ff0823890ff", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "98b6b9b73a485ce5fad8e23f0a4d72e6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e26a6240-fd9d-480f-a59b-1df0c3805828", - "Content-Length": "7909", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:30:06Z", - "lastUpdatedDateTime": "2020-09-09T22:30:11Z", + "createdDateTime": "2020-10-30T12:46:26Z", + "lastUpdatedDateTime": "2020-10-30T12:46:31Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -261,6 +231,12 @@ 1.3534 ], "text": "Contoso", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -290,6 +266,12 @@ 1.6154 ], "text": "Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -319,6 +301,12 @@ 1.6155 ], "text": "Invoice For: Microsoft", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -376,6 +364,12 @@ 1.8342 ], "text": "1 Redmond way Suite", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -447,6 +441,12 @@ 1.8459 ], "text": "1020 Enterprise Way", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -504,6 +504,12 @@ 2.0171 ], "text": "6000 Redmond, WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -561,6 +567,12 @@ 2.0359 ], "text": "Sunnayvale, CA 87659", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -618,6 +630,12 @@ 2.1911 ], "text": "99243", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -647,6 +665,12 @@ 2.9754 ], "text": "Invoice Number", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -690,6 +714,12 @@ 2.9754 ], "text": "Invoice Date", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -733,6 +763,12 @@ 2.9754 ], "text": "Invoice Due Date", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -790,6 +826,12 @@ 3.0035 ], "text": "Charges", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -819,6 +861,12 @@ 2.9736 ], "text": "VAT ID", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -862,6 +910,12 @@ 3.5144 ], "text": "34278587", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -891,6 +945,12 @@ 3.5144 ], "text": "6/18/2017", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -920,6 +980,12 @@ 3.5144 ], "text": "6/24/2017", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -949,6 +1015,12 @@ 3.5321 ], "text": "$56,651.49", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -978,6 +1050,12 @@ 3.5119 ], "text": "PT", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -995,50 +1073,6 @@ } ] } - ], - "selectionMarks": [ - { - "boundingBox": [ - 0, - 9.8562, - 1.1255, - 9.8562, - 1.1255, - 10.9934, - 0, - 10.9934 - ], - "confidence": 0.881, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.4809, - 1.854, - 10.4809, - 1.854, - 10.9976, - 0, - 10.9976 - ], - "confidence": 0.69, - "state": "unselected" - }, - { - "boundingBox": [ - 7.5162, - 10.3545, - 8.4955, - 10.3545, - 8.4955, - 11, - 7.5162, - 11 - ], - "confidence": 0.553, - "state": "unselected" - } ] } ], @@ -1047,7 +1081,7 @@ "page": 1, "tables": [ { - "rows": 2, + "rows": 3, "columns": 6, "cells": [ { @@ -1055,14 +1089,14 @@ "columnIndex": 0, "text": "Invoice Number", "boundingBox": [ - 0.5075, - 2.8088, - 1.9061, - 2.8088, - 1.9061, - 3.3219, - 0.5075, - 3.3219 + 0.5136, + 2.7829, + 1.8978, + 2.79, + 1.8978, + 3.311, + 0.5136, + 3.311 ], "elements": [ "#/readResults/0/lines/8/words/0", @@ -1074,14 +1108,14 @@ "columnIndex": 1, "text": "Invoice Date", "boundingBox": [ - 1.9061, - 2.8088, - 3.3074, - 2.8088, - 3.3074, - 3.3219, - 1.9061, - 3.3219 + 1.8978, + 2.79, + 3.2964, + 2.79, + 3.3036, + 3.311, + 1.8978, + 3.311 ], "elements": [ "#/readResults/0/lines/9/words/0", @@ -1093,14 +1127,14 @@ "columnIndex": 2, "text": "Invoice Due Date", "boundingBox": [ - 3.3074, - 2.8088, - 4.7074, - 2.8088, - 4.7074, - 3.3219, - 3.3074, - 3.3219 + 3.2964, + 2.79, + 4.7022, + 2.79, + 4.7094, + 3.311, + 3.3036, + 3.311 ], "elements": [ "#/readResults/0/lines/10/words/0", @@ -1111,16 +1145,17 @@ { "rowIndex": 0, "columnIndex": 3, + "columnSpan": 2, "text": "Charges", "boundingBox": [ - 4.7074, - 2.8088, - 5.386, - 2.8088, - 5.386, - 3.3219, - 4.7074, - 3.3219 + 4.7022, + 2.79, + 6.1079, + 2.7829, + 6.1079, + 3.311, + 4.7094, + 3.311 ], "elements": [ "#/readResults/0/lines/11/words/0" @@ -1131,14 +1166,14 @@ "columnIndex": 5, "text": "VAT ID", "boundingBox": [ - 6.1051, - 2.8088, - 7.5038, - 2.8088, - 7.5038, - 3.3219, - 6.1051, - 3.3219 + 6.1079, + 2.7829, + 7.485, + 2.7829, + 7.4922, + 3.311, + 6.1079, + 3.311 ], "elements": [ "#/readResults/0/lines/12/words/0", @@ -1148,16 +1183,17 @@ { "rowIndex": 1, "columnIndex": 0, + "rowSpan": 2, "text": "34278587", "boundingBox": [ - 0.5075, - 3.3219, - 1.9061, - 3.3219, - 1.9061, - 3.859, - 0.5075, - 3.859 + 0.5136, + 3.311, + 1.8978, + 3.311, + 1.8978, + 3.8534, + 0.5136, + 3.8534 ], "elements": [ "#/readResults/0/lines/13/words/0" @@ -1166,16 +1202,17 @@ { "rowIndex": 1, "columnIndex": 1, + "rowSpan": 2, "text": "6/18/2017", "boundingBox": [ - 1.9061, - 3.3219, - 3.3074, - 3.3219, - 3.3074, - 3.859, - 1.9061, - 3.859 + 1.8978, + 3.311, + 3.3036, + 3.311, + 3.3036, + 3.8534, + 1.8978, + 3.8534 ], "elements": [ "#/readResults/0/lines/14/words/0" @@ -1184,16 +1221,17 @@ { "rowIndex": 1, "columnIndex": 2, + "rowSpan": 2, "text": "6/24/2017", "boundingBox": [ - 3.3074, - 3.3219, - 4.7074, - 3.3219, - 4.7074, - 3.859, - 3.3074, - 3.859 + 3.3036, + 3.311, + 4.7094, + 3.311, + 4.7165, + 3.8534, + 3.3036, + 3.8534 ], "elements": [ "#/readResults/0/lines/15/words/0" @@ -1202,17 +1240,18 @@ { "rowIndex": 1, "columnIndex": 3, + "rowSpan": 2, "columnSpan": 2, "text": "$56,651.49", "boundingBox": [ - 4.7074, - 3.3219, - 6.1051, - 3.3219, - 6.1051, - 3.859, - 4.7074, - 3.859 + 4.7094, + 3.311, + 6.1079, + 3.311, + 6.1079, + 3.8534, + 4.7165, + 3.8534 ], "elements": [ "#/readResults/0/lines/16/words/0" @@ -1223,19 +1262,45 @@ "columnIndex": 5, "text": "PT", "boundingBox": [ - 6.1051, - 3.3219, - 7.5038, - 3.3219, - 7.5038, - 3.859, - 6.1051, - 3.859 + 6.1079, + 3.311, + 7.4922, + 3.311, + 7.4922, + 3.6393, + 6.1079, + 3.6393 ], "elements": [ "#/readResults/0/lines/17/words/0" ] + }, + { + "rowIndex": 2, + "columnIndex": 5, + "text": "", + "boundingBox": [ + 6.1079, + 3.6393, + 7.4922, + 3.6393, + 7.4922, + 3.8534, + 6.1079, + 3.8534 + ], + "elements": [] } + ], + "boundingBox": [ + 0.4985, + 2.7802, + 7.4933, + 2.7816, + 7.4913, + 3.8459, + 0.4966, + 3.8447 ] } ] @@ -1247,7 +1312,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1961779992" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(False)Async.json index f5511b7cfb81a..e0355911db683 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5070073a64d9bb46ae1173b71ba2586a-e397f0a157762c47-00", + "traceparent": "00-f356bac3e603554dbf7f2d59b248a61a-60aba3229f3bf241-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "55ed5e40afbfadd717081e0940780ed9", "x-ms-return-client-request-id": "true" @@ -21,25 +21,25 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b4218631-7d51-4bf8-b12a-02cbb88f67de", + "apim-request-id": "974a85f1-890f-4386-9b36-aad4556138e9", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:35:12 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/b4218631-7d51-4bf8-b12a-02cbb88f67de", + "Date": "Fri, 30 Oct 2020 12:46:48 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/974a85f1-890f-4386-9b36-aad4556138e9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "365" + "x-envoy-upstream-service-time": "371" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/b4218631-7d51-4bf8-b12a-02cbb88f67de", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/974a85f1-890f-4386-9b36-aad4556138e9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fa7bd9688d74e63b3584243e66be66cc", "x-ms-return-client-request-id": "true" @@ -47,29 +47,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3444e324-657a-4c37-ba2b-3b11ed9c4a81", + "apim-request-id": "3a873434-eb76-44d0-9e55-e55e2b3cb9e2", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:12 GMT", + "Date": "Fri, 30 Oct 2020 12:46:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:35:13Z", - "lastUpdatedDateTime": "2020-09-09T22:35:13Z" + "createdDateTime": "2020-10-30T12:46:49Z", + "lastUpdatedDateTime": "2020-10-30T12:46:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/b4218631-7d51-4bf8-b12a-02cbb88f67de", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/974a85f1-890f-4386-9b36-aad4556138e9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5412a08fed6c527486c00252e8e76ae1", "x-ms-return-client-request-id": "true" @@ -77,168 +77,108 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f36768a-8390-44be-bb3b-eaf42df40574", + "apim-request-id": "70cc7a82-424e-4158-b98d-391bc5696691", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:35:13Z", - "lastUpdatedDateTime": "2020-09-09T22:35:13Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/b4218631-7d51-4bf8-b12a-02cbb88f67de", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "819dbb972112b2c62206203b8b994759", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ee82cd6c-2d6a-48d0-86f9-60a45b258321", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:15 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:35:13Z", - "lastUpdatedDateTime": "2020-09-09T22:35:13Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/b4218631-7d51-4bf8-b12a-02cbb88f67de", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9f7a52a1b9667b6d642973b38be9fe4d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ebbea5a0-2f93-4e0d-8d93-b46cc28aaa6f", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:16 GMT", + "Date": "Fri, 30 Oct 2020 12:46:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:35:13Z", - "lastUpdatedDateTime": "2020-09-09T22:35:13Z" + "createdDateTime": "2020-10-30T12:46:49Z", + "lastUpdatedDateTime": "2020-10-30T12:46:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/b4218631-7d51-4bf8-b12a-02cbb88f67de", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/974a85f1-890f-4386-9b36-aad4556138e9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "aba74219e4206db9d95f3265cd39c7ed", + "x-ms-client-request-id": "819dbb972112b2c62206203b8b994759", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3736371-08a5-43a0-9b19-7539c24bf503", + "apim-request-id": "bc324951-7c03-4508-8078-be8933bef9dd", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:17 GMT", + "Date": "Fri, 30 Oct 2020 12:46:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:35:13Z", - "lastUpdatedDateTime": "2020-09-09T22:35:13Z" + "createdDateTime": "2020-10-30T12:46:49Z", + "lastUpdatedDateTime": "2020-10-30T12:46:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/b4218631-7d51-4bf8-b12a-02cbb88f67de", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/974a85f1-890f-4386-9b36-aad4556138e9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "96b1a979cb6ddd7b4e221de9ad132738", + "x-ms-client-request-id": "9f7a52a1b9667b6d642973b38be9fe4d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d470ddf6-d5d0-497a-a08c-a4580119d927", + "apim-request-id": "0758320d-29e0-4cb9-a3aa-7bc0fff38362", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:18 GMT", + "Date": "Fri, 30 Oct 2020 12:46:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:35:13Z", - "lastUpdatedDateTime": "2020-09-09T22:35:13Z" + "createdDateTime": "2020-10-30T12:46:49Z", + "lastUpdatedDateTime": "2020-10-30T12:46:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/b4218631-7d51-4bf8-b12a-02cbb88f67de", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/974a85f1-890f-4386-9b36-aad4556138e9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4821d2089cf2bc38980cc5068707ad2b", + "x-ms-client-request-id": "aba74219e4206db9d95f3265cd39c7ed", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ffc47948-8239-484d-9133-23d8c62ec381", - "Content-Length": "7909", + "apim-request-id": "f74baa45-7ba5-463c-af0b-a08edac56381", + "Content-Length": "8802", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:19 GMT", + "Date": "Fri, 30 Oct 2020 12:46:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:35:13Z", - "lastUpdatedDateTime": "2020-09-09T22:35:19Z", + "createdDateTime": "2020-10-30T12:46:49Z", + "lastUpdatedDateTime": "2020-10-30T12:46:53Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -261,6 +201,12 @@ 1.3534 ], "text": "Contoso", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -290,6 +236,12 @@ 1.6154 ], "text": "Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -319,6 +271,12 @@ 1.6155 ], "text": "Invoice For: Microsoft", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -376,6 +334,12 @@ 1.8342 ], "text": "1 Redmond way Suite", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -447,6 +411,12 @@ 1.8459 ], "text": "1020 Enterprise Way", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -504,6 +474,12 @@ 2.0171 ], "text": "6000 Redmond, WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -561,6 +537,12 @@ 2.0359 ], "text": "Sunnayvale, CA 87659", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -618,6 +600,12 @@ 2.1911 ], "text": "99243", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -647,6 +635,12 @@ 2.9754 ], "text": "Invoice Number", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -690,6 +684,12 @@ 2.9754 ], "text": "Invoice Date", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -733,6 +733,12 @@ 2.9754 ], "text": "Invoice Due Date", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -790,6 +796,12 @@ 3.0035 ], "text": "Charges", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -819,6 +831,12 @@ 2.9736 ], "text": "VAT ID", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -862,6 +880,12 @@ 3.5144 ], "text": "34278587", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -891,6 +915,12 @@ 3.5144 ], "text": "6/18/2017", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -920,6 +950,12 @@ 3.5144 ], "text": "6/24/2017", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -949,6 +985,12 @@ 3.5321 ], "text": "$56,651.49", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -978,6 +1020,12 @@ 3.5119 ], "text": "PT", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -995,50 +1043,6 @@ } ] } - ], - "selectionMarks": [ - { - "boundingBox": [ - 0, - 9.8562, - 1.1255, - 9.8562, - 1.1255, - 10.9934, - 0, - 10.9934 - ], - "confidence": 0.881, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.4809, - 1.854, - 10.4809, - 1.854, - 10.9976, - 0, - 10.9976 - ], - "confidence": 0.69, - "state": "unselected" - }, - { - "boundingBox": [ - 7.5162, - 10.3545, - 8.4955, - 10.3545, - 8.4955, - 11, - 7.5162, - 11 - ], - "confidence": 0.553, - "state": "unselected" - } ] } ], @@ -1047,7 +1051,7 @@ "page": 1, "tables": [ { - "rows": 2, + "rows": 3, "columns": 6, "cells": [ { @@ -1055,14 +1059,14 @@ "columnIndex": 0, "text": "Invoice Number", "boundingBox": [ - 0.5075, - 2.8088, - 1.9061, - 2.8088, - 1.9061, - 3.3219, - 0.5075, - 3.3219 + 0.5136, + 2.7829, + 1.8978, + 2.79, + 1.8978, + 3.311, + 0.5136, + 3.311 ], "elements": [ "#/readResults/0/lines/8/words/0", @@ -1074,14 +1078,14 @@ "columnIndex": 1, "text": "Invoice Date", "boundingBox": [ - 1.9061, - 2.8088, - 3.3074, - 2.8088, - 3.3074, - 3.3219, - 1.9061, - 3.3219 + 1.8978, + 2.79, + 3.2964, + 2.79, + 3.3036, + 3.311, + 1.8978, + 3.311 ], "elements": [ "#/readResults/0/lines/9/words/0", @@ -1093,14 +1097,14 @@ "columnIndex": 2, "text": "Invoice Due Date", "boundingBox": [ - 3.3074, - 2.8088, - 4.7074, - 2.8088, - 4.7074, - 3.3219, - 3.3074, - 3.3219 + 3.2964, + 2.79, + 4.7022, + 2.79, + 4.7094, + 3.311, + 3.3036, + 3.311 ], "elements": [ "#/readResults/0/lines/10/words/0", @@ -1111,16 +1115,17 @@ { "rowIndex": 0, "columnIndex": 3, + "columnSpan": 2, "text": "Charges", "boundingBox": [ - 4.7074, - 2.8088, - 5.386, - 2.8088, - 5.386, - 3.3219, - 4.7074, - 3.3219 + 4.7022, + 2.79, + 6.1079, + 2.7829, + 6.1079, + 3.311, + 4.7094, + 3.311 ], "elements": [ "#/readResults/0/lines/11/words/0" @@ -1131,14 +1136,14 @@ "columnIndex": 5, "text": "VAT ID", "boundingBox": [ - 6.1051, - 2.8088, - 7.5038, - 2.8088, - 7.5038, - 3.3219, - 6.1051, - 3.3219 + 6.1079, + 2.7829, + 7.485, + 2.7829, + 7.4922, + 3.311, + 6.1079, + 3.311 ], "elements": [ "#/readResults/0/lines/12/words/0", @@ -1148,16 +1153,17 @@ { "rowIndex": 1, "columnIndex": 0, + "rowSpan": 2, "text": "34278587", "boundingBox": [ - 0.5075, - 3.3219, - 1.9061, - 3.3219, - 1.9061, - 3.859, - 0.5075, - 3.859 + 0.5136, + 3.311, + 1.8978, + 3.311, + 1.8978, + 3.8534, + 0.5136, + 3.8534 ], "elements": [ "#/readResults/0/lines/13/words/0" @@ -1166,16 +1172,17 @@ { "rowIndex": 1, "columnIndex": 1, + "rowSpan": 2, "text": "6/18/2017", "boundingBox": [ - 1.9061, - 3.3219, - 3.3074, - 3.3219, - 3.3074, - 3.859, - 1.9061, - 3.859 + 1.8978, + 3.311, + 3.3036, + 3.311, + 3.3036, + 3.8534, + 1.8978, + 3.8534 ], "elements": [ "#/readResults/0/lines/14/words/0" @@ -1184,16 +1191,17 @@ { "rowIndex": 1, "columnIndex": 2, + "rowSpan": 2, "text": "6/24/2017", "boundingBox": [ - 3.3074, - 3.3219, - 4.7074, - 3.3219, - 4.7074, - 3.859, - 3.3074, - 3.859 + 3.3036, + 3.311, + 4.7094, + 3.311, + 4.7165, + 3.8534, + 3.3036, + 3.8534 ], "elements": [ "#/readResults/0/lines/15/words/0" @@ -1202,17 +1210,18 @@ { "rowIndex": 1, "columnIndex": 3, + "rowSpan": 2, "columnSpan": 2, "text": "$56,651.49", "boundingBox": [ - 4.7074, - 3.3219, - 6.1051, - 3.3219, - 6.1051, - 3.859, - 4.7074, - 3.859 + 4.7094, + 3.311, + 6.1079, + 3.311, + 6.1079, + 3.8534, + 4.7165, + 3.8534 ], "elements": [ "#/readResults/0/lines/16/words/0" @@ -1223,19 +1232,45 @@ "columnIndex": 5, "text": "PT", "boundingBox": [ - 6.1051, - 3.3219, - 7.5038, - 3.3219, - 7.5038, - 3.859, - 6.1051, - 3.859 + 6.1079, + 3.311, + 7.4922, + 3.311, + 7.4922, + 3.6393, + 6.1079, + 3.6393 ], "elements": [ "#/readResults/0/lines/17/words/0" ] + }, + { + "rowIndex": 2, + "columnIndex": 5, + "text": "", + "boundingBox": [ + 6.1079, + 3.6393, + 7.4922, + 3.6393, + 7.4922, + 3.8534, + 6.1079, + 3.8534 + ], + "elements": [] } + ], + "boundingBox": [ + 0.4985, + 2.7802, + 7.4933, + 2.7816, + 7.4913, + 3.8459, + 0.4966, + 3.8447 ] } ] @@ -1247,7 +1282,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "207737071" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(True).json index bb180982b848c..c8c5b920e8671 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "147362", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0b8ff23c06c20b4c86511b6bc0dcf130-7470a8aa07bd134d-00", + "traceparent": "00-2a8343fdd4afc44eaf980c6da878cce4-20e9caac8646f64a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7f32f9a65bd486217881e37d7fd5efed", "x-ms-return-client-request-id": "true" @@ -19,25 +19,25 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1ae9cfc4-597e-4624-a0db-34852fef37f6", + "apim-request-id": "63960475-8a49-45cc-9b22-ffdb3fcd923a", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:29:59 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1ae9cfc4-597e-4624-a0db-34852fef37f6", + "Date": "Fri, 30 Oct 2020 12:46:19 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/63960475-8a49-45cc-9b22-ffdb3fcd923a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "84" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1ae9cfc4-597e-4624-a0db-34852fef37f6", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/63960475-8a49-45cc-9b22-ffdb3fcd923a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "028aa01c1914805860a592f737623c22", "x-ms-return-client-request-id": "true" @@ -45,29 +45,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b19d9f6d-cae4-4c78-a6be-c1c71b9a3de9", + "apim-request-id": "f21526ea-2a2c-478a-9247-3437f8fa1317", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:59 GMT", + "Date": "Fri, 30 Oct 2020 12:46:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:59Z", - "lastUpdatedDateTime": "2020-09-09T22:29:59Z" + "createdDateTime": "2020-10-30T12:46:20Z", + "lastUpdatedDateTime": "2020-10-30T12:46:20Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1ae9cfc4-597e-4624-a0db-34852fef37f6", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/63960475-8a49-45cc-9b22-ffdb3fcd923a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d3fdcfb00fdc634f0ebbaf78a5b9622f", "x-ms-return-client-request-id": "true" @@ -75,29 +75,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37505cee-1ec1-409b-a5e6-78db57f32123", + "apim-request-id": "03cf7c1c-6982-4f8e-83bf-77751af22680", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:00 GMT", + "Date": "Fri, 30 Oct 2020 12:46:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:59Z", - "lastUpdatedDateTime": "2020-09-09T22:29:59Z" + "createdDateTime": "2020-10-30T12:46:20Z", + "lastUpdatedDateTime": "2020-10-30T12:46:20Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1ae9cfc4-597e-4624-a0db-34852fef37f6", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/63960475-8a49-45cc-9b22-ffdb3fcd923a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0cf913d597598dc4a0b21e2ec8294f16", "x-ms-return-client-request-id": "true" @@ -105,29 +105,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "faa95694-e57f-4528-b494-d5e54d681748", + "apim-request-id": "f6c01d8b-29cb-443d-bb3a-c39609f445ed", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:01 GMT", + "Date": "Fri, 30 Oct 2020 12:46:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:59Z", - "lastUpdatedDateTime": "2020-09-09T22:29:59Z" + "createdDateTime": "2020-10-30T12:46:20Z", + "lastUpdatedDateTime": "2020-10-30T12:46:20Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1ae9cfc4-597e-4624-a0db-34852fef37f6", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/63960475-8a49-45cc-9b22-ffdb3fcd923a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "afcdc1441bd70d115126f45969e0daa7", "x-ms-return-client-request-id": "true" @@ -135,29 +135,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2822c002-d06c-4563-aa46-57e2ecb0fc9b", + "apim-request-id": "91720dc2-b2d2-426a-b13c-8e774ec14de0", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:02 GMT", + "Date": "Fri, 30 Oct 2020 12:46:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:59Z", - "lastUpdatedDateTime": "2020-09-09T22:29:59Z" + "createdDateTime": "2020-10-30T12:46:20Z", + "lastUpdatedDateTime": "2020-10-30T12:46:20Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1ae9cfc4-597e-4624-a0db-34852fef37f6", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/63960475-8a49-45cc-9b22-ffdb3fcd923a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "23226342306819c80b6f3329f0209be4", "x-ms-return-client-request-id": "true" @@ -165,78 +165,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f6a8b0fd-eee3-42fa-81ad-57c347cb9e5b", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:03 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:29:59Z", - "lastUpdatedDateTime": "2020-09-09T22:29:59Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1ae9cfc4-597e-4624-a0db-34852fef37f6", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e433996cb2ecba5702ecbb32a26b23c0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f7f3d381-8602-42c0-b69b-11a036c34579", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:29:59Z", - "lastUpdatedDateTime": "2020-09-09T22:29:59Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/1ae9cfc4-597e-4624-a0db-34852fef37f6", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "65eb76d82b0714adf8b3a467e8e71c30", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "67e02dee-21a4-4f27-b271-0dbe1bcb246f", - "Content-Length": "7909", + "apim-request-id": "6d43db44-a5f3-4375-a1b8-3ef436c9b640", + "Content-Length": "8802", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:05 GMT", + "Date": "Fri, 30 Oct 2020 12:46:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:29:59Z", - "lastUpdatedDateTime": "2020-09-09T22:30:05Z", + "createdDateTime": "2020-10-30T12:46:20Z", + "lastUpdatedDateTime": "2020-10-30T12:46:24Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -259,6 +199,12 @@ 1.3534 ], "text": "Contoso", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -288,6 +234,12 @@ 1.6154 ], "text": "Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -317,6 +269,12 @@ 1.6155 ], "text": "Invoice For: Microsoft", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -374,6 +332,12 @@ 1.8342 ], "text": "1 Redmond way Suite", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -445,6 +409,12 @@ 1.8459 ], "text": "1020 Enterprise Way", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -502,6 +472,12 @@ 2.0171 ], "text": "6000 Redmond, WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -559,6 +535,12 @@ 2.0359 ], "text": "Sunnayvale, CA 87659", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -616,6 +598,12 @@ 2.1911 ], "text": "99243", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -645,6 +633,12 @@ 2.9754 ], "text": "Invoice Number", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -688,6 +682,12 @@ 2.9754 ], "text": "Invoice Date", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -731,6 +731,12 @@ 2.9754 ], "text": "Invoice Due Date", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -788,6 +794,12 @@ 3.0035 ], "text": "Charges", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -817,6 +829,12 @@ 2.9736 ], "text": "VAT ID", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -860,6 +878,12 @@ 3.5144 ], "text": "34278587", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -889,6 +913,12 @@ 3.5144 ], "text": "6/18/2017", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -918,6 +948,12 @@ 3.5144 ], "text": "6/24/2017", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -947,6 +983,12 @@ 3.5321 ], "text": "$56,651.49", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -976,6 +1018,12 @@ 3.5119 ], "text": "PT", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -993,50 +1041,6 @@ } ] } - ], - "selectionMarks": [ - { - "boundingBox": [ - 0, - 9.8562, - 1.1255, - 9.8562, - 1.1255, - 10.9934, - 0, - 10.9934 - ], - "confidence": 0.881, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.4809, - 1.854, - 10.4809, - 1.854, - 10.9976, - 0, - 10.9976 - ], - "confidence": 0.69, - "state": "unselected" - }, - { - "boundingBox": [ - 7.5162, - 10.3545, - 8.4955, - 10.3545, - 8.4955, - 11, - 7.5162, - 11 - ], - "confidence": 0.553, - "state": "unselected" - } ] } ], @@ -1045,7 +1049,7 @@ "page": 1, "tables": [ { - "rows": 2, + "rows": 3, "columns": 6, "cells": [ { @@ -1053,14 +1057,14 @@ "columnIndex": 0, "text": "Invoice Number", "boundingBox": [ - 0.5075, - 2.8088, - 1.9061, - 2.8088, - 1.9061, - 3.3219, - 0.5075, - 3.3219 + 0.5136, + 2.7829, + 1.8978, + 2.79, + 1.8978, + 3.311, + 0.5136, + 3.311 ], "elements": [ "#/readResults/0/lines/8/words/0", @@ -1072,14 +1076,14 @@ "columnIndex": 1, "text": "Invoice Date", "boundingBox": [ - 1.9061, - 2.8088, - 3.3074, - 2.8088, - 3.3074, - 3.3219, - 1.9061, - 3.3219 + 1.8978, + 2.79, + 3.2964, + 2.79, + 3.3036, + 3.311, + 1.8978, + 3.311 ], "elements": [ "#/readResults/0/lines/9/words/0", @@ -1091,14 +1095,14 @@ "columnIndex": 2, "text": "Invoice Due Date", "boundingBox": [ - 3.3074, - 2.8088, - 4.7074, - 2.8088, - 4.7074, - 3.3219, - 3.3074, - 3.3219 + 3.2964, + 2.79, + 4.7022, + 2.79, + 4.7094, + 3.311, + 3.3036, + 3.311 ], "elements": [ "#/readResults/0/lines/10/words/0", @@ -1109,16 +1113,17 @@ { "rowIndex": 0, "columnIndex": 3, + "columnSpan": 2, "text": "Charges", "boundingBox": [ - 4.7074, - 2.8088, - 5.386, - 2.8088, - 5.386, - 3.3219, - 4.7074, - 3.3219 + 4.7022, + 2.79, + 6.1079, + 2.7829, + 6.1079, + 3.311, + 4.7094, + 3.311 ], "elements": [ "#/readResults/0/lines/11/words/0" @@ -1129,14 +1134,14 @@ "columnIndex": 5, "text": "VAT ID", "boundingBox": [ - 6.1051, - 2.8088, - 7.5038, - 2.8088, - 7.5038, - 3.3219, - 6.1051, - 3.3219 + 6.1079, + 2.7829, + 7.485, + 2.7829, + 7.4922, + 3.311, + 6.1079, + 3.311 ], "elements": [ "#/readResults/0/lines/12/words/0", @@ -1146,16 +1151,17 @@ { "rowIndex": 1, "columnIndex": 0, + "rowSpan": 2, "text": "34278587", "boundingBox": [ - 0.5075, - 3.3219, - 1.9061, - 3.3219, - 1.9061, - 3.859, - 0.5075, - 3.859 + 0.5136, + 3.311, + 1.8978, + 3.311, + 1.8978, + 3.8534, + 0.5136, + 3.8534 ], "elements": [ "#/readResults/0/lines/13/words/0" @@ -1164,16 +1170,17 @@ { "rowIndex": 1, "columnIndex": 1, + "rowSpan": 2, "text": "6/18/2017", "boundingBox": [ - 1.9061, - 3.3219, - 3.3074, - 3.3219, - 3.3074, - 3.859, - 1.9061, - 3.859 + 1.8978, + 3.311, + 3.3036, + 3.311, + 3.3036, + 3.8534, + 1.8978, + 3.8534 ], "elements": [ "#/readResults/0/lines/14/words/0" @@ -1182,16 +1189,17 @@ { "rowIndex": 1, "columnIndex": 2, + "rowSpan": 2, "text": "6/24/2017", "boundingBox": [ - 3.3074, - 3.3219, - 4.7074, - 3.3219, - 4.7074, - 3.859, - 3.3074, - 3.859 + 3.3036, + 3.311, + 4.7094, + 3.311, + 4.7165, + 3.8534, + 3.3036, + 3.8534 ], "elements": [ "#/readResults/0/lines/15/words/0" @@ -1200,17 +1208,18 @@ { "rowIndex": 1, "columnIndex": 3, + "rowSpan": 2, "columnSpan": 2, "text": "$56,651.49", "boundingBox": [ - 4.7074, - 3.3219, - 6.1051, - 3.3219, - 6.1051, - 3.859, - 4.7074, - 3.859 + 4.7094, + 3.311, + 6.1079, + 3.311, + 6.1079, + 3.8534, + 4.7165, + 3.8534 ], "elements": [ "#/readResults/0/lines/16/words/0" @@ -1221,19 +1230,45 @@ "columnIndex": 5, "text": "PT", "boundingBox": [ - 6.1051, - 3.3219, - 7.5038, - 3.3219, - 7.5038, - 3.859, - 6.1051, - 3.859 + 6.1079, + 3.311, + 7.4922, + 3.311, + 7.4922, + 3.6393, + 6.1079, + 3.6393 ], "elements": [ "#/readResults/0/lines/17/words/0" ] + }, + { + "rowIndex": 2, + "columnIndex": 5, + "text": "", + "boundingBox": [ + 6.1079, + 3.6393, + 7.4922, + 3.6393, + 7.4922, + 3.8534, + 6.1079, + 3.8534 + ], + "elements": [] } + ], + "boundingBox": [ + 0.4985, + 2.7802, + 7.4933, + 2.7816, + 7.4913, + 3.8459, + 0.4966, + 3.8447 ] } ] @@ -1245,7 +1280,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "910307420" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(True)Async.json index fcec3ea1c96df..f4aec0b6045b2 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentPopulatesFormPagePdf(True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "147362", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8b0a9703c6cb0a46aa9582f222c2e466-5efe8c17eaa79c47-00", + "traceparent": "00-c982174d5f28cd40b57d5bdc5342c41b-0f691fd31d11fc44-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6a73106b4de94123baca33861a5d6c7f", "x-ms-return-client-request-id": "true" @@ -19,10 +19,10 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "59a5c548-2635-43a7-a93c-72b46041b59a", + "apim-request-id": "ed310278-7544-4a6b-89fd-e422e86b4519", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:35:06 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/59a5c548-2635-43a7-a93c-72b46041b59a", + "Date": "Fri, 30 Oct 2020 12:46:42 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/ed310278-7544-4a6b-89fd-e422e86b4519", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "77" @@ -30,14 +30,14 @@ "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/59a5c548-2635-43a7-a93c-72b46041b59a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/ed310278-7544-4a6b-89fd-e422e86b4519", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "122f3fccd305a64aa3a05dd18d65a1c8", "x-ms-return-client-request-id": "true" @@ -45,29 +45,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3fe51d9d-3d11-4b34-bf74-2b779a427d10", + "apim-request-id": "cae383dd-2426-4216-8855-96a6127359b7", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:06 GMT", + "Date": "Fri, 30 Oct 2020 12:46:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:35:06Z", - "lastUpdatedDateTime": "2020-09-09T22:35:06Z" + "createdDateTime": "2020-10-30T12:46:43Z", + "lastUpdatedDateTime": "2020-10-30T12:46:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/59a5c548-2635-43a7-a93c-72b46041b59a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/ed310278-7544-4a6b-89fd-e422e86b4519", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f94c59dfcd938c75df7d0eb0ee58e486", "x-ms-return-client-request-id": "true" @@ -75,29 +75,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f9bafbc1-0258-49c0-ba17-a00af97e115c", + "apim-request-id": "9fe4c87a-41ff-421a-ac76-d04bed29cc67", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:07 GMT", + "Date": "Fri, 30 Oct 2020 12:46:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:35:06Z", - "lastUpdatedDateTime": "2020-09-09T22:35:06Z" + "createdDateTime": "2020-10-30T12:46:43Z", + "lastUpdatedDateTime": "2020-10-30T12:46:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/59a5c548-2635-43a7-a93c-72b46041b59a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/ed310278-7544-4a6b-89fd-e422e86b4519", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8850605665d89762c6cdc649f052b354", "x-ms-return-client-request-id": "true" @@ -105,29 +105,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "29530113-315e-44a1-b1a0-b004d8463636", + "apim-request-id": "a37ccfbc-2c52-465b-821d-ca9d1e4f24cd", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:08 GMT", + "Date": "Fri, 30 Oct 2020 12:46:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:35:06Z", - "lastUpdatedDateTime": "2020-09-09T22:35:06Z" + "createdDateTime": "2020-10-30T12:46:43Z", + "lastUpdatedDateTime": "2020-10-30T12:46:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/59a5c548-2635-43a7-a93c-72b46041b59a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/ed310278-7544-4a6b-89fd-e422e86b4519", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c1a66b297310ffebc9a33288c599b74a", "x-ms-return-client-request-id": "true" @@ -135,29 +135,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "62b3766e-92bc-46d9-b923-706e07516d00", + "apim-request-id": "45833ad2-2aa0-403f-96b0-63c7c8f58d4e", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:09 GMT", + "Date": "Fri, 30 Oct 2020 12:46:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:35:06Z", - "lastUpdatedDateTime": "2020-09-09T22:35:06Z" + "createdDateTime": "2020-10-30T12:46:43Z", + "lastUpdatedDateTime": "2020-10-30T12:46:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/59a5c548-2635-43a7-a93c-72b46041b59a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/ed310278-7544-4a6b-89fd-e422e86b4519", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2c7ad7bc181579f0f7b533c6072c9c8c", "x-ms-return-client-request-id": "true" @@ -165,29 +165,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe4023f3-c4ee-4e6f-aa3c-f415cecad02b", + "apim-request-id": "067f7da6-db74-44c4-aafb-9a8b2b634aa6", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:10 GMT", + "Date": "Fri, 30 Oct 2020 12:46:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:35:06Z", - "lastUpdatedDateTime": "2020-09-09T22:35:06Z" + "createdDateTime": "2020-10-30T12:46:43Z", + "lastUpdatedDateTime": "2020-10-30T12:46:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/59a5c548-2635-43a7-a93c-72b46041b59a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/ed310278-7544-4a6b-89fd-e422e86b4519", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8387b9c922b2e3757551be3432dad22c", "x-ms-return-client-request-id": "true" @@ -195,48 +195,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a5d045b-6877-461d-a590-635f334f8c50", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:35:06Z", - "lastUpdatedDateTime": "2020-09-09T22:35:06Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/59a5c548-2635-43a7-a93c-72b46041b59a", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "188c7c1587d7103f7a2cc95b3f25f79d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "540b108f-1574-4bc7-8af7-26c39c873021", - "Content-Length": "7909", + "apim-request-id": "b958fbcf-47b8-4bf2-8dad-ab18cc7e87d5", + "Content-Length": "8802", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:12 GMT", + "Date": "Fri, 30 Oct 2020 12:46:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:35:06Z", - "lastUpdatedDateTime": "2020-09-09T22:35:12Z", + "createdDateTime": "2020-10-30T12:46:43Z", + "lastUpdatedDateTime": "2020-10-30T12:46:48Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -259,6 +229,12 @@ 1.3534 ], "text": "Contoso", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -288,6 +264,12 @@ 1.6154 ], "text": "Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -317,6 +299,12 @@ 1.6155 ], "text": "Invoice For: Microsoft", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -374,6 +362,12 @@ 1.8342 ], "text": "1 Redmond way Suite", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -445,6 +439,12 @@ 1.8459 ], "text": "1020 Enterprise Way", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -502,6 +502,12 @@ 2.0171 ], "text": "6000 Redmond, WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -559,6 +565,12 @@ 2.0359 ], "text": "Sunnayvale, CA 87659", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -616,6 +628,12 @@ 2.1911 ], "text": "99243", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -645,6 +663,12 @@ 2.9754 ], "text": "Invoice Number", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -688,6 +712,12 @@ 2.9754 ], "text": "Invoice Date", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -731,6 +761,12 @@ 2.9754 ], "text": "Invoice Due Date", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -788,6 +824,12 @@ 3.0035 ], "text": "Charges", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -817,6 +859,12 @@ 2.9736 ], "text": "VAT ID", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -860,6 +908,12 @@ 3.5144 ], "text": "34278587", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -889,6 +943,12 @@ 3.5144 ], "text": "6/18/2017", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -918,6 +978,12 @@ 3.5144 ], "text": "6/24/2017", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -947,6 +1013,12 @@ 3.5321 ], "text": "$56,651.49", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -976,6 +1048,12 @@ 3.5119 ], "text": "PT", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -993,50 +1071,6 @@ } ] } - ], - "selectionMarks": [ - { - "boundingBox": [ - 0, - 9.8562, - 1.1255, - 9.8562, - 1.1255, - 10.9934, - 0, - 10.9934 - ], - "confidence": 0.881, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.4809, - 1.854, - 10.4809, - 1.854, - 10.9976, - 0, - 10.9976 - ], - "confidence": 0.69, - "state": "unselected" - }, - { - "boundingBox": [ - 7.5162, - 10.3545, - 8.4955, - 10.3545, - 8.4955, - 11, - 7.5162, - 11 - ], - "confidence": 0.553, - "state": "unselected" - } ] } ], @@ -1045,7 +1079,7 @@ "page": 1, "tables": [ { - "rows": 2, + "rows": 3, "columns": 6, "cells": [ { @@ -1053,14 +1087,14 @@ "columnIndex": 0, "text": "Invoice Number", "boundingBox": [ - 0.5075, - 2.8088, - 1.9061, - 2.8088, - 1.9061, - 3.3219, - 0.5075, - 3.3219 + 0.5136, + 2.7829, + 1.8978, + 2.79, + 1.8978, + 3.311, + 0.5136, + 3.311 ], "elements": [ "#/readResults/0/lines/8/words/0", @@ -1072,14 +1106,14 @@ "columnIndex": 1, "text": "Invoice Date", "boundingBox": [ - 1.9061, - 2.8088, - 3.3074, - 2.8088, - 3.3074, - 3.3219, - 1.9061, - 3.3219 + 1.8978, + 2.79, + 3.2964, + 2.79, + 3.3036, + 3.311, + 1.8978, + 3.311 ], "elements": [ "#/readResults/0/lines/9/words/0", @@ -1091,14 +1125,14 @@ "columnIndex": 2, "text": "Invoice Due Date", "boundingBox": [ - 3.3074, - 2.8088, - 4.7074, - 2.8088, - 4.7074, - 3.3219, - 3.3074, - 3.3219 + 3.2964, + 2.79, + 4.7022, + 2.79, + 4.7094, + 3.311, + 3.3036, + 3.311 ], "elements": [ "#/readResults/0/lines/10/words/0", @@ -1109,16 +1143,17 @@ { "rowIndex": 0, "columnIndex": 3, + "columnSpan": 2, "text": "Charges", "boundingBox": [ - 4.7074, - 2.8088, - 5.386, - 2.8088, - 5.386, - 3.3219, - 4.7074, - 3.3219 + 4.7022, + 2.79, + 6.1079, + 2.7829, + 6.1079, + 3.311, + 4.7094, + 3.311 ], "elements": [ "#/readResults/0/lines/11/words/0" @@ -1129,14 +1164,14 @@ "columnIndex": 5, "text": "VAT ID", "boundingBox": [ - 6.1051, - 2.8088, - 7.5038, - 2.8088, - 7.5038, - 3.3219, - 6.1051, - 3.3219 + 6.1079, + 2.7829, + 7.485, + 2.7829, + 7.4922, + 3.311, + 6.1079, + 3.311 ], "elements": [ "#/readResults/0/lines/12/words/0", @@ -1146,16 +1181,17 @@ { "rowIndex": 1, "columnIndex": 0, + "rowSpan": 2, "text": "34278587", "boundingBox": [ - 0.5075, - 3.3219, - 1.9061, - 3.3219, - 1.9061, - 3.859, - 0.5075, - 3.859 + 0.5136, + 3.311, + 1.8978, + 3.311, + 1.8978, + 3.8534, + 0.5136, + 3.8534 ], "elements": [ "#/readResults/0/lines/13/words/0" @@ -1164,16 +1200,17 @@ { "rowIndex": 1, "columnIndex": 1, + "rowSpan": 2, "text": "6/18/2017", "boundingBox": [ - 1.9061, - 3.3219, - 3.3074, - 3.3219, - 3.3074, - 3.859, - 1.9061, - 3.859 + 1.8978, + 3.311, + 3.3036, + 3.311, + 3.3036, + 3.8534, + 1.8978, + 3.8534 ], "elements": [ "#/readResults/0/lines/14/words/0" @@ -1182,16 +1219,17 @@ { "rowIndex": 1, "columnIndex": 2, + "rowSpan": 2, "text": "6/24/2017", "boundingBox": [ - 3.3074, - 3.3219, - 4.7074, - 3.3219, - 4.7074, - 3.859, - 3.3074, - 3.859 + 3.3036, + 3.311, + 4.7094, + 3.311, + 4.7165, + 3.8534, + 3.3036, + 3.8534 ], "elements": [ "#/readResults/0/lines/15/words/0" @@ -1200,17 +1238,18 @@ { "rowIndex": 1, "columnIndex": 3, + "rowSpan": 2, "columnSpan": 2, "text": "$56,651.49", "boundingBox": [ - 4.7074, - 3.3219, - 6.1051, - 3.3219, - 6.1051, - 3.859, - 4.7074, - 3.859 + 4.7094, + 3.311, + 6.1079, + 3.311, + 6.1079, + 3.8534, + 4.7165, + 3.8534 ], "elements": [ "#/readResults/0/lines/16/words/0" @@ -1221,19 +1260,45 @@ "columnIndex": 5, "text": "PT", "boundingBox": [ - 6.1051, - 3.3219, - 7.5038, - 3.3219, - 7.5038, - 3.859, - 6.1051, - 3.859 + 6.1079, + 3.311, + 7.4922, + 3.311, + 7.4922, + 3.6393, + 6.1079, + 3.6393 ], "elements": [ "#/readResults/0/lines/17/words/0" ] + }, + { + "rowIndex": 2, + "columnIndex": 5, + "text": "", + "boundingBox": [ + 6.1079, + 3.6393, + 7.4922, + 3.6393, + 7.4922, + 3.8534, + 6.1079, + 3.8534 + ], + "elements": [] } + ], + "boundingBox": [ + 0.4985, + 2.7802, + 7.4933, + 2.7816, + 7.4913, + 3.8459, + 0.4966, + 3.8447 ] } ] @@ -1245,7 +1310,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1963836148" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentThrowsForDamagedFile.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentThrowsForDamagedFile.json index 839ebb2b3b93d..a6e9d3c274cbd 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentThrowsForDamagedFile.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentThrowsForDamagedFile.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "7", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9d7f33c15b20a54b9d3c8556ab7370aa-24f904ab6b5a394a-00", + "traceparent": "00-c4e99235f8671743b2d5d19f6da0c11d-e59a3179fa1e7340-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4f12a39c2e25754c898fc0118dad94f6", "x-ms-return-client-request-id": "true" @@ -19,10 +19,10 @@ "RequestBody": "JVBERlVVVQ==", "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "151ae9dc-6cce-4c72-86f2-322f84f440a2", - "Content-Length": "104", + "apim-request-id": "8f7420cf-e609-4fcf-86d7-521d213c6716", + "Content-Length": "270", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:31 GMT", + "Date": "Fri, 30 Oct 2020 12:50:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "4" @@ -30,14 +30,14 @@ "ResponseBody": { "error": { "code": "InvalidImage", - "message": "The input data is not a valid image or password protected." + "message": "The file submitted couldn\u0027t be parsed. This can be due to one of the following reasons: the file format is not supported ( Supported formats include JPEG, PNG, BMP, PDF and TIFF), the file is corrupted or password protected." } } } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1402749806" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentThrowsForDamagedFileAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentThrowsForDamagedFileAsync.json index 93feeb4d271e7..7e769c93b5905 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentThrowsForDamagedFileAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentThrowsForDamagedFileAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "7", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d568f562538971439c1b2731123da83e-70e8e6b453dceb45-00", + "traceparent": "00-d09ca7551c473145a541f20a7b070f47-4aa5e446b513824a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1a96039add4c15f6353ec7154c8a5229", "x-ms-return-client-request-id": "true" @@ -19,25 +19,25 @@ "RequestBody": "JVBERlVVVQ==", "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "e60ce567-8ab3-4b9f-bd83-842acf8e21d9", - "Content-Length": "104", + "apim-request-id": "fd6a6e92-d2f9-4d96-8763-7557fb2639db", + "Content-Length": "270", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:23 GMT", + "Date": "Fri, 30 Oct 2020 12:56:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { "code": "InvalidImage", - "message": "The input data is not a valid image or password protected." + "message": "The file submitted couldn\u0027t be parsed. This can be due to one of the following reasons: the file format is not supported ( Supported formats include JPEG, PNG, BMP, PDF and TIFF), the file is corrupted or password protected." } } } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "842876107" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(False).json index 707123254724f..e74520091a4b3 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(False).json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-86d3b150a272cb48ba4fe8a9284671fd-2a314872216e1e41-00", + "traceparent": "00-6c321efe270c3f40b0aa78f813182e10-af451da9fdbb2540-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "369536c3adcad4d896a6c15a3ba36ef9", @@ -21,24 +21,24 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a24dbf3b-3419-42ff-92c6-f86ba108cd43", + "apim-request-id": "5230fab7-2cdb-44d5-89f7-eb2782f47c41", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 20:23:43 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a24dbf3b-3419-42ff-92c6-f86ba108cd43", + "Date": "Fri, 30 Oct 2020 12:51:49 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/5230fab7-2cdb-44d5-89f7-eb2782f47c41", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "423" + "x-envoy-upstream-service-time": "586" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a24dbf3b-3419-42ff-92c6-f86ba108cd43", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/5230fab7-2cdb-44d5-89f7-eb2782f47c41", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "31eced7b31987ead575984d3eb32e867", @@ -47,28 +47,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ede313cc-8375-4585-96b3-133504c7e1d0", + "apim-request-id": "ddff9291-7435-491d-b755-fa061f43dbcd", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:23:44 GMT", + "Date": "Fri, 30 Oct 2020 12:51:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T20:23:44Z", - "lastUpdatedDateTime": "2020-10-16T20:23:44Z" + "createdDateTime": "2020-10-30T12:51:50Z", + "lastUpdatedDateTime": "2020-10-30T12:51:50Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a24dbf3b-3419-42ff-92c6-f86ba108cd43", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/5230fab7-2cdb-44d5-89f7-eb2782f47c41", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "168ac53949d138e4ac72e6e4ffc504a8", @@ -77,28 +77,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "78c71530-4ce6-44a7-ba82-250076f97132", + "apim-request-id": "f6fd1764-e9af-45fd-8a1d-ca2aeef58eaa", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:23:45 GMT", + "Date": "Fri, 30 Oct 2020 12:51:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T20:23:44Z", - "lastUpdatedDateTime": "2020-10-16T20:23:44Z" + "createdDateTime": "2020-10-30T12:51:50Z", + "lastUpdatedDateTime": "2020-10-30T12:51:50Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a24dbf3b-3419-42ff-92c6-f86ba108cd43", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/5230fab7-2cdb-44d5-89f7-eb2782f47c41", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eb9e4878731e921d8916de712805e963", @@ -107,28 +107,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4afd96bf-c446-4679-ba1c-1491348b66ee", + "apim-request-id": "622c31cf-96f3-47fe-a903-873a0f5fd4e1", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:23:46 GMT", + "Date": "Fri, 30 Oct 2020 12:51:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T20:23:44Z", - "lastUpdatedDateTime": "2020-10-16T20:23:44Z" + "createdDateTime": "2020-10-30T12:51:50Z", + "lastUpdatedDateTime": "2020-10-30T12:51:50Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a24dbf3b-3419-42ff-92c6-f86ba108cd43", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/5230fab7-2cdb-44d5-89f7-eb2782f47c41", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "762059be5718322708b484254ac87f92", @@ -137,28 +137,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1642304e-92c3-433c-b560-18689265404e", + "apim-request-id": "c6f4299b-fd2f-4a96-9ed4-c6b75e795915", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:23:47 GMT", + "Date": "Fri, 30 Oct 2020 12:51:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T20:23:44Z", - "lastUpdatedDateTime": "2020-10-16T20:23:44Z" + "createdDateTime": "2020-10-30T12:51:50Z", + "lastUpdatedDateTime": "2020-10-30T12:51:50Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a24dbf3b-3419-42ff-92c6-f86ba108cd43", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/5230fab7-2cdb-44d5-89f7-eb2782f47c41", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a35adc55fc94c649a7f88dbb6a730fa7", @@ -167,78 +167,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f8095b70-3bcd-468c-b505-637e38d5d094", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:23:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-10-16T20:23:44Z", - "lastUpdatedDateTime": "2020-10-16T20:23:44Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a24dbf3b-3419-42ff-92c6-f86ba108cd43", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a52682898da4218f206ce269eef848c1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5796e9e0-fe8b-4188-b335-4a85da1ac567", - "Content-Length": "106", + "apim-request-id": "3525a4b8-d514-431b-a1f0-eabbc0b371be", + "Content-Length": "33902", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:23:49 GMT", + "Date": "Fri, 30 Oct 2020 12:51:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-10-16T20:23:44Z", - "lastUpdatedDateTime": "2020-10-16T20:23:44Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a24dbf3b-3419-42ff-92c6-f86ba108cd43", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4c1c4c9745aac2cf105ace20ca6cc795", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "34ff6739-93cd-4c04-8144-e8f7b3e962ba", - "Content-Length": "34588", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:23:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-10-16T20:23:44Z", - "lastUpdatedDateTime": "2020-10-16T20:23:50Z", + "createdDateTime": "2020-10-30T12:51:50Z", + "lastUpdatedDateTime": "2020-10-30T12:51:54Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -249,6 +189,41 @@ "height": 11, "unit": "inch", "lines": [ + { + "boundingBox": [ + 0.5301, + 0.697, + 2.3829, + 0.7018, + 2.3829, + 1.3034, + 0.5301, + 1.2986 + ], + "text": "Contoso", + "appearance": { + "style": { + "name": "other", + "confidence": 0.899 + } + }, + "words": [ + { + "boundingBox": [ + 0.5348, + 0.7066, + 2.3876, + 0.826, + 2.3781, + 1.1888, + 0.5587, + 1.3034 + ], + "text": "Contoso", + "confidence": 0.952 + } + ] + }, { "boundingBox": [ 3.2791, @@ -261,6 +236,12 @@ 0.8109 ], "text": "STATE OF CALIFORNIA: CONTOSO", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -320,35 +301,6 @@ } ] }, - { - "boundingBox": [ - 0.5367, - 0.7, - 2.3833, - 0.7067, - 2.38, - 1.2967, - 0.5367, - 1.2933 - ], - "text": "Contoso", - "words": [ - { - "boundingBox": [ - 0.576, - 0.7124, - 2.3577, - 0.8224, - 2.3498, - 1.1995, - 0.6019, - 1.2967 - ], - "text": "Contoso", - "confidence": 0.973 - } - ] - }, { "boundingBox": [ 3.4183, @@ -361,6 +313,12 @@ 0.9561 ], "text": "BUREAU OF INSURANCE", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -418,6 +376,12 @@ 1.1001 ], "text": "124 Main Street Palo Alto CA 842325", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -531,6 +495,12 @@ 1.2694 ], "text": "(650)768-2322", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -560,6 +530,12 @@ 2.333 ], "text": "AUTHORIZATION OF CREDIT CARD PAYMENT", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -635,44 +611,50 @@ }, { "boundingBox": [ - 3.3533, - 3.0267, - 5.1867, - 3.0267, - 5.1867, - 3.2267, - 3.3533, - 3.23 + 3.3522, + 3.0269, + 5.186, + 3.0269, + 5.186, + 3.2274, + 3.3522, + 3.2274 ], "text": "CONTOSO BANK", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ - 3.3563, - 3.0304, - 4.5105, - 3.0286, - 4.5106, - 3.2286, - 3.3624, - 3.2333 + 3.357, + 3.0317, + 4.5126, + 3.0269, + 4.5126, + 3.2274, + 3.3618, + 3.2322 ], "text": "CONTOSO", "confidence": 0.985 }, { "boundingBox": [ - 4.5508, - 3.0286, - 5.1816, - 3.0301, - 5.1782, - 3.2286, - 4.5507, - 3.2286 + 4.5556, + 3.0269, + 5.186, + 3.0317, + 5.186, + 3.2274, + 4.5556, + 3.2274 ], "text": "BANK", - "confidence": 0.987 + "confidence": 0.986 } ] }, @@ -688,6 +670,12 @@ 3.6446 ], "text": "Fees owed to this Department may be paid by the use of a credit card. If you wish to pay your fee(s)", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1011,6 +999,12 @@ 3.8101 ], "text": "with your credit card, please complete this form and send it with your paperwork. Payment through", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1250,6 +1244,12 @@ 3.9764 ], "text": "credit cards will not be processed without this authorization form. Please print or type clearly.", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1475,6 +1475,12 @@ 4.3316 ], "text": "Name (company/individual for whom payment is being made) (Please Include License # and SSN/FEIN):", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1577,9 +1583,9 @@ { "boundingBox": [ 4.1727, - 4.2083, + 4.2082, 4.5281, - 4.2083, + 4.2082, 4.5281, 4.3259, 4.1727, @@ -1591,9 +1597,9 @@ { "boundingBox": [ 4.5718, - 4.2083, + 4.2082, 5.0014, - 4.2083, + 4.2082, 5.0014, 4.3259, 4.5718, @@ -1686,6 +1692,12 @@ 4.4867 ], "text": "Contoso Insurance 54353T7A, 36-1222985", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1757,6 +1769,12 @@ 5.068 ], "text": "Purpose of Payment:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1814,6 +1832,12 @@ 5.034 ], "text": "Balance on Account", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1871,6 +1895,12 @@ 5.5929 ], "text": "Card Type: \u2751Visa", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1928,6 +1958,12 @@ 5.5922 ], "text": "\u2751x AMEX", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1971,6 +2007,12 @@ 5.6108 ], "text": "\u2751Master Card", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2014,6 +2056,12 @@ 5.8125 ], "text": "Name of Cardholder:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2071,6 +2119,12 @@ 5.8923 ], "text": "John Singer", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2114,6 +2168,12 @@ 5.8091 ], "text": "Contact persons phone #, if questions with this", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2241,6 +2301,12 @@ 5.9847 ], "text": "form. Telephone #: (", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2312,6 +2378,12 @@ 5.9672 ], "text": "425", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2341,6 +2413,12 @@ 5.9847 ], "text": ")", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2358,35 +2436,6 @@ } ] }, - { - "boundingBox": [ - 7.3783, - 5.9042, - 7.4157, - 5.9042, - 7.4157, - 5.918, - 7.3783, - 5.918 - ], - "text": "-", - "words": [ - { - "boundingBox": [ - 7.3783, - 5.9042, - 7.4157, - 5.9042, - 7.4157, - 5.918, - 7.3783, - 5.918 - ], - "text": "-", - "confidence": 1 - } - ] - }, { "boundingBox": [ 7.1288, @@ -2399,6 +2448,12 @@ 5.9672 ], "text": "779 3479", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2430,6 +2485,41 @@ } ] }, + { + "boundingBox": [ + 7.3783, + 5.9042, + 7.4157, + 5.9042, + 7.4157, + 5.918, + 7.3783, + 5.918 + ], + "text": "-", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, + "words": [ + { + "boundingBox": [ + 7.3783, + 5.9042, + 7.4157, + 5.9042, + 7.4157, + 5.918, + 7.3783, + 5.918 + ], + "text": "-", + "confidence": 1 + } + ] + }, { "boundingBox": [ 0.8964, @@ -2442,6 +2532,12 @@ 6.1393 ], "text": "Email Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2485,6 +2581,12 @@ 6.1753 ], "text": "johnsinger@hotmail.com", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2514,6 +2616,12 @@ 6.4101 ], "text": "Mailing Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2557,6 +2665,12 @@ 6.4186 ], "text": "472 SE 74th ST", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2628,6 +2742,12 @@ 6.6721 ], "text": "City:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2657,6 +2777,12 @@ 6.6774 ], "text": "Lakewood", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2686,6 +2812,12 @@ 6.645 ], "text": "State:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2715,6 +2847,12 @@ 6.6518 ], "text": "WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2744,6 +2882,12 @@ 6.6712 ], "text": "Zip Code:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2787,6 +2931,12 @@ 6.6473 ], "text": "98712", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2816,6 +2966,12 @@ 7.1067 ], "text": "I authorize Contoso Department of Professional and Financial Regulation, Bureau of Insurance", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2999,6 +3155,12 @@ 7.2983 ], "text": "to charge my: Visa", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3070,6 +3232,12 @@ 7.9603 ], "text": "4872876432425423", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3099,6 +3267,12 @@ 8.0411 ], "text": "Expiration date:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3142,6 +3316,12 @@ 7.9982 ], "text": "09", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3171,6 +3351,12 @@ 8.012 ], "text": "/", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3200,6 +3386,12 @@ 8.0002 ], "text": "21", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3229,6 +3421,12 @@ 8.0289 ], "text": "in the amount of: $__________________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3314,6 +3512,12 @@ 7.9962 ], "text": "263.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3343,6 +3547,12 @@ 8.0307 ], "text": "____________________________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3372,6 +3582,12 @@ 8.1896 ], "text": "(Card number \u2013 Please print clearly)", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3461,44 +3677,50 @@ }, { "boundingBox": [ - 1.89, - 8.26, - 3.2367, - 8.27, - 3.2333, - 8.5567, - 1.89, - 8.5533 + 1.8862, + 8.2595, + 3.2329, + 8.2691, + 3.2329, + 8.5556, + 1.8862, + 8.5508 ], "text": "John Singer", + "appearance": { + "style": { + "name": "handwriting", + "confidence": 0.848 + } + }, "words": [ { "boundingBox": [ - 1.9698, - 8.2645, - 2.519, - 8.2845, - 2.5195, - 8.5409, - 1.9695, - 8.5567 + 1.9674, + 8.2643, + 2.5166, + 8.2834, + 2.5166, + 8.5412, + 1.9674, + 8.5556 ], "text": "John", - "confidence": 0.97 + "confidence": 0.979 }, { "boundingBox": [ - 2.5778, - 8.2865, - 3.2251, - 8.3065, - 3.2268, - 8.5309, - 2.5784, - 8.5396 + 2.5739, + 8.2834, + 3.2233, + 8.3073, + 3.2233, + 8.5317, + 2.5787, + 8.5412 ], "text": "Singer", - "confidence": 0.948 + "confidence": 0.945 } ] }, @@ -3506,14 +3728,20 @@ "boundingBox": [ 0.8059, 8.3968, - 6.1697, + 5.2429, 8.3968, - 6.1697, + 5.2429, 8.5421, 0.8059, 8.5421 ], - "text": "Signature: ___________________________________________ Date: ______", + "text": "Signature: ___________________________________________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3542,34 +3770,6 @@ ], "text": "___________________________________________", "confidence": 1 - }, - { - "boundingBox": [ - 5.2557, - 8.3997, - 5.6041, - 8.3997, - 5.6041, - 8.5111, - 5.2557, - 8.5111 - ], - "text": "Date:", - "confidence": 1 - }, - { - "boundingBox": [ - 5.66, - 8.5205, - 6.1697, - 8.5205, - 6.1697, - 8.5281, - 5.66, - 8.5281 - ], - "text": "______", - "confidence": 1 } ] }, @@ -3585,6 +3785,12 @@ 8.4835 ], "text": "08", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3602,35 +3808,6 @@ } ] }, - { - "boundingBox": [ - 6.1674, - 8.3968, - 6.2149, - 8.3968, - 6.2149, - 8.5119, - 6.1674, - 8.5119 - ], - "text": "/", - "words": [ - { - "boundingBox": [ - 6.1674, - 8.3968, - 6.2149, - 8.3968, - 6.2149, - 8.5119, - 6.1674, - 8.5119 - ], - "text": "/", - "confidence": 1 - } - ] - }, { "boundingBox": [ 6.5359, @@ -3643,6 +3820,12 @@ 8.4716 ], "text": "23", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3660,35 +3843,6 @@ } ] }, - { - "boundingBox": [ - 6.7199, - 8.3968, - 6.7673, - 8.3968, - 6.7673, - 8.5119, - 6.7199, - 8.5119 - ], - "text": "/", - "words": [ - { - "boundingBox": [ - 6.7199, - 8.3968, - 6.7673, - 8.3968, - 6.7673, - 8.5119, - 6.7199, - 8.5119 - ], - "text": "/", - "confidence": 1 - } - ] - }, { "boundingBox": [ 7.0358, @@ -3701,6 +3855,12 @@ 8.4715 ], "text": "2018", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3720,58 +3880,35 @@ }, { "boundingBox": [ - 6.2125, + 5.66, 8.5205, - 6.7221, + 6.1697, 8.5205, - 6.7221, + 6.1697, 8.5281, - 6.2125, + 5.66, 8.5281 ], "text": "______", - "words": [ - { - "boundingBox": [ - 6.2125, - 8.5205, - 6.7221, - 8.5205, - 6.7221, - 8.5281, - 6.2125, - 8.5281 - ], - "text": "______", + "appearance": { + "style": { + "name": "other", "confidence": 1 } - ] - }, - { - "boundingBox": [ - 6.7649, - 8.5205, - 7.4445, - 8.5205, - 7.4445, - 8.5281, - 6.7649, - 8.5281 - ], - "text": "________", + }, "words": [ { "boundingBox": [ - 6.7649, + 5.66, 8.5205, - 7.4445, + 6.1697, 8.5205, - 7.4445, + 6.1697, 8.5281, - 6.7649, + 5.66, 8.5281 ], - "text": "________", + "text": "______", "confidence": 1 } ] @@ -3788,6 +3925,12 @@ 8.7284 ], "text": "(must be signed by authorized person to validate)", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3915,6 +4058,12 @@ 9.2816 ], "text": "Form is available on our website: www.contoso.com/insurance You may fax the form to:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4112,6 +4261,12 @@ 9.4677 ], "text": "650-768-2322 or e-mail to: insurance@contoso.com", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4197,6 +4352,12 @@ 9.8468 ], "text": "OFFICES LOCATED AT 24 Main Street Palo Alto CA 842325", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4352,6 +4513,12 @@ 9.9709 ], "text": "www.contoso.com/insurance", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4373,114 +4540,44 @@ "selectionMarks": [ { "boundingBox": [ - 3.0724, - 5.4394, - 3.2498, - 5.4394, - 3.2498, - 5.6098, - 3.0724, - 5.6098 - ], - "confidence": 0.991, - "state": "unselected" - }, - { - "boundingBox": [ - 1.6064, - 5.4233, - 1.7774, - 5.4233, - 1.7774, - 5.5937, - 1.6064, - 5.5937 + 1.6159, + 5.4302, + 1.7762, + 5.4302, + 1.7762, + 5.5929, + 1.6159, + 5.5929 ], - "confidence": 0.99, + "confidence": 1, "state": "unselected" }, { "boundingBox": [ - 2.2849, - 5.4179, - 2.4652, - 5.4179, - 2.4652, - 5.5969, - 2.2849, - 5.5969 + 2.3779, + 5.4731, + 2.4454, + 5.4731, + 2.4454, + 5.5463, + 2.3779, + 5.5463 ], - "confidence": 0.881, + "confidence": 1, "state": "selected" }, { "boundingBox": [ - 0, - 10.296, - 1.0459, - 10.296, - 1.0459, - 10.9982, - 0, - 10.9982 - ], - "confidence": 0.833, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.6052, - 1.5019, - 10.6052, - 1.5019, - 11.0, - 0, - 11.0 - ], - "confidence": 0.69, - "state": "unselected" - }, - { - "boundingBox": [ - 2.2887, - 5.4204, - 2.4633, - 5.4204, - 2.4633, - 5.5937, - 2.2887, - 5.5937 - ], - "confidence": 0.609, - "state": "unselected" - }, - { - "boundingBox": [ - 3.3758, - 5.6907, - 4.9999, - 5.6907, - 4.9999, - 5.9387, - 3.3758, - 5.9387 - ], - "confidence": 0.553, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.7248, - 0.539, - 10.7248, - 0.539, - 11, - 0, - 11 + 3.0846, + 5.4481, + 3.2448, + 5.4481, + 3.2448, + 5.6108, + 3.0846, + 5.6108 ], - "confidence": 0.553, + "confidence": 1, "state": "unselected" } ] @@ -4489,172 +4586,7 @@ "pageResults": [ { "page": 1, - "tables": [ - { - "rows": 4, - "columns": 4, - "cells": [ - { - "rowIndex": 0, - "columnIndex": 0, - "text": "Name of Cardholder: John Singer", - "boundingBox": [ - 0.8104, - 5.6546, - 4.1554, - 5.6546, - 4.1554, - 5.9962, - 0.8104, - 5.9962 - ], - "elements": [ - "#/readResults/0/lines/17/words/0", - "#/readResults/0/lines/17/words/1", - "#/readResults/0/lines/17/words/2", - "#/readResults/0/lines/18/words/0", - "#/readResults/0/lines/18/words/1" - ] - }, - { - "rowIndex": 0, - "columnIndex": 2, - "columnSpan": 2, - "text": "Contact persons phone #, if questions with this form. Telephone #: ( ) - 425 779 3479", - "boundingBox": [ - 5.1496, - 5.6546, - 8.2604, - 5.6546, - 8.2604, - 5.9962, - 5.1496, - 5.9962 - ], - "elements": [ - "#/readResults/0/lines/19/words/0", - "#/readResults/0/lines/19/words/1", - "#/readResults/0/lines/19/words/2", - "#/readResults/0/lines/19/words/3", - "#/readResults/0/lines/19/words/4", - "#/readResults/0/lines/19/words/5", - "#/readResults/0/lines/19/words/6", - "#/readResults/0/lines/19/words/7", - "#/readResults/0/lines/20/words/0", - "#/readResults/0/lines/20/words/1", - "#/readResults/0/lines/20/words/2", - "#/readResults/0/lines/20/words/3", - "#/readResults/0/lines/22/words/0", - "#/readResults/0/lines/23/words/0", - "#/readResults/0/lines/21/words/0", - "#/readResults/0/lines/24/words/0", - "#/readResults/0/lines/24/words/1" - ] - }, - { - "rowIndex": 1, - "columnIndex": 0, - "text": "Email Address: johnsinger@hotmail.com", - "boundingBox": [ - 0.8104, - 5.9962, - 4.1554, - 5.9962, - 4.1554, - 6.2262, - 0.8104, - 6.2262 - ], - "elements": [ - "#/readResults/0/lines/25/words/0", - "#/readResults/0/lines/25/words/1", - "#/readResults/0/lines/26/words/0" - ] - }, - { - "rowIndex": 2, - "columnIndex": 0, - "text": "Mailing Address: 472 SE 74th ST", - "boundingBox": [ - 0.8104, - 6.2262, - 4.1554, - 6.2262, - 4.1554, - 6.5021, - 0.8104, - 6.5021 - ], - "elements": [ - "#/readResults/0/lines/27/words/0", - "#/readResults/0/lines/27/words/1", - "#/readResults/0/lines/28/words/0", - "#/readResults/0/lines/28/words/1", - "#/readResults/0/lines/28/words/2", - "#/readResults/0/lines/28/words/3" - ] - }, - { - "rowIndex": 3, - "columnIndex": 0, - "text": "City: Lakewood", - "boundingBox": [ - 0.8104, - 6.5021, - 4.1554, - 6.5021, - 4.1554, - 6.7146, - 0.8104, - 6.7146 - ], - "elements": [ - "#/readResults/0/lines/29/words/0", - "#/readResults/0/lines/30/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 1, - "text": "State: WA", - "boundingBox": [ - 4.1554, - 6.5021, - 5.1496, - 6.5021, - 5.1496, - 6.7146, - 4.1554, - 6.7146 - ], - "elements": [ - "#/readResults/0/lines/31/words/0", - "#/readResults/0/lines/32/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 3, - "text": "Zip Code: 98712", - "boundingBox": [ - 6.4104, - 6.5021, - 8.2604, - 6.5021, - 8.2604, - 6.7146, - 6.4104, - 6.7146 - ], - "elements": [ - "#/readResults/0/lines/33/words/0", - "#/readResults/0/lines/33/words/1", - "#/readResults/0/lines/34/words/0" - ] - } - ] - } - ] + "tables": [] } ] } @@ -4663,7 +4595,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "996624128" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(False)Async.json index 188152f516d88..9e51cb8399ab8 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(False)Async.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1ec74ad6abfb6a44ba7356c9c65b763a-8042da055668d44d-00", + "traceparent": "00-69c421bfe15d0b48a769dfb42c477d54-fea506a09df77641-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "08a5a26f353874140e76795a33cc673e", @@ -21,24 +21,24 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "0febf5cb-e78e-4f12-94a3-7c220130ec98", + "apim-request-id": "fafc0695-7c41-4ef2-904b-69ae7ad5edb0", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 20:23:58 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0febf5cb-e78e-4f12-94a3-7c220130ec98", + "Date": "Fri, 30 Oct 2020 12:58:07 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/fafc0695-7c41-4ef2-904b-69ae7ad5edb0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "246" + "x-envoy-upstream-service-time": "629" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0febf5cb-e78e-4f12-94a3-7c220130ec98", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/fafc0695-7c41-4ef2-904b-69ae7ad5edb0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3eba08152300fc5f4fa9dada2963feb8", @@ -47,28 +47,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "403b1a1b-331a-4670-86dc-43d31a05a4c5", + "apim-request-id": "17e954dc-b54d-4490-b2c7-d882c4730ab0", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:23:58 GMT", + "Date": "Fri, 30 Oct 2020 12:58:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T20:23:58Z", - "lastUpdatedDateTime": "2020-10-16T20:23:58Z" + "createdDateTime": "2020-10-30T12:58:07Z", + "lastUpdatedDateTime": "2020-10-30T12:58:07Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0febf5cb-e78e-4f12-94a3-7c220130ec98", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/fafc0695-7c41-4ef2-904b-69ae7ad5edb0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ee3e2f2112e709ad01195cfbd37f987f", @@ -77,28 +77,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "268457fd-f79e-4b63-bbc9-141c55a4eff0", + "apim-request-id": "6126690d-f47d-433b-809e-96df30998fcc", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:23:59 GMT", + "Date": "Fri, 30 Oct 2020 12:58:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T20:23:58Z", - "lastUpdatedDateTime": "2020-10-16T20:23:58Z" + "createdDateTime": "2020-10-30T12:58:07Z", + "lastUpdatedDateTime": "2020-10-30T12:58:07Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0febf5cb-e78e-4f12-94a3-7c220130ec98", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/fafc0695-7c41-4ef2-904b-69ae7ad5edb0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5801630dfc3d4b0c42a9b88e5a394baa", @@ -107,28 +107,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9a5f6b28-f8ef-4e33-8aed-f6ac32c15cdd", + "apim-request-id": "528c6a3b-e2ef-44ea-88c0-5baa327d2a12", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:24:00 GMT", + "Date": "Fri, 30 Oct 2020 12:58:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T20:23:58Z", - "lastUpdatedDateTime": "2020-10-16T20:23:58Z" + "createdDateTime": "2020-10-30T12:58:07Z", + "lastUpdatedDateTime": "2020-10-30T12:58:07Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0febf5cb-e78e-4f12-94a3-7c220130ec98", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/fafc0695-7c41-4ef2-904b-69ae7ad5edb0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0339c178788e02575bb03ce6c66429d0", @@ -137,138 +137,48 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a63bc477-65e1-42ab-9352-6a0e5c384525", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:24:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-10-16T20:23:58Z", - "lastUpdatedDateTime": "2020-10-16T20:23:58Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0febf5cb-e78e-4f12-94a3-7c220130ec98", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c5cc5b10a561247b23f2ac3d5a1eafc8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cad66f5a-e8b1-4772-aa35-2935601146e7", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:24:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-10-16T20:23:58Z", - "lastUpdatedDateTime": "2020-10-16T20:23:58Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0febf5cb-e78e-4f12-94a3-7c220130ec98", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1282b1ce954594f10cfefd8cbf2584de", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "22ef3f01-aea0-49eb-9cb5-42de71f203b6", + "apim-request-id": "d5b36f9c-ae13-42d8-8330-1a8d5fd7e364", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:24:03 GMT", + "Date": "Fri, 30 Oct 2020 12:58:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T20:23:58Z", - "lastUpdatedDateTime": "2020-10-16T20:23:58Z" + "createdDateTime": "2020-10-30T12:58:07Z", + "lastUpdatedDateTime": "2020-10-30T12:58:07Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0febf5cb-e78e-4f12-94a3-7c220130ec98", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/fafc0695-7c41-4ef2-904b-69ae7ad5edb0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ff7ee780866dd3494614e09bcc19a83c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9fc68069-795d-49e0-8369-34ec8b171874", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:24:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-10-16T20:23:58Z", - "lastUpdatedDateTime": "2020-10-16T20:23:58Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/0febf5cb-e78e-4f12-94a3-7c220130ec98", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1518740016e17b8b6937b863a7ee65fd", + "x-ms-client-request-id": "c5cc5b10a561247b23f2ac3d5a1eafc8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eb73d754-321c-4e2c-897f-66ec2a6d5103", - "Content-Length": "34588", + "apim-request-id": "1e420b74-b2ca-4901-a181-e7e0eb754d11", + "Content-Length": "33902", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 20:24:06 GMT", + "Date": "Fri, 30 Oct 2020 12:58:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-10-16T20:23:58Z", - "lastUpdatedDateTime": "2020-10-16T20:24:05Z", + "createdDateTime": "2020-10-30T12:58:07Z", + "lastUpdatedDateTime": "2020-10-30T12:58:12Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -279,6 +189,41 @@ "height": 11, "unit": "inch", "lines": [ + { + "boundingBox": [ + 0.5301, + 0.697, + 2.3829, + 0.7018, + 2.3829, + 1.3034, + 0.5301, + 1.2986 + ], + "text": "Contoso", + "appearance": { + "style": { + "name": "other", + "confidence": 0.899 + } + }, + "words": [ + { + "boundingBox": [ + 0.5348, + 0.7066, + 2.3876, + 0.826, + 2.3781, + 1.1888, + 0.5587, + 1.3034 + ], + "text": "Contoso", + "confidence": 0.952 + } + ] + }, { "boundingBox": [ 3.2791, @@ -291,6 +236,12 @@ 0.8109 ], "text": "STATE OF CALIFORNIA: CONTOSO", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -350,35 +301,6 @@ } ] }, - { - "boundingBox": [ - 0.5367, - 0.7, - 2.3833, - 0.7067, - 2.38, - 1.2967, - 0.5367, - 1.2933 - ], - "text": "Contoso", - "words": [ - { - "boundingBox": [ - 0.576, - 0.7124, - 2.3577, - 0.8224, - 2.3498, - 1.1995, - 0.6019, - 1.2967 - ], - "text": "Contoso", - "confidence": 0.973 - } - ] - }, { "boundingBox": [ 3.4183, @@ -391,6 +313,12 @@ 0.9561 ], "text": "BUREAU OF INSURANCE", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -448,6 +376,12 @@ 1.1001 ], "text": "124 Main Street Palo Alto CA 842325", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -561,6 +495,12 @@ 1.2694 ], "text": "(650)768-2322", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -590,6 +530,12 @@ 2.333 ], "text": "AUTHORIZATION OF CREDIT CARD PAYMENT", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -665,44 +611,50 @@ }, { "boundingBox": [ - 3.3533, - 3.0267, - 5.1867, - 3.0267, - 5.1867, - 3.2267, - 3.3533, - 3.23 + 3.3522, + 3.0269, + 5.186, + 3.0269, + 5.186, + 3.2274, + 3.3522, + 3.2274 ], "text": "CONTOSO BANK", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ - 3.3563, - 3.0304, - 4.5105, - 3.0286, - 4.5106, - 3.2286, - 3.3624, - 3.2333 + 3.357, + 3.0317, + 4.5126, + 3.0269, + 4.5126, + 3.2274, + 3.3618, + 3.2322 ], "text": "CONTOSO", "confidence": 0.985 }, { "boundingBox": [ - 4.5508, - 3.0286, - 5.1816, - 3.0301, - 5.1782, - 3.2286, - 4.5507, - 3.2286 + 4.5556, + 3.0269, + 5.186, + 3.0317, + 5.186, + 3.2274, + 4.5556, + 3.2274 ], "text": "BANK", - "confidence": 0.987 + "confidence": 0.986 } ] }, @@ -718,6 +670,12 @@ 3.6446 ], "text": "Fees owed to this Department may be paid by the use of a credit card. If you wish to pay your fee(s)", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1041,6 +999,12 @@ 3.8101 ], "text": "with your credit card, please complete this form and send it with your paperwork. Payment through", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1280,6 +1244,12 @@ 3.9764 ], "text": "credit cards will not be processed without this authorization form. Please print or type clearly.", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1505,6 +1475,12 @@ 4.3316 ], "text": "Name (company/individual for whom payment is being made) (Please Include License # and SSN/FEIN):", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1607,9 +1583,9 @@ { "boundingBox": [ 4.1727, - 4.2083, + 4.2082, 4.5281, - 4.2083, + 4.2082, 4.5281, 4.3259, 4.1727, @@ -1621,9 +1597,9 @@ { "boundingBox": [ 4.5718, - 4.2083, + 4.2082, 5.0014, - 4.2083, + 4.2082, 5.0014, 4.3259, 4.5718, @@ -1716,6 +1692,12 @@ 4.4867 ], "text": "Contoso Insurance 54353T7A, 36-1222985", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1787,6 +1769,12 @@ 5.068 ], "text": "Purpose of Payment:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1844,6 +1832,12 @@ 5.034 ], "text": "Balance on Account", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1901,6 +1895,12 @@ 5.5929 ], "text": "Card Type: \u2751Visa", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1958,6 +1958,12 @@ 5.5922 ], "text": "\u2751x AMEX", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2001,6 +2007,12 @@ 5.6108 ], "text": "\u2751Master Card", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2044,6 +2056,12 @@ 5.8125 ], "text": "Name of Cardholder:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2101,6 +2119,12 @@ 5.8923 ], "text": "John Singer", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2144,6 +2168,12 @@ 5.8091 ], "text": "Contact persons phone #, if questions with this", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2271,6 +2301,12 @@ 5.9847 ], "text": "form. Telephone #: (", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2342,6 +2378,12 @@ 5.9672 ], "text": "425", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2371,6 +2413,12 @@ 5.9847 ], "text": ")", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2388,35 +2436,6 @@ } ] }, - { - "boundingBox": [ - 7.3783, - 5.9042, - 7.4157, - 5.9042, - 7.4157, - 5.918, - 7.3783, - 5.918 - ], - "text": "-", - "words": [ - { - "boundingBox": [ - 7.3783, - 5.9042, - 7.4157, - 5.9042, - 7.4157, - 5.918, - 7.3783, - 5.918 - ], - "text": "-", - "confidence": 1 - } - ] - }, { "boundingBox": [ 7.1288, @@ -2429,6 +2448,12 @@ 5.9672 ], "text": "779 3479", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2460,6 +2485,41 @@ } ] }, + { + "boundingBox": [ + 7.3783, + 5.9042, + 7.4157, + 5.9042, + 7.4157, + 5.918, + 7.3783, + 5.918 + ], + "text": "-", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, + "words": [ + { + "boundingBox": [ + 7.3783, + 5.9042, + 7.4157, + 5.9042, + 7.4157, + 5.918, + 7.3783, + 5.918 + ], + "text": "-", + "confidence": 1 + } + ] + }, { "boundingBox": [ 0.8964, @@ -2472,6 +2532,12 @@ 6.1393 ], "text": "Email Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2515,6 +2581,12 @@ 6.1753 ], "text": "johnsinger@hotmail.com", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2544,6 +2616,12 @@ 6.4101 ], "text": "Mailing Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2587,6 +2665,12 @@ 6.4186 ], "text": "472 SE 74th ST", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2658,6 +2742,12 @@ 6.6721 ], "text": "City:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2687,6 +2777,12 @@ 6.6774 ], "text": "Lakewood", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2716,6 +2812,12 @@ 6.645 ], "text": "State:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2745,6 +2847,12 @@ 6.6518 ], "text": "WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2774,6 +2882,12 @@ 6.6712 ], "text": "Zip Code:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2817,6 +2931,12 @@ 6.6473 ], "text": "98712", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2846,6 +2966,12 @@ 7.1067 ], "text": "I authorize Contoso Department of Professional and Financial Regulation, Bureau of Insurance", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3029,6 +3155,12 @@ 7.2983 ], "text": "to charge my: Visa", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3100,6 +3232,12 @@ 7.9603 ], "text": "4872876432425423", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3129,6 +3267,12 @@ 8.0411 ], "text": "Expiration date:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3172,6 +3316,12 @@ 7.9982 ], "text": "09", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3201,6 +3351,12 @@ 8.012 ], "text": "/", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3230,6 +3386,12 @@ 8.0002 ], "text": "21", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3259,6 +3421,12 @@ 8.0289 ], "text": "in the amount of: $__________________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3344,6 +3512,12 @@ 7.9962 ], "text": "263.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3373,6 +3547,12 @@ 8.0307 ], "text": "____________________________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3402,6 +3582,12 @@ 8.1896 ], "text": "(Card number \u2013 Please print clearly)", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3491,44 +3677,50 @@ }, { "boundingBox": [ - 1.89, - 8.26, - 3.2367, - 8.27, - 3.2333, - 8.5567, - 1.89, - 8.5533 + 1.8862, + 8.2595, + 3.2329, + 8.2691, + 3.2329, + 8.5556, + 1.8862, + 8.5508 ], "text": "John Singer", + "appearance": { + "style": { + "name": "handwriting", + "confidence": 0.848 + } + }, "words": [ { "boundingBox": [ - 1.9698, - 8.2645, - 2.519, - 8.2845, - 2.5195, - 8.5409, - 1.9695, - 8.5567 + 1.9674, + 8.2643, + 2.5166, + 8.2834, + 2.5166, + 8.5412, + 1.9674, + 8.5556 ], "text": "John", - "confidence": 0.97 + "confidence": 0.979 }, { "boundingBox": [ - 2.5778, - 8.2865, - 3.2251, - 8.3065, - 3.2268, - 8.5309, - 2.5784, - 8.5396 + 2.5739, + 8.2834, + 3.2233, + 8.3073, + 3.2233, + 8.5317, + 2.5787, + 8.5412 ], "text": "Singer", - "confidence": 0.947 + "confidence": 0.945 } ] }, @@ -3536,14 +3728,20 @@ "boundingBox": [ 0.8059, 8.3968, - 6.1697, + 5.2429, 8.3968, - 6.1697, + 5.2429, 8.5421, 0.8059, 8.5421 ], - "text": "Signature: ___________________________________________ Date: ______", + "text": "Signature: ___________________________________________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3572,34 +3770,6 @@ ], "text": "___________________________________________", "confidence": 1 - }, - { - "boundingBox": [ - 5.2557, - 8.3997, - 5.6041, - 8.3997, - 5.6041, - 8.5111, - 5.2557, - 8.5111 - ], - "text": "Date:", - "confidence": 1 - }, - { - "boundingBox": [ - 5.66, - 8.5205, - 6.1697, - 8.5205, - 6.1697, - 8.5281, - 5.66, - 8.5281 - ], - "text": "______", - "confidence": 1 } ] }, @@ -3615,6 +3785,12 @@ 8.4835 ], "text": "08", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3632,35 +3808,6 @@ } ] }, - { - "boundingBox": [ - 6.1674, - 8.3968, - 6.2149, - 8.3968, - 6.2149, - 8.5119, - 6.1674, - 8.5119 - ], - "text": "/", - "words": [ - { - "boundingBox": [ - 6.1674, - 8.3968, - 6.2149, - 8.3968, - 6.2149, - 8.5119, - 6.1674, - 8.5119 - ], - "text": "/", - "confidence": 1 - } - ] - }, { "boundingBox": [ 6.5359, @@ -3673,6 +3820,12 @@ 8.4716 ], "text": "23", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3690,35 +3843,6 @@ } ] }, - { - "boundingBox": [ - 6.7199, - 8.3968, - 6.7673, - 8.3968, - 6.7673, - 8.5119, - 6.7199, - 8.5119 - ], - "text": "/", - "words": [ - { - "boundingBox": [ - 6.7199, - 8.3968, - 6.7673, - 8.3968, - 6.7673, - 8.5119, - 6.7199, - 8.5119 - ], - "text": "/", - "confidence": 1 - } - ] - }, { "boundingBox": [ 7.0358, @@ -3731,6 +3855,12 @@ 8.4715 ], "text": "2018", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3750,58 +3880,35 @@ }, { "boundingBox": [ - 6.2125, + 5.66, 8.5205, - 6.7221, + 6.1697, 8.5205, - 6.7221, + 6.1697, 8.5281, - 6.2125, + 5.66, 8.5281 ], "text": "______", - "words": [ - { - "boundingBox": [ - 6.2125, - 8.5205, - 6.7221, - 8.5205, - 6.7221, - 8.5281, - 6.2125, - 8.5281 - ], - "text": "______", + "appearance": { + "style": { + "name": "other", "confidence": 1 } - ] - }, - { - "boundingBox": [ - 6.7649, - 8.5205, - 7.4445, - 8.5205, - 7.4445, - 8.5281, - 6.7649, - 8.5281 - ], - "text": "________", + }, "words": [ { "boundingBox": [ - 6.7649, + 5.66, 8.5205, - 7.4445, + 6.1697, 8.5205, - 7.4445, + 6.1697, 8.5281, - 6.7649, + 5.66, 8.5281 ], - "text": "________", + "text": "______", "confidence": 1 } ] @@ -3818,6 +3925,12 @@ 8.7284 ], "text": "(must be signed by authorized person to validate)", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3945,6 +4058,12 @@ 9.2816 ], "text": "Form is available on our website: www.contoso.com/insurance You may fax the form to:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4142,6 +4261,12 @@ 9.4677 ], "text": "650-768-2322 or e-mail to: insurance@contoso.com", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4227,6 +4352,12 @@ 9.8468 ], "text": "OFFICES LOCATED AT 24 Main Street Palo Alto CA 842325", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4382,6 +4513,12 @@ 9.9709 ], "text": "www.contoso.com/insurance", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4403,114 +4540,44 @@ "selectionMarks": [ { "boundingBox": [ - 3.0724, - 5.4394, - 3.2498, - 5.4394, - 3.2498, - 5.6098, - 3.0724, - 5.6098 - ], - "confidence": 0.991, - "state": "unselected" - }, - { - "boundingBox": [ - 1.6064, - 5.4233, - 1.7774, - 5.4233, - 1.7774, - 5.5937, - 1.6064, - 5.5937 + 1.6159, + 5.4302, + 1.7762, + 5.4302, + 1.7762, + 5.5929, + 1.6159, + 5.5929 ], - "confidence": 0.99, + "confidence": 1, "state": "unselected" }, { "boundingBox": [ - 2.2849, - 5.4179, - 2.4652, - 5.4179, - 2.4652, - 5.5969, - 2.2849, - 5.5969 + 2.3779, + 5.4731, + 2.4454, + 5.4731, + 2.4454, + 5.5463, + 2.3779, + 5.5463 ], - "confidence": 0.881, + "confidence": 1, "state": "selected" }, { "boundingBox": [ - 0, - 10.296, - 1.0459, - 10.296, - 1.0459, - 10.9982, - 0, - 10.9982 - ], - "confidence": 0.833, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.6052, - 1.5019, - 10.6052, - 1.5019, - 11.0, - 0, - 11.0 - ], - "confidence": 0.69, - "state": "unselected" - }, - { - "boundingBox": [ - 2.2887, - 5.4204, - 2.4633, - 5.4204, - 2.4633, - 5.5937, - 2.2887, - 5.5937 - ], - "confidence": 0.609, - "state": "unselected" - }, - { - "boundingBox": [ - 3.3758, - 5.6907, - 4.9999, - 5.6907, - 4.9999, - 5.9387, - 3.3758, - 5.9387 - ], - "confidence": 0.553, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.7248, - 0.539, - 10.7248, - 0.539, - 11, - 0, - 11 + 3.0846, + 5.4481, + 3.2448, + 5.4481, + 3.2448, + 5.6108, + 3.0846, + 5.6108 ], - "confidence": 0.553, + "confidence": 1, "state": "unselected" } ] @@ -4519,172 +4586,7 @@ "pageResults": [ { "page": 1, - "tables": [ - { - "rows": 4, - "columns": 4, - "cells": [ - { - "rowIndex": 0, - "columnIndex": 0, - "text": "Name of Cardholder: John Singer", - "boundingBox": [ - 0.8104, - 5.6546, - 4.1554, - 5.6546, - 4.1554, - 5.9962, - 0.8104, - 5.9962 - ], - "elements": [ - "#/readResults/0/lines/17/words/0", - "#/readResults/0/lines/17/words/1", - "#/readResults/0/lines/17/words/2", - "#/readResults/0/lines/18/words/0", - "#/readResults/0/lines/18/words/1" - ] - }, - { - "rowIndex": 0, - "columnIndex": 2, - "columnSpan": 2, - "text": "Contact persons phone #, if questions with this form. Telephone #: ( ) - 425 779 3479", - "boundingBox": [ - 5.1496, - 5.6546, - 8.2604, - 5.6546, - 8.2604, - 5.9962, - 5.1496, - 5.9962 - ], - "elements": [ - "#/readResults/0/lines/19/words/0", - "#/readResults/0/lines/19/words/1", - "#/readResults/0/lines/19/words/2", - "#/readResults/0/lines/19/words/3", - "#/readResults/0/lines/19/words/4", - "#/readResults/0/lines/19/words/5", - "#/readResults/0/lines/19/words/6", - "#/readResults/0/lines/19/words/7", - "#/readResults/0/lines/20/words/0", - "#/readResults/0/lines/20/words/1", - "#/readResults/0/lines/20/words/2", - "#/readResults/0/lines/20/words/3", - "#/readResults/0/lines/22/words/0", - "#/readResults/0/lines/23/words/0", - "#/readResults/0/lines/21/words/0", - "#/readResults/0/lines/24/words/0", - "#/readResults/0/lines/24/words/1" - ] - }, - { - "rowIndex": 1, - "columnIndex": 0, - "text": "Email Address: johnsinger@hotmail.com", - "boundingBox": [ - 0.8104, - 5.9962, - 4.1554, - 5.9962, - 4.1554, - 6.2262, - 0.8104, - 6.2262 - ], - "elements": [ - "#/readResults/0/lines/25/words/0", - "#/readResults/0/lines/25/words/1", - "#/readResults/0/lines/26/words/0" - ] - }, - { - "rowIndex": 2, - "columnIndex": 0, - "text": "Mailing Address: 472 SE 74th ST", - "boundingBox": [ - 0.8104, - 6.2262, - 4.1554, - 6.2262, - 4.1554, - 6.5021, - 0.8104, - 6.5021 - ], - "elements": [ - "#/readResults/0/lines/27/words/0", - "#/readResults/0/lines/27/words/1", - "#/readResults/0/lines/28/words/0", - "#/readResults/0/lines/28/words/1", - "#/readResults/0/lines/28/words/2", - "#/readResults/0/lines/28/words/3" - ] - }, - { - "rowIndex": 3, - "columnIndex": 0, - "text": "City: Lakewood", - "boundingBox": [ - 0.8104, - 6.5021, - 4.1554, - 6.5021, - 4.1554, - 6.7146, - 0.8104, - 6.7146 - ], - "elements": [ - "#/readResults/0/lines/29/words/0", - "#/readResults/0/lines/30/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 1, - "text": "State: WA", - "boundingBox": [ - 4.1554, - 6.5021, - 5.1496, - 6.5021, - 5.1496, - 6.7146, - 4.1554, - 6.7146 - ], - "elements": [ - "#/readResults/0/lines/31/words/0", - "#/readResults/0/lines/32/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 3, - "text": "Zip Code: 98712", - "boundingBox": [ - 6.4104, - 6.5021, - 8.2604, - 6.5021, - 8.2604, - 6.7146, - 6.4104, - 6.7146 - ], - "elements": [ - "#/readResults/0/lines/33/words/0", - "#/readResults/0/lines/33/words/1", - "#/readResults/0/lines/34/words/0" - ] - } - ] - } - ] + "tables": [] } ] } @@ -4693,7 +4595,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "136672503" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(True).json index 9541636d0f91a..51e8aac397ea9 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(True).json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "251215", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-71b51b825d18ed438a8462b686218d19-0254ebd07f424a4c-00", + "traceparent": "00-9ae34e1884152a4382eda9bd411896b3-23cdcfda536baa42-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6328e6ceb1225450de39cc6386f4830a", @@ -19,24 +19,24 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6a831792-7a18-4b61-ab20-d6667f8464d7", + "apim-request-id": "f9cc5109-bbf3-4543-b42b-c125cbd33c3b", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:19:03 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/6a831792-7a18-4b61-ab20-d6667f8464d7", + "Date": "Fri, 30 Oct 2020 12:51:42 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/f9cc5109-bbf3-4543-b42b-c125cbd33c3b", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "170" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/6a831792-7a18-4b61-ab20-d6667f8464d7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/f9cc5109-bbf3-4543-b42b-c125cbd33c3b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7659e1ba48c7a92e9e6feb44ebb8985f", @@ -45,28 +45,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5dc0a428-3037-4ea7-9e64-266cc6cf1255", + "apim-request-id": "0be64556-cf82-4808-94ea-351f717762e2", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:03 GMT", + "Date": "Fri, 30 Oct 2020 12:51:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T18:19:03Z", - "lastUpdatedDateTime": "2020-10-16T18:19:03Z" + "createdDateTime": "2020-10-30T12:51:43Z", + "lastUpdatedDateTime": "2020-10-30T12:51:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/6a831792-7a18-4b61-ab20-d6667f8464d7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/f9cc5109-bbf3-4543-b42b-c125cbd33c3b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bace1fdd207af21720a53c3067c11783", @@ -75,28 +75,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "38e9a0fb-9ef6-48df-b4f8-f2faa7f34964", + "apim-request-id": "90571118-bce4-468c-9b1d-aa5f616fa3b1", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:04 GMT", + "Date": "Fri, 30 Oct 2020 12:51:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T18:19:03Z", - "lastUpdatedDateTime": "2020-10-16T18:19:03Z" + "createdDateTime": "2020-10-30T12:51:43Z", + "lastUpdatedDateTime": "2020-10-30T12:51:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/6a831792-7a18-4b61-ab20-d6667f8464d7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/f9cc5109-bbf3-4543-b42b-c125cbd33c3b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "71f6c2a3ba54864ab87ec5b3c50c6825", @@ -105,28 +105,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "787a9cdd-9032-4e6e-a328-4bd5960d18e2", + "apim-request-id": "36cde477-f35b-48b6-a2d1-8f82c7817ca7", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:05 GMT", + "Date": "Fri, 30 Oct 2020 12:51:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T18:19:03Z", - "lastUpdatedDateTime": "2020-10-16T18:19:03Z" + "createdDateTime": "2020-10-30T12:51:43Z", + "lastUpdatedDateTime": "2020-10-30T12:51:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/6a831792-7a18-4b61-ab20-d6667f8464d7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/f9cc5109-bbf3-4543-b42b-c125cbd33c3b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "66866ca1c8269990ca6755210cfd41dc", @@ -135,28 +135,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c0f57b3-3d2a-4a64-b07c-cc976d7a4bb8", + "apim-request-id": "f77fc43e-0799-4ad8-a4c2-dd854edfa1fc", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:06 GMT", + "Date": "Fri, 30 Oct 2020 12:51:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T18:19:03Z", - "lastUpdatedDateTime": "2020-10-16T18:19:03Z" + "createdDateTime": "2020-10-30T12:51:43Z", + "lastUpdatedDateTime": "2020-10-30T12:51:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/6a831792-7a18-4b61-ab20-d6667f8464d7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/f9cc5109-bbf3-4543-b42b-c125cbd33c3b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "29a1685726c2220bd54702fb5b632c14", @@ -165,28 +165,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "93a7209e-b53e-4825-9f2f-5f4ed3154786", + "apim-request-id": "7e8f0c89-c56a-4671-bbb8-44b47f9ed581", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:07 GMT", + "Date": "Fri, 30 Oct 2020 12:51:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T18:19:03Z", - "lastUpdatedDateTime": "2020-10-16T18:19:03Z" + "createdDateTime": "2020-10-30T12:51:43Z", + "lastUpdatedDateTime": "2020-10-30T12:51:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/6a831792-7a18-4b61-ab20-d6667f8464d7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/f9cc5109-bbf3-4543-b42b-c125cbd33c3b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fa8e163cb13ada5c325ca7ed65287aba", @@ -195,78 +195,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d9a9f11-af5e-472d-aaaa-af0acd1a2f8e", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:08 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-10-16T18:19:03Z", - "lastUpdatedDateTime": "2020-10-16T18:19:03Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/6a831792-7a18-4b61-ab20-d6667f8464d7", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5d5ce83d3f6a7b63616490dec5943d67", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a8b733ee-9afa-4483-8af3-fff329b01c47", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-10-16T18:19:03Z", - "lastUpdatedDateTime": "2020-10-16T18:19:03Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/6a831792-7a18-4b61-ab20-d6667f8464d7", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f5e5403a466fa5a20cc6f7657e1dbcac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "221ee33c-7318-49be-b6db-d3f28c169a85", - "Content-Length": "34588", + "apim-request-id": "258374ca-9772-4848-b3da-2ebeab17f61e", + "Content-Length": "33902", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:10 GMT", + "Date": "Fri, 30 Oct 2020 12:51:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-10-16T18:19:03Z", - "lastUpdatedDateTime": "2020-10-16T18:19:10Z", + "createdDateTime": "2020-10-30T12:51:43Z", + "lastUpdatedDateTime": "2020-10-30T12:51:48Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -277,6 +217,41 @@ "height": 11, "unit": "inch", "lines": [ + { + "boundingBox": [ + 0.5301, + 0.697, + 2.3829, + 0.7018, + 2.3829, + 1.3034, + 0.5301, + 1.2986 + ], + "text": "Contoso", + "appearance": { + "style": { + "name": "other", + "confidence": 0.899 + } + }, + "words": [ + { + "boundingBox": [ + 0.5348, + 0.7066, + 2.3876, + 0.826, + 2.3781, + 1.1888, + 0.5587, + 1.3034 + ], + "text": "Contoso", + "confidence": 0.952 + } + ] + }, { "boundingBox": [ 3.2791, @@ -289,6 +264,12 @@ 0.8109 ], "text": "STATE OF CALIFORNIA: CONTOSO", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -348,35 +329,6 @@ } ] }, - { - "boundingBox": [ - 0.5367, - 0.7, - 2.3833, - 0.7067, - 2.38, - 1.2967, - 0.5367, - 1.2933 - ], - "text": "Contoso", - "words": [ - { - "boundingBox": [ - 0.576, - 0.7124, - 2.3577, - 0.8224, - 2.3498, - 1.1995, - 0.6019, - 1.2967 - ], - "text": "Contoso", - "confidence": 0.973 - } - ] - }, { "boundingBox": [ 3.4183, @@ -389,6 +341,12 @@ 0.9561 ], "text": "BUREAU OF INSURANCE", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -446,6 +404,12 @@ 1.1001 ], "text": "124 Main Street Palo Alto CA 842325", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -559,6 +523,12 @@ 1.2694 ], "text": "(650)768-2322", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -588,6 +558,12 @@ 2.333 ], "text": "AUTHORIZATION OF CREDIT CARD PAYMENT", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -663,44 +639,50 @@ }, { "boundingBox": [ - 3.3533, - 3.0267, - 5.1867, - 3.0267, - 5.1867, - 3.2267, - 3.3533, - 3.23 + 3.3522, + 3.0269, + 5.186, + 3.0269, + 5.186, + 3.2274, + 3.3522, + 3.2274 ], "text": "CONTOSO BANK", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ - 3.3563, - 3.0304, - 4.5105, - 3.0286, - 4.5106, - 3.2286, - 3.3624, - 3.2333 + 3.357, + 3.0317, + 4.5126, + 3.0269, + 4.5126, + 3.2274, + 3.3618, + 3.2322 ], "text": "CONTOSO", "confidence": 0.985 }, { "boundingBox": [ - 4.5508, - 3.0286, - 5.1816, - 3.0301, - 5.1782, - 3.2286, - 4.5507, - 3.2286 + 4.5556, + 3.0269, + 5.186, + 3.0317, + 5.186, + 3.2274, + 4.5556, + 3.2274 ], "text": "BANK", - "confidence": 0.987 + "confidence": 0.986 } ] }, @@ -716,6 +698,12 @@ 3.6446 ], "text": "Fees owed to this Department may be paid by the use of a credit card. If you wish to pay your fee(s)", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1039,6 +1027,12 @@ 3.8101 ], "text": "with your credit card, please complete this form and send it with your paperwork. Payment through", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1278,6 +1272,12 @@ 3.9764 ], "text": "credit cards will not be processed without this authorization form. Please print or type clearly.", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1503,6 +1503,12 @@ 4.3316 ], "text": "Name (company/individual for whom payment is being made) (Please Include License # and SSN/FEIN):", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1605,9 +1611,9 @@ { "boundingBox": [ 4.1727, - 4.2083, + 4.2082, 4.5281, - 4.2083, + 4.2082, 4.5281, 4.3259, 4.1727, @@ -1619,9 +1625,9 @@ { "boundingBox": [ 4.5718, - 4.2083, + 4.2082, 5.0014, - 4.2083, + 4.2082, 5.0014, 4.3259, 4.5718, @@ -1714,6 +1720,12 @@ 4.4867 ], "text": "Contoso Insurance 54353T7A, 36-1222985", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1785,6 +1797,12 @@ 5.068 ], "text": "Purpose of Payment:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1842,6 +1860,12 @@ 5.034 ], "text": "Balance on Account", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1899,6 +1923,12 @@ 5.5929 ], "text": "Card Type: \u2751Visa", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1956,6 +1986,12 @@ 5.5922 ], "text": "\u2751x AMEX", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1999,6 +2035,12 @@ 5.6108 ], "text": "\u2751Master Card", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2042,6 +2084,12 @@ 5.8125 ], "text": "Name of Cardholder:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2099,6 +2147,12 @@ 5.8923 ], "text": "John Singer", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2142,6 +2196,12 @@ 5.8091 ], "text": "Contact persons phone #, if questions with this", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2269,6 +2329,12 @@ 5.9847 ], "text": "form. Telephone #: (", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2340,6 +2406,12 @@ 5.9672 ], "text": "425", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2369,6 +2441,12 @@ 5.9847 ], "text": ")", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2386,35 +2464,6 @@ } ] }, - { - "boundingBox": [ - 7.3783, - 5.9042, - 7.4157, - 5.9042, - 7.4157, - 5.918, - 7.3783, - 5.918 - ], - "text": "-", - "words": [ - { - "boundingBox": [ - 7.3783, - 5.9042, - 7.4157, - 5.9042, - 7.4157, - 5.918, - 7.3783, - 5.918 - ], - "text": "-", - "confidence": 1 - } - ] - }, { "boundingBox": [ 7.1288, @@ -2427,6 +2476,12 @@ 5.9672 ], "text": "779 3479", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2458,6 +2513,41 @@ } ] }, + { + "boundingBox": [ + 7.3783, + 5.9042, + 7.4157, + 5.9042, + 7.4157, + 5.918, + 7.3783, + 5.918 + ], + "text": "-", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, + "words": [ + { + "boundingBox": [ + 7.3783, + 5.9042, + 7.4157, + 5.9042, + 7.4157, + 5.918, + 7.3783, + 5.918 + ], + "text": "-", + "confidence": 1 + } + ] + }, { "boundingBox": [ 0.8964, @@ -2470,6 +2560,12 @@ 6.1393 ], "text": "Email Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2513,6 +2609,12 @@ 6.1753 ], "text": "johnsinger@hotmail.com", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2542,6 +2644,12 @@ 6.4101 ], "text": "Mailing Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2585,6 +2693,12 @@ 6.4186 ], "text": "472 SE 74th ST", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2656,6 +2770,12 @@ 6.6721 ], "text": "City:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2685,6 +2805,12 @@ 6.6774 ], "text": "Lakewood", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2714,6 +2840,12 @@ 6.645 ], "text": "State:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2743,6 +2875,12 @@ 6.6518 ], "text": "WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2772,6 +2910,12 @@ 6.6712 ], "text": "Zip Code:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2815,6 +2959,12 @@ 6.6473 ], "text": "98712", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2844,6 +2994,12 @@ 7.1067 ], "text": "I authorize Contoso Department of Professional and Financial Regulation, Bureau of Insurance", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3027,6 +3183,12 @@ 7.2983 ], "text": "to charge my: Visa", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3098,6 +3260,12 @@ 7.9603 ], "text": "4872876432425423", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3127,6 +3295,12 @@ 8.0411 ], "text": "Expiration date:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3170,6 +3344,12 @@ 7.9982 ], "text": "09", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3199,6 +3379,12 @@ 8.012 ], "text": "/", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3228,6 +3414,12 @@ 8.0002 ], "text": "21", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3257,6 +3449,12 @@ 8.0289 ], "text": "in the amount of: $__________________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3342,6 +3540,12 @@ 7.9962 ], "text": "263.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3371,6 +3575,12 @@ 8.0307 ], "text": "____________________________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3400,6 +3610,12 @@ 8.1896 ], "text": "(Card number \u2013 Please print clearly)", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3489,44 +3705,50 @@ }, { "boundingBox": [ - 1.89, - 8.26, - 3.2367, - 8.27, - 3.2333, - 8.5567, - 1.89, - 8.5533 + 1.8862, + 8.2595, + 3.2329, + 8.2691, + 3.2329, + 8.5556, + 1.8862, + 8.5508 ], "text": "John Singer", + "appearance": { + "style": { + "name": "handwriting", + "confidence": 0.848 + } + }, "words": [ { "boundingBox": [ - 1.9698, - 8.2645, - 2.519, - 8.2845, - 2.5195, - 8.5409, - 1.9695, - 8.5567 + 1.9674, + 8.2643, + 2.5166, + 8.2834, + 2.5166, + 8.5412, + 1.9674, + 8.5556 ], "text": "John", - "confidence": 0.97 + "confidence": 0.979 }, { "boundingBox": [ - 2.5778, - 8.2865, - 3.2251, - 8.3065, - 3.2268, - 8.5309, - 2.5784, - 8.5396 + 2.5739, + 8.2834, + 3.2233, + 8.3073, + 3.2233, + 8.5317, + 2.5787, + 8.5412 ], "text": "Singer", - "confidence": 0.948 + "confidence": 0.945 } ] }, @@ -3534,14 +3756,20 @@ "boundingBox": [ 0.8059, 8.3968, - 6.1697, + 5.2429, 8.3968, - 6.1697, + 5.2429, 8.5421, 0.8059, 8.5421 ], - "text": "Signature: ___________________________________________ Date: ______", + "text": "Signature: ___________________________________________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3570,34 +3798,6 @@ ], "text": "___________________________________________", "confidence": 1 - }, - { - "boundingBox": [ - 5.2557, - 8.3997, - 5.6041, - 8.3997, - 5.6041, - 8.5111, - 5.2557, - 8.5111 - ], - "text": "Date:", - "confidence": 1 - }, - { - "boundingBox": [ - 5.66, - 8.5205, - 6.1697, - 8.5205, - 6.1697, - 8.5281, - 5.66, - 8.5281 - ], - "text": "______", - "confidence": 1 } ] }, @@ -3613,6 +3813,12 @@ 8.4835 ], "text": "08", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3630,35 +3836,6 @@ } ] }, - { - "boundingBox": [ - 6.1674, - 8.3968, - 6.2149, - 8.3968, - 6.2149, - 8.5119, - 6.1674, - 8.5119 - ], - "text": "/", - "words": [ - { - "boundingBox": [ - 6.1674, - 8.3968, - 6.2149, - 8.3968, - 6.2149, - 8.5119, - 6.1674, - 8.5119 - ], - "text": "/", - "confidence": 1 - } - ] - }, { "boundingBox": [ 6.5359, @@ -3671,6 +3848,12 @@ 8.4716 ], "text": "23", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3688,35 +3871,6 @@ } ] }, - { - "boundingBox": [ - 6.7199, - 8.3968, - 6.7673, - 8.3968, - 6.7673, - 8.5119, - 6.7199, - 8.5119 - ], - "text": "/", - "words": [ - { - "boundingBox": [ - 6.7199, - 8.3968, - 6.7673, - 8.3968, - 6.7673, - 8.5119, - 6.7199, - 8.5119 - ], - "text": "/", - "confidence": 1 - } - ] - }, { "boundingBox": [ 7.0358, @@ -3729,6 +3883,12 @@ 8.4715 ], "text": "2018", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3748,58 +3908,35 @@ }, { "boundingBox": [ - 6.2125, + 5.66, 8.5205, - 6.7221, + 6.1697, 8.5205, - 6.7221, + 6.1697, 8.5281, - 6.2125, + 5.66, 8.5281 ], "text": "______", - "words": [ - { - "boundingBox": [ - 6.2125, - 8.5205, - 6.7221, - 8.5205, - 6.7221, - 8.5281, - 6.2125, - 8.5281 - ], - "text": "______", + "appearance": { + "style": { + "name": "other", "confidence": 1 } - ] - }, - { - "boundingBox": [ - 6.7649, - 8.5205, - 7.4445, - 8.5205, - 7.4445, - 8.5281, - 6.7649, - 8.5281 - ], - "text": "________", + }, "words": [ { "boundingBox": [ - 6.7649, + 5.66, 8.5205, - 7.4445, + 6.1697, 8.5205, - 7.4445, + 6.1697, 8.5281, - 6.7649, + 5.66, 8.5281 ], - "text": "________", + "text": "______", "confidence": 1 } ] @@ -3816,6 +3953,12 @@ 8.7284 ], "text": "(must be signed by authorized person to validate)", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3943,6 +4086,12 @@ 9.2816 ], "text": "Form is available on our website: www.contoso.com/insurance You may fax the form to:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4140,6 +4289,12 @@ 9.4677 ], "text": "650-768-2322 or e-mail to: insurance@contoso.com", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4225,6 +4380,12 @@ 9.8468 ], "text": "OFFICES LOCATED AT 24 Main Street Palo Alto CA 842325", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4380,6 +4541,12 @@ 9.9709 ], "text": "www.contoso.com/insurance", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4401,114 +4568,44 @@ "selectionMarks": [ { "boundingBox": [ - 3.0724, - 5.4394, - 3.2498, - 5.4394, - 3.2498, - 5.6098, - 3.0724, - 5.6098 - ], - "confidence": 0.991, - "state": "unselected" - }, - { - "boundingBox": [ - 1.6064, - 5.4233, - 1.7774, - 5.4233, - 1.7774, - 5.5937, - 1.6064, - 5.5937 + 1.6159, + 5.4302, + 1.7762, + 5.4302, + 1.7762, + 5.5929, + 1.6159, + 5.5929 ], - "confidence": 0.99, + "confidence": 1, "state": "unselected" }, { "boundingBox": [ - 2.2849, - 5.4179, - 2.4652, - 5.4179, - 2.4652, - 5.5969, - 2.2849, - 5.5969 + 2.3779, + 5.4731, + 2.4454, + 5.4731, + 2.4454, + 5.5463, + 2.3779, + 5.5463 ], - "confidence": 0.881, + "confidence": 1, "state": "selected" }, { "boundingBox": [ - 0, - 10.296, - 1.0459, - 10.296, - 1.0459, - 10.9982, - 0, - 10.9982 - ], - "confidence": 0.833, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.6052, - 1.5019, - 10.6052, - 1.5019, - 11.0, - 0, - 11.0 - ], - "confidence": 0.69, - "state": "unselected" - }, - { - "boundingBox": [ - 2.2887, - 5.4204, - 2.4633, - 5.4204, - 2.4633, - 5.5937, - 2.2887, - 5.5937 - ], - "confidence": 0.609, - "state": "unselected" - }, - { - "boundingBox": [ - 3.3758, - 5.6907, - 4.9999, - 5.6907, - 4.9999, - 5.9387, - 3.3758, - 5.9387 - ], - "confidence": 0.553, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.7248, - 0.539, - 10.7248, - 0.539, - 11, - 0, - 11 + 3.0846, + 5.4481, + 3.2448, + 5.4481, + 3.2448, + 5.6108, + 3.0846, + 5.6108 ], - "confidence": 0.553, + "confidence": 1, "state": "unselected" } ] @@ -4517,172 +4614,7 @@ "pageResults": [ { "page": 1, - "tables": [ - { - "rows": 4, - "columns": 4, - "cells": [ - { - "rowIndex": 0, - "columnIndex": 0, - "text": "Name of Cardholder: John Singer", - "boundingBox": [ - 0.8104, - 5.6546, - 4.1554, - 5.6546, - 4.1554, - 5.9962, - 0.8104, - 5.9962 - ], - "elements": [ - "#/readResults/0/lines/17/words/0", - "#/readResults/0/lines/17/words/1", - "#/readResults/0/lines/17/words/2", - "#/readResults/0/lines/18/words/0", - "#/readResults/0/lines/18/words/1" - ] - }, - { - "rowIndex": 0, - "columnIndex": 2, - "columnSpan": 2, - "text": "Contact persons phone #, if questions with this form. Telephone #: ( ) - 425 779 3479", - "boundingBox": [ - 5.1496, - 5.6546, - 8.2604, - 5.6546, - 8.2604, - 5.9962, - 5.1496, - 5.9962 - ], - "elements": [ - "#/readResults/0/lines/19/words/0", - "#/readResults/0/lines/19/words/1", - "#/readResults/0/lines/19/words/2", - "#/readResults/0/lines/19/words/3", - "#/readResults/0/lines/19/words/4", - "#/readResults/0/lines/19/words/5", - "#/readResults/0/lines/19/words/6", - "#/readResults/0/lines/19/words/7", - "#/readResults/0/lines/20/words/0", - "#/readResults/0/lines/20/words/1", - "#/readResults/0/lines/20/words/2", - "#/readResults/0/lines/20/words/3", - "#/readResults/0/lines/22/words/0", - "#/readResults/0/lines/23/words/0", - "#/readResults/0/lines/21/words/0", - "#/readResults/0/lines/24/words/0", - "#/readResults/0/lines/24/words/1" - ] - }, - { - "rowIndex": 1, - "columnIndex": 0, - "text": "Email Address: johnsinger@hotmail.com", - "boundingBox": [ - 0.8104, - 5.9962, - 4.1554, - 5.9962, - 4.1554, - 6.2262, - 0.8104, - 6.2262 - ], - "elements": [ - "#/readResults/0/lines/25/words/0", - "#/readResults/0/lines/25/words/1", - "#/readResults/0/lines/26/words/0" - ] - }, - { - "rowIndex": 2, - "columnIndex": 0, - "text": "Mailing Address: 472 SE 74th ST", - "boundingBox": [ - 0.8104, - 6.2262, - 4.1554, - 6.2262, - 4.1554, - 6.5021, - 0.8104, - 6.5021 - ], - "elements": [ - "#/readResults/0/lines/27/words/0", - "#/readResults/0/lines/27/words/1", - "#/readResults/0/lines/28/words/0", - "#/readResults/0/lines/28/words/1", - "#/readResults/0/lines/28/words/2", - "#/readResults/0/lines/28/words/3" - ] - }, - { - "rowIndex": 3, - "columnIndex": 0, - "text": "City: Lakewood", - "boundingBox": [ - 0.8104, - 6.5021, - 4.1554, - 6.5021, - 4.1554, - 6.7146, - 0.8104, - 6.7146 - ], - "elements": [ - "#/readResults/0/lines/29/words/0", - "#/readResults/0/lines/30/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 1, - "text": "State: WA", - "boundingBox": [ - 4.1554, - 6.5021, - 5.1496, - 6.5021, - 5.1496, - 6.7146, - 4.1554, - 6.7146 - ], - "elements": [ - "#/readResults/0/lines/31/words/0", - "#/readResults/0/lines/32/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 3, - "text": "Zip Code: 98712", - "boundingBox": [ - 6.4104, - 6.5021, - 8.2604, - 6.5021, - 8.2604, - 6.7146, - 6.4104, - 6.7146 - ], - "elements": [ - "#/readResults/0/lines/33/words/0", - "#/readResults/0/lines/33/words/1", - "#/readResults/0/lines/34/words/0" - ] - } - ] - } - ] + "tables": [] } ] } @@ -4691,7 +4623,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "173751680" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(True)Async.json index 62fb15cba25ec..3a5b0874975f0 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeContentWithSelectionMarks(True)Async.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "251215", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aa1198f43a6482469e9e134709eadae6-eddb72794f912f40-00", + "traceparent": "00-96e107d249ad3248bdc421005c648760-01a14e93c4402641-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bd98e9d211fd68d68a945a7b1afa13d9", @@ -19,24 +19,24 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4a32334e-1b09-482d-80d3-56ac74158bf9", + "apim-request-id": "de0aa916-b0e8-43fa-91ff-a21c895c49b3", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:19:36 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/4a32334e-1b09-482d-80d3-56ac74158bf9", + "Date": "Fri, 30 Oct 2020 12:58:00 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/de0aa916-b0e8-43fa-91ff-a21c895c49b3", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "118" + "x-envoy-upstream-service-time": "122" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/4a32334e-1b09-482d-80d3-56ac74158bf9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/de0aa916-b0e8-43fa-91ff-a21c895c49b3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "830f999f1d2c09daef79f9e662997a71", @@ -45,28 +45,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4e822885-4dad-4950-84ec-0d438ca548de", + "apim-request-id": "7285612f-9549-461f-a325-d52bfbd062ce", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:36 GMT", + "Date": "Fri, 30 Oct 2020 12:58:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T18:19:37Z", - "lastUpdatedDateTime": "2020-10-16T18:19:37Z" + "createdDateTime": "2020-10-30T12:58:00Z", + "lastUpdatedDateTime": "2020-10-30T12:58:00Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/4a32334e-1b09-482d-80d3-56ac74158bf9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/de0aa916-b0e8-43fa-91ff-a21c895c49b3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "983c3943d091957dac2ad5e64ea2253c", @@ -75,28 +75,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0972167f-8df3-46c0-8117-57c6f9df3fec", + "apim-request-id": "67b74e17-b606-4a84-8dc9-383b82549105", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:37 GMT", + "Date": "Fri, 30 Oct 2020 12:58:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T18:19:37Z", - "lastUpdatedDateTime": "2020-10-16T18:19:37Z" + "createdDateTime": "2020-10-30T12:58:00Z", + "lastUpdatedDateTime": "2020-10-30T12:58:00Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/4a32334e-1b09-482d-80d3-56ac74158bf9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/de0aa916-b0e8-43fa-91ff-a21c895c49b3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5862df42ec2db5160f8ecd8417f006f1", @@ -105,28 +105,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7851bef1-677f-4823-9068-2c7acf6ab69c", + "apim-request-id": "37657f08-b03a-4ab1-84df-5bf9fc91248a", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:38 GMT", + "Date": "Fri, 30 Oct 2020 12:58:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T18:19:37Z", - "lastUpdatedDateTime": "2020-10-16T18:19:37Z" + "createdDateTime": "2020-10-30T12:58:00Z", + "lastUpdatedDateTime": "2020-10-30T12:58:00Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/4a32334e-1b09-482d-80d3-56ac74158bf9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/de0aa916-b0e8-43fa-91ff-a21c895c49b3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e138e91a7bbecf471c7ad70247f3bb4c", @@ -135,28 +135,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c6be66e7-7271-4c3a-9013-fbf524643df7", + "apim-request-id": "9533de06-b285-445c-ad0d-3d6aaa8013a0", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:39 GMT", + "Date": "Fri, 30 Oct 2020 12:58:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T18:19:37Z", - "lastUpdatedDateTime": "2020-10-16T18:19:37Z" + "createdDateTime": "2020-10-30T12:58:00Z", + "lastUpdatedDateTime": "2020-10-30T12:58:00Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/4a32334e-1b09-482d-80d3-56ac74158bf9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/de0aa916-b0e8-43fa-91ff-a21c895c49b3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "82a4bc53213756432287880302f87dbc", @@ -165,108 +165,48 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35ea82c0-0551-4cab-8bb7-898518ab998d", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:42 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-10-16T18:19:37Z", - "lastUpdatedDateTime": "2020-10-16T18:19:37Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/4a32334e-1b09-482d-80d3-56ac74158bf9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "65cce423446ac77e98923cb315146e1b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f19393d9-c26d-44a0-a7ca-5289fb81273d", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:43 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-10-16T18:19:37Z", - "lastUpdatedDateTime": "2020-10-16T18:19:37Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/4a32334e-1b09-482d-80d3-56ac74158bf9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5a3181d3834bf8baa5e1be37f244cd24", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6825e84d-754b-4c08-a181-4e93dd1f8b73", + "apim-request-id": "e31fba31-cf80-459d-bd0d-3ff6931ca5b1", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:44 GMT", + "Date": "Fri, 30 Oct 2020 12:58:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-10-16T18:19:37Z", - "lastUpdatedDateTime": "2020-10-16T18:19:37Z" + "createdDateTime": "2020-10-30T12:58:00Z", + "lastUpdatedDateTime": "2020-10-30T12:58:00Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/4a32334e-1b09-482d-80d3-56ac74158bf9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/de0aa916-b0e8-43fa-91ff-a21c895c49b3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "62de1bfc55270fe13edceaa4e490410e", + "x-ms-client-request-id": "65cce423446ac77e98923cb315146e1b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b9e260a1-cd3a-4c94-a277-1b6e24ae9914", - "Content-Length": "34588", + "apim-request-id": "d3e40bee-baa0-4024-a6b6-39dcba95f05f", + "Content-Length": "33902", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:45 GMT", + "Date": "Fri, 30 Oct 2020 12:58:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-10-16T18:19:37Z", - "lastUpdatedDateTime": "2020-10-16T18:19:44Z", + "createdDateTime": "2020-10-30T12:58:00Z", + "lastUpdatedDateTime": "2020-10-30T12:58:05Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -277,6 +217,41 @@ "height": 11, "unit": "inch", "lines": [ + { + "boundingBox": [ + 0.5301, + 0.697, + 2.3829, + 0.7018, + 2.3829, + 1.3034, + 0.5301, + 1.2986 + ], + "text": "Contoso", + "appearance": { + "style": { + "name": "other", + "confidence": 0.899 + } + }, + "words": [ + { + "boundingBox": [ + 0.5348, + 0.7066, + 2.3876, + 0.826, + 2.3781, + 1.1888, + 0.5587, + 1.3034 + ], + "text": "Contoso", + "confidence": 0.952 + } + ] + }, { "boundingBox": [ 3.2791, @@ -289,6 +264,12 @@ 0.8109 ], "text": "STATE OF CALIFORNIA: CONTOSO", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -348,35 +329,6 @@ } ] }, - { - "boundingBox": [ - 0.5367, - 0.7, - 2.3833, - 0.7067, - 2.38, - 1.2967, - 0.5367, - 1.2933 - ], - "text": "Contoso", - "words": [ - { - "boundingBox": [ - 0.576, - 0.7124, - 2.3577, - 0.8224, - 2.3498, - 1.1995, - 0.6019, - 1.2967 - ], - "text": "Contoso", - "confidence": 0.973 - } - ] - }, { "boundingBox": [ 3.4183, @@ -389,6 +341,12 @@ 0.9561 ], "text": "BUREAU OF INSURANCE", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -446,6 +404,12 @@ 1.1001 ], "text": "124 Main Street Palo Alto CA 842325", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -559,6 +523,12 @@ 1.2694 ], "text": "(650)768-2322", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -588,6 +558,12 @@ 2.333 ], "text": "AUTHORIZATION OF CREDIT CARD PAYMENT", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -663,44 +639,50 @@ }, { "boundingBox": [ - 3.3533, - 3.0267, - 5.1867, - 3.0267, - 5.1867, - 3.2267, - 3.3533, - 3.23 + 3.3522, + 3.0269, + 5.186, + 3.0269, + 5.186, + 3.2274, + 3.3522, + 3.2274 ], "text": "CONTOSO BANK", + "appearance": { + "style": { + "name": "other", + "confidence": 1.0 + } + }, "words": [ { "boundingBox": [ - 3.3563, - 3.0304, - 4.5105, - 3.0286, - 4.5106, - 3.2286, - 3.3624, - 3.2333 + 3.357, + 3.0317, + 4.5126, + 3.0269, + 4.5126, + 3.2274, + 3.3618, + 3.2322 ], "text": "CONTOSO", "confidence": 0.985 }, { "boundingBox": [ - 4.5508, - 3.0286, - 5.1816, - 3.0301, - 5.1782, - 3.2286, - 4.5507, - 3.2286 + 4.5556, + 3.0269, + 5.186, + 3.0317, + 5.186, + 3.2274, + 4.5556, + 3.2274 ], "text": "BANK", - "confidence": 0.987 + "confidence": 0.986 } ] }, @@ -716,6 +698,12 @@ 3.6446 ], "text": "Fees owed to this Department may be paid by the use of a credit card. If you wish to pay your fee(s)", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1039,6 +1027,12 @@ 3.8101 ], "text": "with your credit card, please complete this form and send it with your paperwork. Payment through", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1278,6 +1272,12 @@ 3.9764 ], "text": "credit cards will not be processed without this authorization form. Please print or type clearly.", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1503,6 +1503,12 @@ 4.3316 ], "text": "Name (company/individual for whom payment is being made) (Please Include License # and SSN/FEIN):", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1605,9 +1611,9 @@ { "boundingBox": [ 4.1727, - 4.2083, + 4.2082, 4.5281, - 4.2083, + 4.2082, 4.5281, 4.3259, 4.1727, @@ -1619,9 +1625,9 @@ { "boundingBox": [ 4.5718, - 4.2083, + 4.2082, 5.0014, - 4.2083, + 4.2082, 5.0014, 4.3259, 4.5718, @@ -1714,6 +1720,12 @@ 4.4867 ], "text": "Contoso Insurance 54353T7A, 36-1222985", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1785,6 +1797,12 @@ 5.068 ], "text": "Purpose of Payment:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1842,6 +1860,12 @@ 5.034 ], "text": "Balance on Account", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1899,6 +1923,12 @@ 5.5929 ], "text": "Card Type: \u2751Visa", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1956,6 +1986,12 @@ 5.5922 ], "text": "\u2751x AMEX", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -1999,6 +2035,12 @@ 5.6108 ], "text": "\u2751Master Card", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2042,6 +2084,12 @@ 5.8125 ], "text": "Name of Cardholder:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2099,6 +2147,12 @@ 5.8923 ], "text": "John Singer", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2142,6 +2196,12 @@ 5.8091 ], "text": "Contact persons phone #, if questions with this", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2269,6 +2329,12 @@ 5.9847 ], "text": "form. Telephone #: (", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2340,6 +2406,12 @@ 5.9672 ], "text": "425", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2369,6 +2441,12 @@ 5.9847 ], "text": ")", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2386,35 +2464,6 @@ } ] }, - { - "boundingBox": [ - 7.3783, - 5.9042, - 7.4157, - 5.9042, - 7.4157, - 5.918, - 7.3783, - 5.918 - ], - "text": "-", - "words": [ - { - "boundingBox": [ - 7.3783, - 5.9042, - 7.4157, - 5.9042, - 7.4157, - 5.918, - 7.3783, - 5.918 - ], - "text": "-", - "confidence": 1 - } - ] - }, { "boundingBox": [ 7.1288, @@ -2427,6 +2476,12 @@ 5.9672 ], "text": "779 3479", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2458,6 +2513,41 @@ } ] }, + { + "boundingBox": [ + 7.3783, + 5.9042, + 7.4157, + 5.9042, + 7.4157, + 5.918, + 7.3783, + 5.918 + ], + "text": "-", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, + "words": [ + { + "boundingBox": [ + 7.3783, + 5.9042, + 7.4157, + 5.9042, + 7.4157, + 5.918, + 7.3783, + 5.918 + ], + "text": "-", + "confidence": 1 + } + ] + }, { "boundingBox": [ 0.8964, @@ -2470,6 +2560,12 @@ 6.1393 ], "text": "Email Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2513,6 +2609,12 @@ 6.1753 ], "text": "johnsinger@hotmail.com", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2542,6 +2644,12 @@ 6.4101 ], "text": "Mailing Address:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2585,6 +2693,12 @@ 6.4186 ], "text": "472 SE 74th ST", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2656,6 +2770,12 @@ 6.6721 ], "text": "City:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2685,6 +2805,12 @@ 6.6774 ], "text": "Lakewood", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2714,6 +2840,12 @@ 6.645 ], "text": "State:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2743,6 +2875,12 @@ 6.6518 ], "text": "WA", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2772,6 +2910,12 @@ 6.6712 ], "text": "Zip Code:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2815,6 +2959,12 @@ 6.6473 ], "text": "98712", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -2844,6 +2994,12 @@ 7.1067 ], "text": "I authorize Contoso Department of Professional and Financial Regulation, Bureau of Insurance", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3027,6 +3183,12 @@ 7.2983 ], "text": "to charge my: Visa", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3098,6 +3260,12 @@ 7.9603 ], "text": "4872876432425423", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3127,6 +3295,12 @@ 8.0411 ], "text": "Expiration date:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3170,6 +3344,12 @@ 7.9982 ], "text": "09", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3199,6 +3379,12 @@ 8.012 ], "text": "/", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3228,6 +3414,12 @@ 8.0002 ], "text": "21", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3257,6 +3449,12 @@ 8.0289 ], "text": "in the amount of: $__________________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3342,6 +3540,12 @@ 7.9962 ], "text": "263.00", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3371,6 +3575,12 @@ 8.0307 ], "text": "____________________________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3400,6 +3610,12 @@ 8.1896 ], "text": "(Card number \u2013 Please print clearly)", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3489,44 +3705,50 @@ }, { "boundingBox": [ - 1.89, - 8.26, - 3.2367, - 8.27, - 3.2333, - 8.5567, - 1.89, - 8.5533 + 1.8862, + 8.2595, + 3.2329, + 8.2691, + 3.2329, + 8.5556, + 1.8862, + 8.5508 ], "text": "John Singer", + "appearance": { + "style": { + "name": "handwriting", + "confidence": 0.848 + } + }, "words": [ { "boundingBox": [ - 1.9698, - 8.2645, - 2.519, - 8.2845, - 2.5195, - 8.5409, - 1.9695, - 8.5567 + 1.9674, + 8.2643, + 2.5166, + 8.2834, + 2.5166, + 8.5412, + 1.9674, + 8.5556 ], "text": "John", - "confidence": 0.97 + "confidence": 0.979 }, { "boundingBox": [ - 2.5778, - 8.2865, - 3.2251, - 8.3065, - 3.2268, - 8.5309, - 2.5784, - 8.5396 + 2.5739, + 8.2834, + 3.2233, + 8.3073, + 3.2233, + 8.5317, + 2.5787, + 8.5412 ], "text": "Singer", - "confidence": 0.947 + "confidence": 0.945 } ] }, @@ -3534,14 +3756,20 @@ "boundingBox": [ 0.8059, 8.3968, - 6.1697, + 5.2429, 8.3968, - 6.1697, + 5.2429, 8.5421, 0.8059, 8.5421 ], - "text": "Signature: ___________________________________________ Date: ______", + "text": "Signature: ___________________________________________", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3570,34 +3798,6 @@ ], "text": "___________________________________________", "confidence": 1 - }, - { - "boundingBox": [ - 5.2557, - 8.3997, - 5.6041, - 8.3997, - 5.6041, - 8.5111, - 5.2557, - 8.5111 - ], - "text": "Date:", - "confidence": 1 - }, - { - "boundingBox": [ - 5.66, - 8.5205, - 6.1697, - 8.5205, - 6.1697, - 8.5281, - 5.66, - 8.5281 - ], - "text": "______", - "confidence": 1 } ] }, @@ -3613,6 +3813,12 @@ 8.4835 ], "text": "08", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3630,35 +3836,6 @@ } ] }, - { - "boundingBox": [ - 6.1674, - 8.3968, - 6.2149, - 8.3968, - 6.2149, - 8.5119, - 6.1674, - 8.5119 - ], - "text": "/", - "words": [ - { - "boundingBox": [ - 6.1674, - 8.3968, - 6.2149, - 8.3968, - 6.2149, - 8.5119, - 6.1674, - 8.5119 - ], - "text": "/", - "confidence": 1 - } - ] - }, { "boundingBox": [ 6.5359, @@ -3671,6 +3848,12 @@ 8.4716 ], "text": "23", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3688,35 +3871,6 @@ } ] }, - { - "boundingBox": [ - 6.7199, - 8.3968, - 6.7673, - 8.3968, - 6.7673, - 8.5119, - 6.7199, - 8.5119 - ], - "text": "/", - "words": [ - { - "boundingBox": [ - 6.7199, - 8.3968, - 6.7673, - 8.3968, - 6.7673, - 8.5119, - 6.7199, - 8.5119 - ], - "text": "/", - "confidence": 1 - } - ] - }, { "boundingBox": [ 7.0358, @@ -3729,6 +3883,12 @@ 8.4715 ], "text": "2018", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3748,58 +3908,35 @@ }, { "boundingBox": [ - 6.2125, + 5.66, 8.5205, - 6.7221, + 6.1697, 8.5205, - 6.7221, + 6.1697, 8.5281, - 6.2125, + 5.66, 8.5281 ], "text": "______", - "words": [ - { - "boundingBox": [ - 6.2125, - 8.5205, - 6.7221, - 8.5205, - 6.7221, - 8.5281, - 6.2125, - 8.5281 - ], - "text": "______", + "appearance": { + "style": { + "name": "other", "confidence": 1 } - ] - }, - { - "boundingBox": [ - 6.7649, - 8.5205, - 7.4445, - 8.5205, - 7.4445, - 8.5281, - 6.7649, - 8.5281 - ], - "text": "________", + }, "words": [ { "boundingBox": [ - 6.7649, + 5.66, 8.5205, - 7.4445, + 6.1697, 8.5205, - 7.4445, + 6.1697, 8.5281, - 6.7649, + 5.66, 8.5281 ], - "text": "________", + "text": "______", "confidence": 1 } ] @@ -3816,6 +3953,12 @@ 8.7284 ], "text": "(must be signed by authorized person to validate)", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -3943,6 +4086,12 @@ 9.2816 ], "text": "Form is available on our website: www.contoso.com/insurance You may fax the form to:", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4140,6 +4289,12 @@ 9.4677 ], "text": "650-768-2322 or e-mail to: insurance@contoso.com", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4225,6 +4380,12 @@ 9.8468 ], "text": "OFFICES LOCATED AT 24 Main Street Palo Alto CA 842325", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4380,6 +4541,12 @@ 9.9709 ], "text": "www.contoso.com/insurance", + "appearance": { + "style": { + "name": "other", + "confidence": 1 + } + }, "words": [ { "boundingBox": [ @@ -4401,114 +4568,44 @@ "selectionMarks": [ { "boundingBox": [ - 3.0724, - 5.4394, - 3.2498, - 5.4394, - 3.2498, - 5.6098, - 3.0724, - 5.6098 - ], - "confidence": 0.991, - "state": "unselected" - }, - { - "boundingBox": [ - 1.6064, - 5.4233, - 1.7774, - 5.4233, - 1.7774, - 5.5937, - 1.6064, - 5.5937 + 1.6159, + 5.4302, + 1.7762, + 5.4302, + 1.7762, + 5.5929, + 1.6159, + 5.5929 ], - "confidence": 0.99, + "confidence": 1, "state": "unselected" }, { "boundingBox": [ - 2.2849, - 5.4179, - 2.4652, - 5.4179, - 2.4652, - 5.5969, - 2.2849, - 5.5969 + 2.3779, + 5.4731, + 2.4454, + 5.4731, + 2.4454, + 5.5463, + 2.3779, + 5.5463 ], - "confidence": 0.881, + "confidence": 1, "state": "selected" }, { "boundingBox": [ - 0, - 10.296, - 1.0459, - 10.296, - 1.0459, - 10.9982, - 0, - 10.9982 - ], - "confidence": 0.833, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.6052, - 1.5019, - 10.6052, - 1.5019, - 11.0, - 0, - 11.0 - ], - "confidence": 0.69, - "state": "unselected" - }, - { - "boundingBox": [ - 2.2887, - 5.4204, - 2.4633, - 5.4204, - 2.4633, - 5.5937, - 2.2887, - 5.5937 - ], - "confidence": 0.609, - "state": "unselected" - }, - { - "boundingBox": [ - 3.3758, - 5.6907, - 4.9999, - 5.6907, - 4.9999, - 5.9387, - 3.3758, - 5.9387 - ], - "confidence": 0.553, - "state": "unselected" - }, - { - "boundingBox": [ - 0, - 10.7248, - 0.539, - 10.7248, - 0.539, - 11, - 0, - 11 + 3.0846, + 5.4481, + 3.2448, + 5.4481, + 3.2448, + 5.6108, + 3.0846, + 5.6108 ], - "confidence": 0.553, + "confidence": 1, "state": "unselected" } ] @@ -4517,172 +4614,7 @@ "pageResults": [ { "page": 1, - "tables": [ - { - "rows": 4, - "columns": 4, - "cells": [ - { - "rowIndex": 0, - "columnIndex": 0, - "text": "Name of Cardholder: John Singer", - "boundingBox": [ - 0.8104, - 5.6546, - 4.1554, - 5.6546, - 4.1554, - 5.9962, - 0.8104, - 5.9962 - ], - "elements": [ - "#/readResults/0/lines/17/words/0", - "#/readResults/0/lines/17/words/1", - "#/readResults/0/lines/17/words/2", - "#/readResults/0/lines/18/words/0", - "#/readResults/0/lines/18/words/1" - ] - }, - { - "rowIndex": 0, - "columnIndex": 2, - "columnSpan": 2, - "text": "Contact persons phone #, if questions with this form. Telephone #: ( ) - 425 779 3479", - "boundingBox": [ - 5.1496, - 5.6546, - 8.2604, - 5.6546, - 8.2604, - 5.9962, - 5.1496, - 5.9962 - ], - "elements": [ - "#/readResults/0/lines/19/words/0", - "#/readResults/0/lines/19/words/1", - "#/readResults/0/lines/19/words/2", - "#/readResults/0/lines/19/words/3", - "#/readResults/0/lines/19/words/4", - "#/readResults/0/lines/19/words/5", - "#/readResults/0/lines/19/words/6", - "#/readResults/0/lines/19/words/7", - "#/readResults/0/lines/20/words/0", - "#/readResults/0/lines/20/words/1", - "#/readResults/0/lines/20/words/2", - "#/readResults/0/lines/20/words/3", - "#/readResults/0/lines/22/words/0", - "#/readResults/0/lines/23/words/0", - "#/readResults/0/lines/21/words/0", - "#/readResults/0/lines/24/words/0", - "#/readResults/0/lines/24/words/1" - ] - }, - { - "rowIndex": 1, - "columnIndex": 0, - "text": "Email Address: johnsinger@hotmail.com", - "boundingBox": [ - 0.8104, - 5.9962, - 4.1554, - 5.9962, - 4.1554, - 6.2262, - 0.8104, - 6.2262 - ], - "elements": [ - "#/readResults/0/lines/25/words/0", - "#/readResults/0/lines/25/words/1", - "#/readResults/0/lines/26/words/0" - ] - }, - { - "rowIndex": 2, - "columnIndex": 0, - "text": "Mailing Address: 472 SE 74th ST", - "boundingBox": [ - 0.8104, - 6.2262, - 4.1554, - 6.2262, - 4.1554, - 6.5021, - 0.8104, - 6.5021 - ], - "elements": [ - "#/readResults/0/lines/27/words/0", - "#/readResults/0/lines/27/words/1", - "#/readResults/0/lines/28/words/0", - "#/readResults/0/lines/28/words/1", - "#/readResults/0/lines/28/words/2", - "#/readResults/0/lines/28/words/3" - ] - }, - { - "rowIndex": 3, - "columnIndex": 0, - "text": "City: Lakewood", - "boundingBox": [ - 0.8104, - 6.5021, - 4.1554, - 6.5021, - 4.1554, - 6.7146, - 0.8104, - 6.7146 - ], - "elements": [ - "#/readResults/0/lines/29/words/0", - "#/readResults/0/lines/30/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 1, - "text": "State: WA", - "boundingBox": [ - 4.1554, - 6.5021, - 5.1496, - 6.5021, - 5.1496, - 6.7146, - 4.1554, - 6.7146 - ], - "elements": [ - "#/readResults/0/lines/31/words/0", - "#/readResults/0/lines/32/words/0" - ] - }, - { - "rowIndex": 3, - "columnIndex": 3, - "text": "Zip Code: 98712", - "boundingBox": [ - 6.4104, - 6.5021, - 8.2604, - 6.5021, - 8.2604, - 6.7146, - 6.4104, - 6.7146 - ], - "elements": [ - "#/readResults/0/lines/33/words/0", - "#/readResults/0/lines/33/words/1", - "#/readResults/0/lines/34/words/0" - ] - } - ] - } - ] + "tables": [] } ] } @@ -4691,7 +4623,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1749249609" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(False).json index 533983b310281..ce48aca859c79 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a2d3389e669a964cb0437d5843625bf1-bd33f427a93fec46-00", + "traceparent": "00-ad550eef9fbb4d47b06282122424dd7c-dc7e4dceb0b5b74e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6d18b00586fb7bc74fb85fb1e05c83da", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "a6c87873-74d6-42e2-9d67-d66119dbd261", + "apim-request-id": "6ff2adaa-90dc-49f4-a8e4-dc874620f026", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:16 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57", + "Date": "Fri, 30 Oct 2020 12:51:59 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "248" + "x-envoy-upstream-service-time": "115" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8e312b72bed9ab41c81ee53ba0bd285b", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6727c894-02fd-41fc-88cd-d8daf43bc54b", + "apim-request-id": "3d78b440-df23-4327-9a15-891cd652a688", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:16 GMT", + "Date": "Fri, 30 Oct 2020 12:52:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", + "modelId": "95bbf67b-f3c3-473b-bb6b-605dd34b2e10", "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" + "createdDateTime": "2020-10-30T12:52:00Z", + "lastUpdatedDateTime": "2020-10-30T12:52:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "55fef41bb2966a71fa41802e6943e7e9", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c5652d6-fd15-419b-a141-22da53b9d610", + "apim-request-id": "b2015f32-14af-4aa2-bcd8-3c895384e0e8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:18 GMT", + "Date": "Fri, 30 Oct 2020 12:52:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", + "modelId": "95bbf67b-f3c3-473b-bb6b-605dd34b2e10", "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" + "createdDateTime": "2020-10-30T12:52:00Z", + "lastUpdatedDateTime": "2020-10-30T12:52:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "afa5060f49b547f76e6da5dda18cda92", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1043715a-58c8-488e-99aa-14f9388c28f2", + "apim-request-id": "6fc10ad5-5a17-4723-9094-77486d1c1337", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:19 GMT", + "Date": "Fri, 30 Oct 2020 12:52:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", + "modelId": "95bbf67b-f3c3-473b-bb6b-605dd34b2e10", "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" + "createdDateTime": "2020-10-30T12:52:00Z", + "lastUpdatedDateTime": "2020-10-30T12:52:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eb95038f2e5ec043bac793973d124185", "x-ms-return-client-request-id": "true" @@ -147,9 +147,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f786521b-afd6-44ac-b783-d11f544e61e4", + "apim-request-id": "8bc91090-a234-40d5-aed7-3291b509ba60", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:20 GMT", + "Date": "Fri, 30 Oct 2020 12:52:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -157,22 +157,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", + "modelId": "95bbf67b-f3c3-473b-bb6b-605dd34b2e10", "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" + "createdDateTime": "2020-10-30T12:52:00Z", + "lastUpdatedDateTime": "2020-10-30T12:52:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9a2bfc377818d2a5fcb6e6290c94c96e", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28991ef7-895f-4766-b33b-69f473cd6a14", + "apim-request-id": "5da7134c-c055-4137-a26f-f6845bcee6b7", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:21 GMT", + "Date": "Fri, 30 Oct 2020 12:52:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", + "modelId": "95bbf67b-f3c3-473b-bb6b-605dd34b2e10", "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" + "createdDateTime": "2020-10-30T12:52:00Z", + "lastUpdatedDateTime": "2020-10-30T12:52:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "659fee66fbade18ac2e4f5eeb660095c", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "438628ad-779e-4e89-a1bf-f59c24357f8e", + "apim-request-id": "85095243-2ab9-4a89-b8a3-562902e90d88", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:22 GMT", + "Date": "Fri, 30 Oct 2020 12:52:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", + "modelId": "95bbf67b-f3c3-473b-bb6b-605dd34b2e10", "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" + "createdDateTime": "2020-10-30T12:52:00Z", + "lastUpdatedDateTime": "2020-10-30T12:52:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a4a61f2b406016795ec3efa7471ab325", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c2ee7a3-a04d-4b1d-ab4b-88b391594407", + "apim-request-id": "d0b4ca86-8be8-47fc-b672-4d31d1db3c2a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:23 GMT", + "Date": "Fri, 30 Oct 2020 12:52:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", + "modelId": "95bbf67b-f3c3-473b-bb6b-605dd34b2e10", "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" + "createdDateTime": "2020-10-30T12:52:00Z", + "lastUpdatedDateTime": "2020-10-30T12:52:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4f3025fedc733bd7714ad83382b71b9b", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "96503c00-1762-4287-8c16-cb01afdb390f", + "apim-request-id": "1d8c109c-819f-48c4-ac86-27f7210742f9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:24 GMT", + "Date": "Fri, 30 Oct 2020 12:52:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", + "modelId": "95bbf67b-f3c3-473b-bb6b-605dd34b2e10", "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" + "createdDateTime": "2020-10-30T12:52:00Z", + "lastUpdatedDateTime": "2020-10-30T12:52:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ecfe8aad24ed260d748807e90be399a7", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f075c497-c1c6-4dfc-b8c4-341a131dd898", + "apim-request-id": "2fe6c7ad-664c-424d-94c2-76b5d046f9c2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:25 GMT", + "Date": "Fri, 30 Oct 2020 12:52:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", + "modelId": "95bbf67b-f3c3-473b-bb6b-605dd34b2e10", "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" + "createdDateTime": "2020-10-30T12:52:00Z", + "lastUpdatedDateTime": "2020-10-30T12:52:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "91f0cf31ba2f4fe8486a3216674693a6", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7227efe5-059c-4675-a17d-328c8a270b8d", + "apim-request-id": "a7ed615f-c463-47e8-928e-f2a5efb03cb1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:26 GMT", + "Date": "Fri, 30 Oct 2020 12:52:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", + "modelId": "95bbf67b-f3c3-473b-bb6b-605dd34b2e10", "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" + "createdDateTime": "2020-10-30T12:52:00Z", + "lastUpdatedDateTime": "2020-10-30T12:52:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bdf953a8c61cd938170adaead4ee2f8e", "x-ms-return-client-request-id": "true" @@ -378,152 +378,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06b80179-8b64-4485-9b89-faf949fda24d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:27 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", - "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b30230b08ac7f36ca1aea483f2f7be2e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4c944815-6ba3-4b32-9cd9-8a6b0b9ff49a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", - "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b84161f5dbe96a8b97167925dffe7b59", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d70472e7-047d-4282-b0b1-d34266dfa370", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", - "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3766a33ae0441ddfe7061c6d22b4e720", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2317de20-b92b-4a9b-a10e-5f801e19ddd5", + "apim-request-id": "f5b83414-2f5d-4877-b62f-c7fbcece868f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:30 GMT", + "Date": "Fri, 30 Oct 2020 12:52:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", - "status": "creating", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:17Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "73f5ac4b77acd4a5a5981bb1104614a3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5cee6ac2-f91f-4b2a-9e55-88a3eb483d8a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:31 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "4717d1d2-f407-4a37-9554-c6868ecd5e57", + "modelId": "95bbf67b-f3c3-473b-bb6b-605dd34b2e10", "status": "ready", - "createdDateTime": "2020-09-09T22:30:17Z", - "lastUpdatedDateTime": "2020-09-09T22:30:31Z" + "createdDateTime": "2020-10-30T12:52:00Z", + "lastUpdatedDateTime": "2020-10-30T12:52:11Z" }, "keys": { "clusters": { @@ -593,19 +461,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-77a0868ede27234fb3f0e74215d768f2-907f54bd923e824d-00", + "traceparent": "00-fc61cfcc281dec4b8d0f45aba78935fd-9d692d9765eab143-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4e484b33879114e98124d1e2bf1d47e3", + "x-ms-client-request-id": "b30230b08ac7f36ca1aea483f2f7be2e", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -613,96 +481,66 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "65d1647c-013c-4b9d-8459-3068ffcec00f", + "apim-request-id": "5165ffe1-bc54-4cd0-80ca-4b347662648a", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:32 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57/analyzeresults/6c54439a-2e98-43b0-8693-b6f759d77c98", + "Date": "Fri, 30 Oct 2020 12:52:12 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10/analyzeresults/79156d92-e58c-4a4c-a16b-ba981b7c26c2", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "162" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57/analyzeResults/6c54439a-2e98-43b0-8693-b6f759d77c98", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10/analyzeResults/79156d92-e58c-4a4c-a16b-ba981b7c26c2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "32da592e0708c3adfd9191acc52e0ca1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1cfc1b3d-55fd-4772-95d8-b607289122b9", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:30:32Z", - "lastUpdatedDateTime": "2020-09-09T22:30:32Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57/analyzeResults/6c54439a-2e98-43b0-8693-b6f759d77c98", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d73979f2996bc38ec2e1f188a6c31487", + "x-ms-client-request-id": "b84161f5dbe96a8b97167925dffe7b59", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f3007d32-b5da-44de-9a3f-8c386ae67366", + "apim-request-id": "22e24d30-316d-4af7-9ec4-7ded8c69e453", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:33 GMT", + "Date": "Fri, 30 Oct 2020 12:52:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:30:32Z", - "lastUpdatedDateTime": "2020-09-09T22:30:32Z" + "createdDateTime": "2020-10-30T12:52:13Z", + "lastUpdatedDateTime": "2020-10-30T12:52:13Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57/analyzeResults/6c54439a-2e98-43b0-8693-b6f759d77c98", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10/analyzeResults/79156d92-e58c-4a4c-a16b-ba981b7c26c2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b7823750e16b2b9a9e8550fff53d4f53", + "x-ms-client-request-id": "3766a33ae0441ddfe7061c6d22b4e720", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ab52288b-45ae-4d62-a67a-15679ac29dc9", + "apim-request-id": "d49de696-f027-4c19-a55a-07739459e9a3", "Content-Length": "284", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:34 GMT", + "Date": "Fri, 30 Oct 2020 12:52:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "29", @@ -710,8 +548,8 @@ }, "ResponseBody": { "status": "failed", - "createdDateTime": "2020-09-09T22:30:32Z", - "lastUpdatedDateTime": "2020-09-09T22:30:33Z", + "createdDateTime": "2020-10-30T12:52:13Z", + "lastUpdatedDateTime": "2020-10-30T12:52:14Z", "analyzeResult": { "version": null, "readResults": null, @@ -727,28 +565,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4717d1d2-f407-4a37-9554-c6868ecd5e57", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95bbf67b-f3c3-473b-bb6b-605dd34b2e10", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f75905e55066d948b8c33e5728702a8f-fe01bf5a01521140-00", + "traceparent": "00-b2ed7f4844ad174bacf0cde5e6970325-a66458e16538d64e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "46f0301770e49577ca166f2716241c3a", + "x-ms-client-request-id": "73f5ac4b77acd4a5a5981bb1104614a3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "35aef973-3beb-400c-ac5a-ae3f0ab3fc28", + "apim-request-id": "c8051cc8-c44e-4c8a-805a-b3e490e8fb8a", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:34 GMT", + "Date": "Fri, 30 Oct 2020 12:52:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": [] } @@ -756,7 +594,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "2090463583" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(False)Async.json index 17b0d626b8d90..107d66de83c61 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4afaa19c6f4add46823fc8eeedd7ca68-52f5a8d8c3441f41-00", + "traceparent": "00-158186dd3823f344b6d40e74c2ddd89a-5c5e33e58648764f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c4682048d9fb9dd24cc04b238066424b", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "8dc7a81f-5fc4-49b3-987c-13182bbab96a", + "apim-request-id": "dc4defbf-aa60-4fdd-8bdf-ab2e20457857", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:35:26 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490", + "Date": "Fri, 30 Oct 2020 12:58:16 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "127" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bdd4c9d02b379373bd5a8845ce45ecc2", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9eea5485-4c84-4631-ad2a-208405bfde14", + "apim-request-id": "6fef685c-f575-4f68-b5bd-3fd4f1ae1b12", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:26 GMT", + "Date": "Fri, 30 Oct 2020 12:58:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", + "modelId": "295bd921-a407-492a-b0fa-fe7024ad8859", "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" + "createdDateTime": "2020-10-30T12:58:17Z", + "lastUpdatedDateTime": "2020-10-30T12:58:17Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9b49aa08ee8244944976eb0d4e23ee84", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51acc36e-caf1-4154-b46c-7e76fcfbeabd", + "apim-request-id": "913dca9a-718e-4e1e-a54e-cf5358eecb7b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:27 GMT", + "Date": "Fri, 30 Oct 2020 12:58:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", + "modelId": "295bd921-a407-492a-b0fa-fe7024ad8859", "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" + "createdDateTime": "2020-10-30T12:58:17Z", + "lastUpdatedDateTime": "2020-10-30T12:58:17Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c6ee4fa2523b1c9cadd406a0508dcf07", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ecceab15-142b-41f1-a587-e00d69f6d2aa", + "apim-request-id": "bd70fa4c-a156-4629-bfe5-75f81ecef076", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:28 GMT", + "Date": "Fri, 30 Oct 2020 12:58:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", + "modelId": "295bd921-a407-492a-b0fa-fe7024ad8859", "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" + "createdDateTime": "2020-10-30T12:58:17Z", + "lastUpdatedDateTime": "2020-10-30T12:58:17Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d61b89d3a71de1c8358f74c04065459a", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "294113f5-69ca-40bb-92b5-cd18584294ba", + "apim-request-id": "23fbe077-2e50-44ab-85c1-4717f6ba0edb", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:29 GMT", + "Date": "Fri, 30 Oct 2020 12:58:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", + "modelId": "295bd921-a407-492a-b0fa-fe7024ad8859", "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" + "createdDateTime": "2020-10-30T12:58:17Z", + "lastUpdatedDateTime": "2020-10-30T12:58:17Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7ea2036b2656b6860e2ceeade8f4f4bc", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "429b7555-e378-478c-a1e7-ce80b60d15d6", + "apim-request-id": "34a8d4cd-5e5b-4057-a7ce-74f50406e1fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:30 GMT", + "Date": "Fri, 30 Oct 2020 12:58:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", + "modelId": "295bd921-a407-492a-b0fa-fe7024ad8859", "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" + "createdDateTime": "2020-10-30T12:58:17Z", + "lastUpdatedDateTime": "2020-10-30T12:58:17Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c539e3a71808fb66860c91abdedbdc47", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5aa1a2f6-f456-498c-9b63-2fb218a56d35", + "apim-request-id": "6a274a3f-afc7-4d2a-b349-2a3656564037", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:31 GMT", + "Date": "Fri, 30 Oct 2020 12:58:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", + "modelId": "295bd921-a407-492a-b0fa-fe7024ad8859", "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" + "createdDateTime": "2020-10-30T12:58:17Z", + "lastUpdatedDateTime": "2020-10-30T12:58:17Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4c346b8f50eaadb00264c7f1b81af940", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d1b056fc-20fb-450f-a4ca-6c7d323f9e17", + "apim-request-id": "6c8758e2-56be-4581-9d32-49ce4671cec8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:32 GMT", + "Date": "Fri, 30 Oct 2020 12:58:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", + "modelId": "295bd921-a407-492a-b0fa-fe7024ad8859", "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" + "createdDateTime": "2020-10-30T12:58:17Z", + "lastUpdatedDateTime": "2020-10-30T12:58:17Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5c18b89b7f2c53929da7f84a95dbd832", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "be422d0b-8f8b-4a69-b267-d86033b03e05", + "apim-request-id": "ae0ae330-7002-4774-94b6-3a2263c34efa", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:33 GMT", + "Date": "Fri, 30 Oct 2020 12:58:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", + "modelId": "295bd921-a407-492a-b0fa-fe7024ad8859", "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" + "createdDateTime": "2020-10-30T12:58:17Z", + "lastUpdatedDateTime": "2020-10-30T12:58:17Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7d1ea64fa7bf57d1338bc3a35075426b", "x-ms-return-client-request-id": "true" @@ -312,251 +312,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fdb3f8d4-3974-4e60-bec4-b7001b96c3f7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "250f501380c20f1bd8e1af4358651826", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c03117d6-198c-4397-9574-cff6950a6f20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:35 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "12a2958c7cfcf481e6c128a0bcef0227", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "44f47cc0-43ea-4a17-ab56-e296b82139c2", + "apim-request-id": "5c893054-4fb4-46fc-a183-08fa92e38144", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:36 GMT", + "Date": "Fri, 30 Oct 2020 12:58:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "44378c64b2cccf6f8a0fa4def78efecd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "82879a54-18ee-4e6b-bbfd-f65967ec81f4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "bb179c7330d3976fce1a3f01577b52e8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a84f87ef-3fa5-4e36-90b1-dc1d8929c5f5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:38 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ccde88ded32ed95a25d387ecd7a3fc58", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d8b3b180-1747-4edf-b831-732b60b10922", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1f2c5bc347d834541ca075b1736e770f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2739d297-20b5-4e49-92ff-15bfcab3138f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "6fffbbbc32b09f9e423d9500a982bf2b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "28c41ee0-e447-4690-9707-2d34a6b1c894", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "9b45d057-c7cc-4c09-ab74-6a8ab5db7490", + "modelId": "295bd921-a407-492a-b0fa-fe7024ad8859", "status": "ready", - "createdDateTime": "2020-09-09T22:35:26Z", - "lastUpdatedDateTime": "2020-09-09T22:35:41Z" + "createdDateTime": "2020-10-30T12:58:17Z", + "lastUpdatedDateTime": "2020-10-30T12:58:28Z" }, "keys": { "clusters": { @@ -626,19 +395,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-86631228896db449b1dd5b7e313a2558-7287b8f7ba8e644a-00", + "traceparent": "00-e60100399d2fa0408b06d716ce6fd5b5-4cc55c15e36fdb4b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "fc3de61e324f971033a9af8e5da866b7", + "x-ms-client-request-id": "250f501380c20f1bd8e1af4358651826", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -646,75 +415,75 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "cf9052fa-9a05-4b5b-accc-e1544e73087c", + "apim-request-id": "13ff2d99-2dd0-4c08-b0d4-ef6ec2f1b56f", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:35:42 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490/analyzeresults/0fff7bb3-dc39-48aa-a938-2f046d16b2e4", + "Date": "Fri, 30 Oct 2020 12:58:28 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859/analyzeresults/c63eef76-9412-4f5d-a128-794129032a01", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "71" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490/analyzeResults/0fff7bb3-dc39-48aa-a938-2f046d16b2e4", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859/analyzeResults/c63eef76-9412-4f5d-a128-794129032a01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1b30775b8da490a8bc8cdd9bb1538b9a", + "x-ms-client-request-id": "12a2958c7cfcf481e6c128a0bcef0227", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a607adf-ea25-43e0-8b50-d44582e20281", + "apim-request-id": "af6c1242-ff68-490e-9857-06b5e1f9d6bf", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:42 GMT", + "Date": "Fri, 30 Oct 2020 12:58:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:35:42Z", - "lastUpdatedDateTime": "2020-09-09T22:35:42Z" + "createdDateTime": "2020-10-30T12:58:28Z", + "lastUpdatedDateTime": "2020-10-30T12:58:28Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490/analyzeResults/0fff7bb3-dc39-48aa-a938-2f046d16b2e4", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859/analyzeResults/c63eef76-9412-4f5d-a128-794129032a01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8c924ae07b3089c0ab673b0683104199", + "x-ms-client-request-id": "44378c64b2cccf6f8a0fa4def78efecd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b776f359-1fb1-434b-aac6-492c12545c80", + "apim-request-id": "7e76251f-4d74-4aca-8765-b1edcf6418b1", "Content-Length": "284", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:43 GMT", + "Date": "Fri, 30 Oct 2020 12:58:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24", + "x-envoy-upstream-service-time": "26", "x-ms-cs-error-code": "2003" }, "ResponseBody": { "status": "failed", - "createdDateTime": "2020-09-09T22:35:42Z", - "lastUpdatedDateTime": "2020-09-09T22:35:43Z", + "createdDateTime": "2020-10-30T12:58:28Z", + "lastUpdatedDateTime": "2020-10-30T12:58:29Z", "analyzeResult": { "version": null, "readResults": null, @@ -730,28 +499,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/9b45d057-c7cc-4c09-ab74-6a8ab5db7490", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/295bd921-a407-492a-b0fa-fe7024ad8859", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ee1e2536a3c37e439a3909cf893c92e0-d1b8a30d199ff74a-00", + "traceparent": "00-9fd2ef91a7d623409f2669ac4132e567-522b757316d4de49-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "31a4ddd6a35291873ead3fc25574e5df", + "x-ms-client-request-id": "bb179c7330d3976fce1a3f01577b52e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "17d47982-3b64-40bf-b6da-d15520396052", + "apim-request-id": "9677a1fc-6905-47e1-b1cc-d1e084071ca1", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:35:43 GMT", + "Date": "Fri, 30 Oct 2020 12:58:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": [] } @@ -759,7 +528,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1420711756" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(True).json index 726b81885e09e..9f5efef919357 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8bbd493d4cbef14b83739f02e32a50d0-a28f91e3f8670a41-00", + "traceparent": "00-cec2b3bff7024149b0fbb2683fbf6639-97e4403ed12c3844-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3225f516544b04b5cbd89664f321bf89", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "40de020b-5045-47ca-b671-31b10a2f2596", + "apim-request-id": "486be18b-9449-48c9-b832-5fc052563a84", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:11 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/65a69a6a-8b4a-47c2-9e6e-0ad1fab14119", + "Date": "Fri, 30 Oct 2020 12:51:54 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/09eb88d1-3aee-49c0-9506-930e16afc33e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "118" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/65a69a6a-8b4a-47c2-9e6e-0ad1fab14119?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/09eb88d1-3aee-49c0-9506-930e16afc33e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4cb92333247ea597cfd7a66ed2ce4b06", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fdf595af-8d2c-43de-98ba-ca655700648e", + "apim-request-id": "24776878-8a30-41e4-b7f0-fdaa051ac315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:11 GMT", + "Date": "Fri, 30 Oct 2020 12:51:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "modelInfo": { - "modelId": "65a69a6a-8b4a-47c2-9e6e-0ad1fab14119", + "modelId": "09eb88d1-3aee-49c0-9506-930e16afc33e", "status": "creating", - "createdDateTime": "2020-09-09T22:30:12Z", - "lastUpdatedDateTime": "2020-09-09T22:30:12Z" + "createdDateTime": "2020-10-30T12:51:54Z", + "lastUpdatedDateTime": "2020-10-30T12:51:54Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/65a69a6a-8b4a-47c2-9e6e-0ad1fab14119?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/09eb88d1-3aee-49c0-9506-930e16afc33e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c9c7080c91aafe563713bf4580776a6b", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "191ee54c-9ee7-4201-bec5-c4039b342f7e", + "apim-request-id": "513e5151-cc46-4123-ba96-2b18bde52267", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:12 GMT", + "Date": "Fri, 30 Oct 2020 12:51:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "65a69a6a-8b4a-47c2-9e6e-0ad1fab14119", + "modelId": "09eb88d1-3aee-49c0-9506-930e16afc33e", "status": "creating", - "createdDateTime": "2020-09-09T22:30:12Z", - "lastUpdatedDateTime": "2020-09-09T22:30:12Z" + "createdDateTime": "2020-10-30T12:51:54Z", + "lastUpdatedDateTime": "2020-10-30T12:51:54Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/65a69a6a-8b4a-47c2-9e6e-0ad1fab14119?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/09eb88d1-3aee-49c0-9506-930e16afc33e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2c5ba19a2de8f2e25d7f6374ad4731fd", "x-ms-return-client-request-id": "true" @@ -114,56 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0929368d-7ba7-46d2-ab7b-98a5b98e1550", + "apim-request-id": "44ddab47-de42-4a7a-80e6-14e9cc2e6358", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:13 GMT", + "Date": "Fri, 30 Oct 2020 12:51:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "modelInfo": { - "modelId": "65a69a6a-8b4a-47c2-9e6e-0ad1fab14119", - "status": "creating", - "createdDateTime": "2020-09-09T22:30:12Z", - "lastUpdatedDateTime": "2020-09-09T22:30:12Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/65a69a6a-8b4a-47c2-9e6e-0ad1fab14119?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "eb58908df65aa2decdbb146a64522457", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "edbd550a-4348-4d3f-8845-ac8b2d7b4642", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "65a69a6a-8b4a-47c2-9e6e-0ad1fab14119", + "modelId": "09eb88d1-3aee-49c0-9506-930e16afc33e", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:30:12Z", - "lastUpdatedDateTime": "2020-09-09T22:30:15Z" + "createdDateTime": "2020-10-30T12:51:54Z", + "lastUpdatedDateTime": "2020-10-30T12:51:57Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -261,19 +228,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/65a69a6a-8b4a-47c2-9e6e-0ad1fab14119/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/09eb88d1-3aee-49c0-9506-930e16afc33e/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-59623c46ba3d8f4eb8b4e7fe9ab84ffa-817b96f4f1716641-00", + "traceparent": "00-cc287ddb3e3f5f47b6c4468536a16f70-ab1762748dbbe848-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "31d43b6d1e72df1d26d46b2a2de150f0", + "x-ms-client-request-id": "eb58908df65aa2decdbb146a64522457", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -281,75 +248,75 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "07a31ffb-851c-4830-9728-95bb8f54cfd2", + "apim-request-id": "279faa14-7b2b-4534-b92a-d44e0fe53846", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:15 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/65a69a6a-8b4a-47c2-9e6e-0ad1fab14119/analyzeresults/5966de5a-dad8-4f66-b70e-367d1d02b46c", + "Date": "Fri, 30 Oct 2020 12:51:58 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/09eb88d1-3aee-49c0-9506-930e16afc33e/analyzeresults/6f569c24-b40d-44e4-a636-4c3b8ba9dc44", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "138" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/65a69a6a-8b4a-47c2-9e6e-0ad1fab14119/analyzeResults/5966de5a-dad8-4f66-b70e-367d1d02b46c", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/09eb88d1-3aee-49c0-9506-930e16afc33e/analyzeResults/6f569c24-b40d-44e4-a636-4c3b8ba9dc44", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f0b8c2e27e1fa410c2b85f2d18778e0b", + "x-ms-client-request-id": "31d43b6d1e72df1d26d46b2a2de150f0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0ed22f66-355e-4510-b5c6-2dff7ac0ce5d", + "apim-request-id": "bd7b26fb-2ff6-4cc8-83ee-a48ff45606bc", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:15 GMT", + "Date": "Fri, 30 Oct 2020 12:51:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:30:16Z", - "lastUpdatedDateTime": "2020-09-09T22:30:16Z" + "createdDateTime": "2020-10-30T12:51:59Z", + "lastUpdatedDateTime": "2020-10-30T12:51:59Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/65a69a6a-8b4a-47c2-9e6e-0ad1fab14119/analyzeResults/5966de5a-dad8-4f66-b70e-367d1d02b46c", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/09eb88d1-3aee-49c0-9506-930e16afc33e/analyzeResults/6f569c24-b40d-44e4-a636-4c3b8ba9dc44", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "71070c5b00736e8a7278c5858ab374eb", + "x-ms-client-request-id": "f0b8c2e27e1fa410c2b85f2d18778e0b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d30e263d-cab4-4481-b4ec-fa9a9c82edd4", + "apim-request-id": "8dccdfef-5343-4c80-89aa-d7fd103bef8f", "Content-Length": "221", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:16 GMT", + "Date": "Fri, 30 Oct 2020 12:51:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32", + "x-envoy-upstream-service-time": "28", "x-ms-cs-error-code": "2003" }, "ResponseBody": { "status": "failed", - "createdDateTime": "2020-09-09T22:30:16Z", - "lastUpdatedDateTime": "2020-09-09T22:30:16Z", + "createdDateTime": "2020-10-30T12:51:59Z", + "lastUpdatedDateTime": "2020-10-30T12:52:00Z", "analyzeResult": { "version": "2.1.0", "errors": [ @@ -362,28 +329,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/65a69a6a-8b4a-47c2-9e6e-0ad1fab14119", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/09eb88d1-3aee-49c0-9506-930e16afc33e", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6930ae4a8652a64992c2bbd0876bc9f0-57122f4f75e8e345-00", + "traceparent": "00-4f106f8de9d03e4483ba31b6dd432d1f-4adc1b944f671343-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a288246a339aee382a306ebabeefc6ae", + "x-ms-client-request-id": "71070c5b00736e8a7278c5858ab374eb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "cb7f875e-0e5c-41a4-9ad9-99722ba632c9", + "apim-request-id": "ad9906a5-1347-4e85-a44c-cdbff0791c0b", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:16 GMT", + "Date": "Fri, 30 Oct 2020 12:51:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": [] } @@ -391,7 +358,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1222564615" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(True)Async.json index d4302db88913d..b07fe01a5c621 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsFromUriThrowsForNonExistingContent(True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d775d9ef42a3a047bdb7762153e6e793-b99738e943675d4e-00", + "traceparent": "00-1245afad6a08e2488c8cd563b83c894a-e87f421ce8e8474d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7a03c769d88ff4d8168cdc6afdc82414", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "cb3e6398-1402-40ff-bafe-73acb66d2fa7", + "apim-request-id": "2d884b56-0175-4785-b29d-366f5793880d", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:35:19 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e4d6094-a7b4-491c-9e7b-de29ccfcdd07", + "Date": "Fri, 30 Oct 2020 12:58:12 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/28420c09-4dae-400a-a001-7d5054734db6", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "287" + "x-envoy-upstream-service-time": "108" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e4d6094-a7b4-491c-9e7b-de29ccfcdd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/28420c09-4dae-400a-a001-7d5054734db6?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "97fca1aee26fc2fa652a1111a70c5148", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "de1b4854-6778-47a3-b8db-be76d22f1561", + "apim-request-id": "6c4ddaaa-d2d3-4249-aafe-e17b0316806a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:19 GMT", + "Date": "Fri, 30 Oct 2020 12:58:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "2e4d6094-a7b4-491c-9e7b-de29ccfcdd07", + "modelId": "28420c09-4dae-400a-a001-7d5054734db6", "status": "creating", - "createdDateTime": "2020-09-09T22:35:20Z", - "lastUpdatedDateTime": "2020-09-09T22:35:20Z" + "createdDateTime": "2020-10-30T12:58:12Z", + "lastUpdatedDateTime": "2020-10-30T12:58:12Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e4d6094-a7b4-491c-9e7b-de29ccfcdd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/28420c09-4dae-400a-a001-7d5054734db6?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7206322408c87e53524290541338bd93", "x-ms-return-client-request-id": "true" @@ -81,122 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8a6ea9bc-f8fe-4b4e-9821-5b57ebec1dcb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:20 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2e4d6094-a7b4-491c-9e7b-de29ccfcdd07", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:20Z", - "lastUpdatedDateTime": "2020-09-09T22:35:20Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e4d6094-a7b4-491c-9e7b-de29ccfcdd07?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5992ebd0536386cccd401464c7c74d0a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dd23c25e-d47c-4861-b0bd-c9beaf33a2e0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:22 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2e4d6094-a7b4-491c-9e7b-de29ccfcdd07", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:20Z", - "lastUpdatedDateTime": "2020-09-09T22:35:20Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e4d6094-a7b4-491c-9e7b-de29ccfcdd07?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ca46943ab1c1a64c4d7e452d52a5ae2d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "53a415bb-b7c3-4763-b3cc-1d37a4d95bab", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2e4d6094-a7b4-491c-9e7b-de29ccfcdd07", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:20Z", - "lastUpdatedDateTime": "2020-09-09T22:35:20Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e4d6094-a7b4-491c-9e7b-de29ccfcdd07?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "bc407d6df879d0e46580a587f3efb68b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d421b5fc-62ff-4b2a-91b2-5dc1511d4c12", + "apim-request-id": "6b20b826-be88-4d4a-9dba-c714d11eacb9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:24 GMT", + "Date": "Fri, 30 Oct 2020 12:58:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "2e4d6094-a7b4-491c-9e7b-de29ccfcdd07", + "modelId": "28420c09-4dae-400a-a001-7d5054734db6", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:35:20Z", - "lastUpdatedDateTime": "2020-09-09T22:35:23Z" + "createdDateTime": "2020-10-30T12:58:12Z", + "lastUpdatedDateTime": "2020-10-30T12:58:14Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -294,19 +195,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e4d6094-a7b4-491c-9e7b-de29ccfcdd07/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/28420c09-4dae-400a-a001-7d5054734db6/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-15a3b7959a75244b9f0284925af4954a-a5fc126ba55ae645-00", + "traceparent": "00-559b66d6c5573144b6c32a54c57a6cd0-a53060c2b6f9ca4d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7f1a85f4f3f21ed29fec0be50e9f3428", + "x-ms-client-request-id": "5992ebd0536386cccd401464c7c74d0a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -314,75 +215,75 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "12fc0357-2630-462b-8890-7ce4e2120d84", + "apim-request-id": "ad6b3bcd-f971-4899-8e42-90b146214dd6", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:35:24 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e4d6094-a7b4-491c-9e7b-de29ccfcdd07/analyzeresults/7e9a3646-8eb9-4056-a547-d962aab0c74f", + "Date": "Fri, 30 Oct 2020 12:58:14 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/28420c09-4dae-400a-a001-7d5054734db6/analyzeresults/0fbb6c78-01d9-45c9-a3b0-54aa244ef7b5", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "160" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e4d6094-a7b4-491c-9e7b-de29ccfcdd07/analyzeResults/7e9a3646-8eb9-4056-a547-d962aab0c74f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/28420c09-4dae-400a-a001-7d5054734db6/analyzeResults/0fbb6c78-01d9-45c9-a3b0-54aa244ef7b5", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4af7e79190864191af7564410cc4b25e", + "x-ms-client-request-id": "ca46943ab1c1a64c4d7e452d52a5ae2d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c96c3191-6acb-4c95-b92e-4c7572189f12", + "apim-request-id": "5af5e13c-24d1-49da-a71d-87f991409fa5", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:24 GMT", + "Date": "Fri, 30 Oct 2020 12:58:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:35:24Z", - "lastUpdatedDateTime": "2020-09-09T22:35:24Z" + "createdDateTime": "2020-10-30T12:58:14Z", + "lastUpdatedDateTime": "2020-10-30T12:58:14Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e4d6094-a7b4-491c-9e7b-de29ccfcdd07/analyzeResults/7e9a3646-8eb9-4056-a547-d962aab0c74f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/28420c09-4dae-400a-a001-7d5054734db6/analyzeResults/0fbb6c78-01d9-45c9-a3b0-54aa244ef7b5", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "cc38b9c72f8a793bab211d8cecffc1c6", + "x-ms-client-request-id": "bc407d6df879d0e46580a587f3efb68b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5257ee9d-600b-42aa-991d-d2b3eb002015", + "apim-request-id": "4a87db8f-cfa2-4e5f-85c4-cfeba8ccd52b", "Content-Length": "221", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:25 GMT", + "Date": "Fri, 30 Oct 2020 12:58:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19", + "x-envoy-upstream-service-time": "61", "x-ms-cs-error-code": "2003" }, "ResponseBody": { "status": "failed", - "createdDateTime": "2020-09-09T22:35:24Z", - "lastUpdatedDateTime": "2020-09-09T22:35:25Z", + "createdDateTime": "2020-10-30T12:58:14Z", + "lastUpdatedDateTime": "2020-10-30T12:58:15Z", "analyzeResult": { "version": "2.1.0", "errors": [ @@ -395,28 +296,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e4d6094-a7b4-491c-9e7b-de29ccfcdd07", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/28420c09-4dae-400a-a001-7d5054734db6", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2fd32a4ab75eb34d8f5219032a0c6f07-d24090cfe4248f41-00", + "traceparent": "00-617c97d7d93b224e91c5e8d96f7adf92-a3a5c3b3a72a9f4a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0cf57d4b6cf86404f3d8cf7c8e9012da", + "x-ms-client-request-id": "7f1a85f4f3f21ed29fec0be50e9f3428", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "094c1bda-a9be-4527-a060-985bd9281f62", + "apim-request-id": "a533b3e0-3fbb-4462-8336-f74eb628dff4", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:35:25 GMT", + "Date": "Fri, 30 Oct 2020 12:58:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "140" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": [] } @@ -424,7 +325,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "2067142432" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(False).json index c55c14a46e230..dbf5df940175b 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8dc7e9e5da529346a92eacffa97ba3e4-4afbf8b864375d40-00", + "traceparent": "00-a94423d10c37124f9c099ab99598d594-a03d4b13a28e5346-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "673ef15ebcc8b837b5ef84616be4d94c", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "bb6e9116-11ad-4ee8-a287-b63a1cc9b046", + "apim-request-id": "1165ee2d-df9b-417f-b0f0-04ff7ec897a0", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:38 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", + "Date": "Fri, 30 Oct 2020 12:52:19 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0b9417dde267d44ca977ee906786891e", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a05fb47-36af-4f58-ae44-150e25923600", + "apim-request-id": "64e22a9e-55c0-4290-8399-d477f2603f2f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:38 GMT", + "Date": "Fri, 30 Oct 2020 12:52:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", + "modelId": "ddaffbd6-09c2-4dac-a8ee-392d7bfbad57", "status": "creating", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:39Z" + "createdDateTime": "2020-10-30T12:52:19Z", + "lastUpdatedDateTime": "2020-10-30T12:52:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c52e841ebc442e56ee5195b9aee17283", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a452de5e-c098-4dcb-8785-125b34c9341d", + "apim-request-id": "5c478ac4-7346-4e69-9fc4-31799878986d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:40 GMT", + "Date": "Fri, 30 Oct 2020 12:52:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", + "modelId": "ddaffbd6-09c2-4dac-a8ee-392d7bfbad57", "status": "creating", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:39Z" + "createdDateTime": "2020-10-30T12:52:19Z", + "lastUpdatedDateTime": "2020-10-30T12:52:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "765bb9ce32967b73a469be51cea7512f", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6795d2b7-6d95-4620-bfc3-355e079dd93d", + "apim-request-id": "84651d59-a201-4839-bc79-fd077f582a1b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:41 GMT", + "Date": "Fri, 30 Oct 2020 12:52:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", + "modelId": "ddaffbd6-09c2-4dac-a8ee-392d7bfbad57", "status": "creating", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:39Z" + "createdDateTime": "2020-10-30T12:52:19Z", + "lastUpdatedDateTime": "2020-10-30T12:52:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e642656613b62108c1651c164d9326c7", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "87f82429-7334-498f-851c-8fd938582087", + "apim-request-id": "7c1c667e-7b21-406e-9c6b-bd336fbcf3a2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:42 GMT", + "Date": "Fri, 30 Oct 2020 12:52:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", + "modelId": "ddaffbd6-09c2-4dac-a8ee-392d7bfbad57", "status": "creating", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:39Z" + "createdDateTime": "2020-10-30T12:52:19Z", + "lastUpdatedDateTime": "2020-10-30T12:52:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "adc26b04122aec8810b220dafe046047", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2bd62b88-c3a9-461e-aebe-9d4d3b92aa35", + "apim-request-id": "90025191-c643-4c00-a645-be8d1c483299", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:43 GMT", + "Date": "Fri, 30 Oct 2020 12:52:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", + "modelId": "ddaffbd6-09c2-4dac-a8ee-392d7bfbad57", "status": "creating", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:39Z" + "createdDateTime": "2020-10-30T12:52:19Z", + "lastUpdatedDateTime": "2020-10-30T12:52:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "485265008b9ebacdb13ab431165d2e11", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "beec7d76-3bc7-42bf-8ec2-dea5163652cf", + "apim-request-id": "f6be0904-3477-4020-b2ee-a42df5386125", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:44 GMT", + "Date": "Fri, 30 Oct 2020 12:52:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", + "modelId": "ddaffbd6-09c2-4dac-a8ee-392d7bfbad57", "status": "creating", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:39Z" + "createdDateTime": "2020-10-30T12:52:19Z", + "lastUpdatedDateTime": "2020-10-30T12:52:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "634cf643a3e45404dd56d603f22e22bd", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fefaf1ac-3a85-4a1e-86d7-e11cc9ba7bf9", + "apim-request-id": "9d0528e3-7174-405a-8514-41a41e74c040", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:45 GMT", + "Date": "Fri, 30 Oct 2020 12:52:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", + "modelId": "ddaffbd6-09c2-4dac-a8ee-392d7bfbad57", "status": "creating", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:39Z" + "createdDateTime": "2020-10-30T12:52:19Z", + "lastUpdatedDateTime": "2020-10-30T12:52:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e716d405de4178289d08fcf05d56d5b2", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0681c99d-002a-4e1d-8c0c-045aacc279fa", + "apim-request-id": "b4cc2831-0ce7-4400-8593-924cffacabdf", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:46 GMT", + "Date": "Fri, 30 Oct 2020 12:52:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", + "modelId": "ddaffbd6-09c2-4dac-a8ee-392d7bfbad57", "status": "creating", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:39Z" + "createdDateTime": "2020-10-30T12:52:19Z", + "lastUpdatedDateTime": "2020-10-30T12:52:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "08960f83fdb75c6360fe6a47b5c9c782", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4264a4cb-52f6-4d01-8571-8b92f0f0b44b", + "apim-request-id": "3f193afa-2e63-44b6-aa1f-5884ea2f6163", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:47 GMT", + "Date": "Fri, 30 Oct 2020 12:52:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", + "modelId": "ddaffbd6-09c2-4dac-a8ee-392d7bfbad57", "status": "creating", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:39Z" + "createdDateTime": "2020-10-30T12:52:19Z", + "lastUpdatedDateTime": "2020-10-30T12:52:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "412cf717474765d0cdd4c5dca714f686", "x-ms-return-client-request-id": "true" @@ -345,152 +345,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "088b731d-7f45-41d0-a416-cd9631134311", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", - "status": "creating", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:39Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e38023801a97080571b9864273e1c2d4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "42470b0d-4e51-4e18-a82e-953439842626", + "apim-request-id": "9af9f83e-6b93-44d6-8355-03f4d7c05e9c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:49 GMT", + "Date": "Fri, 30 Oct 2020 12:52:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", - "status": "creating", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:39Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "65d87940942a3c6b3f313ae33786b54c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7c762fee-628d-44ff-bb93-47515731ce8c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:50 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", - "status": "creating", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:39Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "92c7e307e448fdebf224cf8ec08df1ec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "95061478-2da4-40fd-bf8d-bfdaee0d8afa", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", - "status": "creating", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:39Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2d9cf111903bec5bb844a465df21d0ea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a6176067-d248-4e35-adb2-476b5b143269", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", + "modelId": "ddaffbd6-09c2-4dac-a8ee-392d7bfbad57", "status": "ready", - "createdDateTime": "2020-09-09T22:30:39Z", - "lastUpdatedDateTime": "2020-09-09T22:30:52Z" + "createdDateTime": "2020-10-30T12:52:19Z", + "lastUpdatedDateTime": "2020-10-30T12:52:31Z" }, "keys": { "clusters": { @@ -560,93 +428,93 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "7", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cd21320f4dcf194f8f957f4bb7d46d57-f4c241a352e8f148-00", + "traceparent": "00-5bb14ef947bb0d47923b7a95d6ea95a0-205e10cf503e184b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8f3a3904301a5b8b8edb7306c4dc7bb1", + "x-ms-client-request-id": "e38023801a97080571b9864273e1c2d4", "x-ms-return-client-request-id": "true" }, "RequestBody": "JVBERlVVVQ==", "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3f7b1e65-324e-4bb9-a4e1-006c4e7c79af", + "apim-request-id": "e3626182-b37f-44de-8303-6a6c2a455834", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:53 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a/analyzeresults/ca682625-a39a-4439-8b75-3765d49e6b43", + "Date": "Fri, 30 Oct 2020 12:52:32 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57/analyzeresults/5d7cb87a-c10f-4191-9c30-862ce4dbfb3b", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a/analyzeResults/ca682625-a39a-4439-8b75-3765d49e6b43", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57/analyzeResults/5d7cb87a-c10f-4191-9c30-862ce4dbfb3b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "46d24e4088ea771187dada0440851dd0", + "x-ms-client-request-id": "65d87940942a3c6b3f313ae33786b54c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6afa5778-d9bb-4351-9f8f-de3b08b4032e", + "apim-request-id": "7b18be25-1bf6-44b1-a5f2-ab8e1c2045c2", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:53 GMT", + "Date": "Fri, 30 Oct 2020 12:52:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:30:53Z", - "lastUpdatedDateTime": "2020-09-09T22:30:53Z" + "createdDateTime": "2020-10-30T12:52:32Z", + "lastUpdatedDateTime": "2020-10-30T12:52:32Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a/analyzeResults/ca682625-a39a-4439-8b75-3765d49e6b43", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57/analyzeResults/5d7cb87a-c10f-4191-9c30-862ce4dbfb3b", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "868ae5536152e0d265409e5f1d5527db", + "x-ms-client-request-id": "92c7e307e448fdebf224cf8ec08df1ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "36f7148b-7251-4f55-9019-4e825e9a43c6", + "apim-request-id": "fea85f31-0929-4f8c-8e75-5f137e138022", "Content-Length": "256", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:54 GMT", + "Date": "Fri, 30 Oct 2020 12:52:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21", + "x-envoy-upstream-service-time": "25", "x-ms-cs-error-code": "2005" }, "ResponseBody": { "status": "failed", - "createdDateTime": "2020-09-09T22:30:53Z", - "lastUpdatedDateTime": "2020-09-09T22:30:54Z", + "createdDateTime": "2020-10-30T12:52:32Z", + "lastUpdatedDateTime": "2020-10-30T12:52:33Z", "analyzeResult": { "version": "2.1.0", "readResults": [], @@ -662,28 +530,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a4474d0a-edeb-4c1f-b3c2-e76070a70f6a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ddaffbd6-09c2-4dac-a8ee-392d7bfbad57", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f436a698d04324478b511a59e9e4c61a-f97ee2047a0f5f43-00", + "traceparent": "00-f6b0e9ef4d185c45ab92b7eed256cbe2-fd7fede73e7f2a42-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9125f2c88a4f7c0028c3073f55871b09", + "x-ms-client-request-id": "2d9cf111903bec5bb844a465df21d0ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "3fe6ac06-738b-4dc8-bce9-ec96439c6537", + "apim-request-id": "fc3e3db6-68e7-4ea0-be12-f31893a06b8c", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:54 GMT", + "Date": "Fri, 30 Oct 2020 12:52:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "158" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": [] } @@ -691,7 +559,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "947280452" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(False)Async.json index a2d696b736af6..684b2a05a9dd1 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-647864c267a89447be92aa0e2da32ac4-a49404942a98b14d-00", + "traceparent": "00-e00c7977a9eb074eb8f880a83f768883-167fa4b28198754b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ea80d9de97e2b60490fbf3c8fe6089a5", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "52b82bbf-db8a-491f-8c20-859cca54fece", + "apim-request-id": "6a84575f-5165-4f52-a5a2-da2693c9e823", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:35:47 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", + "Date": "Fri, 30 Oct 2020 12:58:32 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" + "x-envoy-upstream-service-time": "112" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "06ce6534329ac860ee9e0ca044fb7157", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b87d257-2629-423d-8b47-811e8c3396f7", + "apim-request-id": "4c9425ce-77b8-47db-944e-f0910ea2d523", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:47 GMT", + "Date": "Fri, 30 Oct 2020 12:58:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", + "modelId": "432a1149-0fb4-4748-bad0-5931567a8a87", "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" + "createdDateTime": "2020-10-30T12:58:33Z", + "lastUpdatedDateTime": "2020-10-30T12:58:33Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "46da0644ab04a138328e8f700bf0535a", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "253cc69c-2a43-454b-b07b-fed8a0cf0d9a", + "apim-request-id": "1c2d29d4-2faa-4f3a-a3f2-f487a112e2bb", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:49 GMT", + "Date": "Fri, 30 Oct 2020 12:58:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", + "modelId": "432a1149-0fb4-4748-bad0-5931567a8a87", "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" + "createdDateTime": "2020-10-30T12:58:33Z", + "lastUpdatedDateTime": "2020-10-30T12:58:33Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a41a873458c5acbf79b8fb448a647295", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35d9b793-dd99-406f-8ba0-fedf87faff8f", + "apim-request-id": "2e0dbad6-f672-4c9e-9121-59a879f9df16", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:50 GMT", + "Date": "Fri, 30 Oct 2020 12:58:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", + "modelId": "432a1149-0fb4-4748-bad0-5931567a8a87", "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" + "createdDateTime": "2020-10-30T12:58:33Z", + "lastUpdatedDateTime": "2020-10-30T12:58:33Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f7849c89428688a12c2cd30ba2efbdfe", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71c82d23-ac14-4b0a-a8d8-21de608b4057", + "apim-request-id": "61b13646-94ed-4ac7-8dee-b17bf7e759c2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:51 GMT", + "Date": "Fri, 30 Oct 2020 12:58:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", + "modelId": "432a1149-0fb4-4748-bad0-5931567a8a87", "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" + "createdDateTime": "2020-10-30T12:58:33Z", + "lastUpdatedDateTime": "2020-10-30T12:58:33Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bc6cb24bcde1ec91462ecd4cb0f416ce", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d8af1e6-c964-4d8b-b992-63f7e56a34d6", + "apim-request-id": "38c85630-55d2-4ead-a822-a6c6390be374", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:52 GMT", + "Date": "Fri, 30 Oct 2020 12:58:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", + "modelId": "432a1149-0fb4-4748-bad0-5931567a8a87", "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" + "createdDateTime": "2020-10-30T12:58:33Z", + "lastUpdatedDateTime": "2020-10-30T12:58:33Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6fe7fa1c5c6cf1d3e591779885b3098a", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c027b870-87c5-4c96-b505-6c010232c326", + "apim-request-id": "cd9c8bba-2185-4b09-bb07-6f5fde15bbdb", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:53 GMT", + "Date": "Fri, 30 Oct 2020 12:58:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", + "modelId": "432a1149-0fb4-4748-bad0-5931567a8a87", "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" + "createdDateTime": "2020-10-30T12:58:33Z", + "lastUpdatedDateTime": "2020-10-30T12:58:33Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d8f9fcfab5f7bbb30a98b0587555d838", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ba7deb2-9b6f-4d9e-80a6-fe25ff713309", + "apim-request-id": "59f62d73-eaef-415c-9ab9-9e8e8aa5e09f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:54 GMT", + "Date": "Fri, 30 Oct 2020 12:58:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", + "modelId": "432a1149-0fb4-4748-bad0-5931567a8a87", "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" + "createdDateTime": "2020-10-30T12:58:33Z", + "lastUpdatedDateTime": "2020-10-30T12:58:33Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a8ef04154e07ef92df7bd75056f96692", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b1aae0a-a66e-437e-94fd-a71fa14d2c92", + "apim-request-id": "039ddde7-67ec-4d5d-9de4-e796615f993f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:55 GMT", + "Date": "Fri, 30 Oct 2020 12:58:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", + "modelId": "432a1149-0fb4-4748-bad0-5931567a8a87", "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" + "createdDateTime": "2020-10-30T12:58:33Z", + "lastUpdatedDateTime": "2020-10-30T12:58:33Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b35142243efb67d6462c64d4ab7b7b90", "x-ms-return-client-request-id": "true" @@ -312,9 +312,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f141e106-92c9-446f-8f4a-d865e3fe8ca3", + "apim-request-id": "b4f5a64d-3ce0-4d7d-8baf-c9015f1e4ab2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:56 GMT", + "Date": "Fri, 30 Oct 2020 12:58:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -322,22 +322,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", + "modelId": "432a1149-0fb4-4748-bad0-5931567a8a87", "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" + "createdDateTime": "2020-10-30T12:58:33Z", + "lastUpdatedDateTime": "2020-10-30T12:58:33Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "80823eb961c4ac836a0af97cdd636511", "x-ms-return-client-request-id": "true" @@ -345,185 +345,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b7f92876-8213-47df-a53b-668332cbc262", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "33331e312404d73d2e8861dbe9bd4463", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9d70c40a-8ec9-4367-9cad-550a939e57a9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "17974700e676c3cebfa448f1455a89e3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "817663bf-826a-49dd-945a-b3fc417ef21e", + "apim-request-id": "6e61a28f-2b47-41d2-855e-610c22df85d7", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:59 GMT", + "Date": "Fri, 30 Oct 2020 12:58:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "8ca353c64748948b01ab523cffa8c3ac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bcd6348d-527d-450b-86fd-1279e03310b0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "967c95c54ecb4a9a4f6f735fdb4c91d3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4b47ee1d-f2c1-4656-adcd-f9fadc8413b7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", - "status": "creating", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:35:48Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "95147dfeb71ab81bbb0216ca9392c317", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "04a58d18-effb-401b-9326-51fdc86035fb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", + "modelId": "432a1149-0fb4-4748-bad0-5931567a8a87", "status": "ready", - "createdDateTime": "2020-09-09T22:35:48Z", - "lastUpdatedDateTime": "2020-09-09T22:36:02Z" + "createdDateTime": "2020-10-30T12:58:33Z", + "lastUpdatedDateTime": "2020-10-30T12:58:44Z" }, "keys": { "clusters": { @@ -593,93 +428,63 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "7", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4fa6e985781c7d46b5b45d02be0756cd-20f897ffce380545-00", + "traceparent": "00-915545bc12ebee44931e3c6a25948012-8a84175ca6aa014c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b02b9ce1f2dd7818b8583dd8d32cb8b4", + "x-ms-client-request-id": "33331e312404d73d2e8861dbe9bd4463", "x-ms-return-client-request-id": "true" }, "RequestBody": "JVBERlVVVQ==", "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "0e57f88d-c030-402d-a975-5ea48fcebf67", + "apim-request-id": "eb0efafd-77c7-44ea-a526-252d16d26611", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:36:02 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd/analyzeresults/a1fe3991-009b-4f68-ae28-4443c8107d15", + "Date": "Fri, 30 Oct 2020 12:58:45 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87/analyzeresults/fe8f1dea-8974-4283-9011-9e685d50c59c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "84" + "x-envoy-upstream-service-time": "117" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd/analyzeResults/a1fe3991-009b-4f68-ae28-4443c8107d15", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "823d7e1a2d930e9179c3dbc838d0b6bd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "58e67ca8-e8f7-4fdc-b358-290165345467", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:03Z", - "lastUpdatedDateTime": "2020-09-09T22:36:03Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd/analyzeResults/a1fe3991-009b-4f68-ae28-4443c8107d15", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87/analyzeResults/fe8f1dea-8974-4283-9011-9e685d50c59c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3f7d5cabe1210cf6659cddc27943e48e", + "x-ms-client-request-id": "17974700e676c3cebfa448f1455a89e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "29228dd4-b39b-4cf7-9e8e-91ed76e4537b", + "apim-request-id": "d4294af9-d9ea-4374-b2d8-1d00c8477d62", "Content-Length": "256", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:03 GMT", + "Date": "Fri, 30 Oct 2020 12:58:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21", + "x-envoy-upstream-service-time": "24", "x-ms-cs-error-code": "2005" }, "ResponseBody": { "status": "failed", - "createdDateTime": "2020-09-09T22:36:03Z", - "lastUpdatedDateTime": "2020-09-09T22:36:04Z", + "createdDateTime": "2020-10-30T12:58:45Z", + "lastUpdatedDateTime": "2020-10-30T12:58:46Z", "analyzeResult": { "version": "2.1.0", "readResults": [], @@ -695,28 +500,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26c07c3a-5892-4bc0-a0e2-f3eb5e3094bd", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/432a1149-0fb4-4748-bad0-5931567a8a87", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1fcbe2514b1b8744aa43a293f5d13f66-79b03d17fcd05d49-00", + "traceparent": "00-fe3dc12b3d745842bdac5564d5eedac6-6227d38910cc4947-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "15b0614a4154b4830a1c361a174f40e8", + "x-ms-client-request-id": "8ca353c64748948b01ab523cffa8c3ac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "7d2a4378-085a-4700-8656-534bbda686a6", + "apim-request-id": "7dbf4896-0aeb-45d0-b149-444d4e8099ed", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:36:03 GMT", + "Date": "Fri, 30 Oct 2020 12:58:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": [] } @@ -724,7 +529,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1711115058" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(True).json index 9a8299fd0cbae..a2863ce139edf 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-45c02c07203fa843bcf25d4676306a3a-255abf4ae3d1b74e-00", + "traceparent": "00-da09b229df839f4eb6c59cbfc072f541-b5385ad801f8084d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7ae9de870515cb24ed37c6614e76e750", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "2d2b7308-baee-42db-8275-373e1bacf357", + "apim-request-id": "b232a7ac-b620-4f26-9b6b-67483123c41b", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:34 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f7ac52c6-a804-4056-a9ed-8521c88c3e4a", + "Date": "Fri, 30 Oct 2020 12:52:15 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ad14368c-5ad7-442f-93c4-e24ddc5ab58c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "238" + "x-envoy-upstream-service-time": "94" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f7ac52c6-a804-4056-a9ed-8521c88c3e4a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ad14368c-5ad7-442f-93c4-e24ddc5ab58c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7fd685307ca63ff463c5cb4a220a3008", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c3def53-e93d-484e-be04-88c66571fe31", + "apim-request-id": "572e4938-5aba-4771-af44-284b869e9dfb", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:34 GMT", + "Date": "Fri, 30 Oct 2020 12:52:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "f7ac52c6-a804-4056-a9ed-8521c88c3e4a", + "modelId": "ad14368c-5ad7-442f-93c4-e24ddc5ab58c", "status": "creating", - "createdDateTime": "2020-09-09T22:30:35Z", - "lastUpdatedDateTime": "2020-09-09T22:30:35Z" + "createdDateTime": "2020-10-30T12:52:15Z", + "lastUpdatedDateTime": "2020-10-30T12:52:15Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f7ac52c6-a804-4056-a9ed-8521c88c3e4a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ad14368c-5ad7-442f-93c4-e24ddc5ab58c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "181c6f6a511d96691d7ef5d3bb18d055", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e4f2496-6904-4fdc-b77f-d27c3013f815", + "apim-request-id": "7eed5751-d547-4c78-ba54-1068b0eb408d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:35 GMT", + "Date": "Fri, 30 Oct 2020 12:52:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "f7ac52c6-a804-4056-a9ed-8521c88c3e4a", + "modelId": "ad14368c-5ad7-442f-93c4-e24ddc5ab58c", "status": "creating", - "createdDateTime": "2020-09-09T22:30:35Z", - "lastUpdatedDateTime": "2020-09-09T22:30:35Z" + "createdDateTime": "2020-10-30T12:52:15Z", + "lastUpdatedDateTime": "2020-10-30T12:52:15Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f7ac52c6-a804-4056-a9ed-8521c88c3e4a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ad14368c-5ad7-442f-93c4-e24ddc5ab58c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cad65f396df60b94eaa9174f3adaa8e3", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0255706d-46c2-4614-b3be-32a49d59d91b", + "apim-request-id": "61f28485-585b-4d2f-ade9-f723aa0586dc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:36 GMT", + "Date": "Fri, 30 Oct 2020 12:52:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "f7ac52c6-a804-4056-a9ed-8521c88c3e4a", + "modelId": "ad14368c-5ad7-442f-93c4-e24ddc5ab58c", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:30:35Z", - "lastUpdatedDateTime": "2020-09-09T22:30:37Z" + "createdDateTime": "2020-10-30T12:52:15Z", + "lastUpdatedDateTime": "2020-10-30T12:52:17Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,17 +228,17 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f7ac52c6-a804-4056-a9ed-8521c88c3e4a/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ad14368c-5ad7-442f-93c4-e24ddc5ab58c/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "7", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3fcc5d21acf68b4bbd67170094d310f4-f37240add26bc343-00", + "traceparent": "00-33ffa7a530f4ad41b2264d63cd5c892c-9abbdab2d90d484d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "def7bd07ce5ade321c3f62288621844b", "x-ms-return-client-request-id": "true" @@ -246,25 +246,25 @@ "RequestBody": "JVBERlVVVQ==", "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6af23671-0b1d-4edc-bdbc-b7c7477f7d58", + "apim-request-id": "e79983d1-f24c-4a59-8650-71a34524bc64", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:36 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f7ac52c6-a804-4056-a9ed-8521c88c3e4a/analyzeresults/0c1e6359-b6b7-4dd5-b766-207a4e628018", + "Date": "Fri, 30 Oct 2020 12:52:18 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ad14368c-5ad7-442f-93c4-e24ddc5ab58c/analyzeresults/8d598e9d-05ff-4832-9280-94ba6773db80", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-envoy-upstream-service-time": "92" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f7ac52c6-a804-4056-a9ed-8521c88c3e4a/analyzeResults/0c1e6359-b6b7-4dd5-b766-207a4e628018", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ad14368c-5ad7-442f-93c4-e24ddc5ab58c/analyzeResults/8d598e9d-05ff-4832-9280-94ba6773db80", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c21075f46534fc12db102e743a195b42", "x-ms-return-client-request-id": "true" @@ -272,40 +272,10 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc968246-36ec-42b7-a522-2d3951f5f226", - "Content-Length": "109", + "apim-request-id": "ce355ac8-bb06-4e30-8b4f-35eabf9fdbc1", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:30:37Z", - "lastUpdatedDateTime": "2020-09-09T22:30:37Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f7ac52c6-a804-4056-a9ed-8521c88c3e4a/analyzeResults/0c1e6359-b6b7-4dd5-b766-207a4e628018", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "fdcc12d5f2206bfb2cf7aeb60b6c85c8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e13bdc58-65fd-4917-b3d7-f46a9f5bf132", - "Content-Length": "239", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:37 GMT", + "Date": "Fri, 30 Oct 2020 12:52:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "31", @@ -313,42 +283,42 @@ }, "ResponseBody": { "status": "failed", - "createdDateTime": "2020-09-09T22:30:37Z", - "lastUpdatedDateTime": "2020-09-09T22:30:38Z", + "createdDateTime": "2020-10-30T12:52:18Z", + "lastUpdatedDateTime": "2020-10-30T12:52:19Z", "analyzeResult": { "version": "2.1.0", "errors": [ { "code": "2005", - "message": "The input data is not a valid image or password protected." + "message": "The file submitted couldn\u0027t be parsed. This can be due to one of the following reasons: the file format is not supported ( Supported formats include JPEG, PNG, BMP, PDF and TIFF), the file is corrupted or password protected." } ] } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f7ac52c6-a804-4056-a9ed-8521c88c3e4a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ad14368c-5ad7-442f-93c4-e24ddc5ab58c", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b1b3285335b78449aaf3ab857facf4d4-15d4208deb578347-00", + "traceparent": "00-b53e446ec189c44590dfa1140a0b5006-78bb12e4349c6a41-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c45bcc25e5c9a1afabfa0349a0bea402", + "x-ms-client-request-id": "fdcc12d5f2206bfb2cf7aeb60b6c85c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "4c4c7e50-734b-43f5-9991-18c3d014b2ac", + "apim-request-id": "7a2a7055-f389-4488-b55c-19da35e4d4aa", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:38 GMT", + "Date": "Fri, 30 Oct 2020 12:52:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "167" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": [] } @@ -356,7 +326,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1867083717" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(True)Async.json index d0a30d84e3889..1c0557a636f01 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsThrowsForDamagedFile(True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-24b794892564af4fa69ce123f9d9126f-dc4f79cc9328574c-00", + "traceparent": "00-6a956165ff534e429c5e22268dd69cea-0b6276325ef1054d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ed63cc4483dbc975159b68fa2761279f", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "efb5c717-3b0d-47f2-8f85-2637d6be6f79", + "apim-request-id": "aec826b6-e3dc-4953-a5e4-101c6c16a75a", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:35:43 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/034e3604-d196-467b-a804-b8ec53effec7", + "Date": "Fri, 30 Oct 2020 12:58:30 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8ab651d-e208-463d-ab19-ab027b012ae3", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "257" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/034e3604-d196-467b-a804-b8ec53effec7?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8ab651d-e208-463d-ab19-ab027b012ae3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0396934394e6a47e85f0e7a559c9f768", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "89800dee-cbe4-4be1-a067-ce1271c18af0", + "apim-request-id": "2295721a-f689-4231-b7e8-83881df74259", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:43 GMT", + "Date": "Fri, 30 Oct 2020 12:58:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "332" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "034e3604-d196-467b-a804-b8ec53effec7", + "modelId": "a8ab651d-e208-463d-ab19-ab027b012ae3", "status": "creating", - "createdDateTime": "2020-09-09T22:35:44Z", - "lastUpdatedDateTime": "2020-09-09T22:35:44Z" + "createdDateTime": "2020-10-30T12:58:30Z", + "lastUpdatedDateTime": "2020-10-30T12:58:30Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/034e3604-d196-467b-a804-b8ec53effec7?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8ab651d-e208-463d-ab19-ab027b012ae3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "37cf48a5a0c672a78ef06becc85b0d2a", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a23de50-d451-4e5b-8079-ec67c0fde243", + "apim-request-id": "42b92701-a9aa-44fe-b374-6e9336edd7a8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:44 GMT", + "Date": "Fri, 30 Oct 2020 12:58:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "034e3604-d196-467b-a804-b8ec53effec7", + "modelId": "a8ab651d-e208-463d-ab19-ab027b012ae3", "status": "creating", - "createdDateTime": "2020-09-09T22:35:44Z", - "lastUpdatedDateTime": "2020-09-09T22:35:44Z" + "createdDateTime": "2020-10-30T12:58:30Z", + "lastUpdatedDateTime": "2020-10-30T12:58:30Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/034e3604-d196-467b-a804-b8ec53effec7?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8ab651d-e208-463d-ab19-ab027b012ae3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "890fd0288f50af144dbf67ea9bd0704c", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad896f4f-b130-49fd-89d3-6d4b8786a8ce", + "apim-request-id": "3a104fd8-c402-48d5-ab70-ab87066a9985", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:46 GMT", + "Date": "Fri, 30 Oct 2020 12:58:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "034e3604-d196-467b-a804-b8ec53effec7", + "modelId": "a8ab651d-e208-463d-ab19-ab027b012ae3", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:35:44Z", - "lastUpdatedDateTime": "2020-09-09T22:35:46Z" + "createdDateTime": "2020-10-30T12:58:30Z", + "lastUpdatedDateTime": "2020-10-30T12:58:31Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,17 +228,17 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/034e3604-d196-467b-a804-b8ec53effec7/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8ab651d-e208-463d-ab19-ab027b012ae3/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "7", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a552875d2982a242ad579d9da7995fb2-032aa137c2976044-00", + "traceparent": "00-8294b5b3eeee864aaad6a7752bf1e158-0107cb9337244045-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "df55ffa3ef91a3d8ec2475f62992dc29", "x-ms-return-client-request-id": "true" @@ -246,25 +246,25 @@ "RequestBody": "JVBERlVVVQ==", "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7c140f98-2c7e-4566-97aa-224094217323", + "apim-request-id": "0936d091-90d3-403d-9baa-49c16f07bf85", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:35:46 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/034e3604-d196-467b-a804-b8ec53effec7/analyzeresults/18e3c60f-f3b5-4366-a17b-09753ce72dc4", + "Date": "Fri, 30 Oct 2020 12:58:32 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a8ab651d-e208-463d-ab19-ab027b012ae3/analyzeresults/f43e1193-a3dd-4993-82e9-031b7e393267", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/034e3604-d196-467b-a804-b8ec53effec7/analyzeResults/18e3c60f-f3b5-4366-a17b-09753ce72dc4", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8ab651d-e208-463d-ab19-ab027b012ae3/analyzeResults/f43e1193-a3dd-4993-82e9-031b7e393267", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "887dbde36db915173320ea0738bdd6bd", "x-ms-return-client-request-id": "true" @@ -272,83 +272,53 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3fa62b9d-ac6d-45a8-91f4-041ccbbf91fc", - "Content-Length": "109", + "apim-request-id": "713d5301-980e-417e-a5fb-edf20943b475", + "Content-Length": "405", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:46 GMT", + "Date": "Fri, 30 Oct 2020 12:58:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:35:47Z", - "lastUpdatedDateTime": "2020-09-09T22:35:47Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/034e3604-d196-467b-a804-b8ec53effec7/analyzeResults/18e3c60f-f3b5-4366-a17b-09753ce72dc4", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c9481e7f2d063899f86c9d2c1a1e86ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "350c5f9d-dc29-4bb7-8cae-5538c0bef380", - "Content-Length": "239", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:35:47 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28", + "x-envoy-upstream-service-time": "39", "x-ms-cs-error-code": "2005" }, "ResponseBody": { "status": "failed", - "createdDateTime": "2020-09-09T22:35:47Z", - "lastUpdatedDateTime": "2020-09-09T22:35:47Z", + "createdDateTime": "2020-10-30T12:58:32Z", + "lastUpdatedDateTime": "2020-10-30T12:58:33Z", "analyzeResult": { "version": "2.1.0", "errors": [ { "code": "2005", - "message": "The input data is not a valid image or password protected." + "message": "The file submitted couldn\u0027t be parsed. This can be due to one of the following reasons: the file format is not supported ( Supported formats include JPEG, PNG, BMP, PDF and TIFF), the file is corrupted or password protected." } ] } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/034e3604-d196-467b-a804-b8ec53effec7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a8ab651d-e208-463d-ab19-ab027b012ae3", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bad9d0eb27ae594c813d5ddb164f2d27-d50b232a099ae74f-00", + "traceparent": "00-7775e7bf89e493479a1ff986a1a15acc-60d6937957485d4c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "de063ee2e8523593e740ac7104d16b2e", + "x-ms-client-request-id": "c9481e7f2d063899f86c9d2c1a1e86ba", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "63e7049d-aad7-4f8e-bdd8-ccdff69f41a6", + "apim-request-id": "22ecda8e-78d6-49bf-8b5b-5a0bc658b400", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:35:47 GMT", + "Date": "Fri, 30 Oct 2020 12:58:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": [] } @@ -356,7 +326,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "509420641" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,False).json index c18369afd3696..629c78f988709 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-996813d327a6e64ca29d0802c3efc8dd-a36f8d11ad9d5f47-00", + "traceparent": "00-f1ced5005271534ea5c8c1192949feda-9763decc4b250048-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "94b41b8df484352b9af2b14f7548995a", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "0e09da79-17ab-48c5-b573-ca9eb21fbc6d", + "apim-request-id": "fba47eba-18b6-4555-bf0a-b5bb32c5ea2a", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:51:15 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/451ceee9-2134-44b6-9321-6e2c02495c10", + "Date": "Fri, 30 Oct 2020 12:52:58 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/451ceee9-2134-44b6-9321-6e2c02495c10?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1af0a7485e323a42615be2d62fa8a2f9", "x-ms-return-client-request-id": "true" @@ -48,9 +48,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "36c9ec05-677a-4245-81b3-f02646c157a0", + "apim-request-id": "8535a912-8b05-4d32-a9a4-1e2901fada0a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:15 GMT", + "Date": "Fri, 30 Oct 2020 12:52:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,22 +58,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "451ceee9-2134-44b6-9321-6e2c02495c10", + "modelId": "d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff", "status": "creating", - "createdDateTime": "2020-09-10T23:51:15Z", - "lastUpdatedDateTime": "2020-09-10T23:51:15Z" + "createdDateTime": "2020-10-30T12:52:58Z", + "lastUpdatedDateTime": "2020-10-30T12:52:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/451ceee9-2134-44b6-9321-6e2c02495c10?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f6bb41b7b089de4d877d24df22355f4c", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37d597d3-68ae-4892-a308-dbdca8ea51b1", + "apim-request-id": "e9100c2b-0a65-4a52-a075-5424e9d425a0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:16 GMT", + "Date": "Fri, 30 Oct 2020 12:52:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "451ceee9-2134-44b6-9321-6e2c02495c10", + "modelId": "d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff", "status": "creating", - "createdDateTime": "2020-09-10T23:51:15Z", - "lastUpdatedDateTime": "2020-09-10T23:51:15Z" + "createdDateTime": "2020-10-30T12:52:58Z", + "lastUpdatedDateTime": "2020-10-30T12:52:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/451ceee9-2134-44b6-9321-6e2c02495c10?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a7da11c070fd2efad8793328115506f2", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "336dcaba-990d-41c3-8137-a7af9371f0b0", + "apim-request-id": "57da80be-bf6f-451a-93d4-4c13be629c6e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:17 GMT", + "Date": "Fri, 30 Oct 2020 12:53:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "451ceee9-2134-44b6-9321-6e2c02495c10", + "modelId": "d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-10T23:51:15Z", - "lastUpdatedDateTime": "2020-09-10T23:51:17Z" + "createdDateTime": "2020-10-30T12:52:58Z", + "lastUpdatedDateTime": "2020-10-30T12:53:00Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,17 +228,17 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/451ceee9-2134-44b6-9321-6e2c02495c10/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-83b1be3132b931499eef14f5298b62ee-6271cd9354e5d141-00", + "traceparent": "00-da0bb1f40e3d5c4a960f1c0a0f37cc02-7bd61ae50a72b44a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3498b84fa38c97d05a1192b53a63182c", "x-ms-return-client-request-id": "true" @@ -248,10 +248,10 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "94251339-1b01-49c7-a395-60e88c01e81e", + "apim-request-id": "4a8bfa22-1eef-485e-ac9e-a82ec8051244", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:51:18 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/451ceee9-2134-44b6-9321-6e2c02495c10/analyzeresults/bfa07a70-bc87-41bc-933e-b6b35836d088", + "Date": "Fri, 30 Oct 2020 12:53:01 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff/analyzeresults/494d96d2-67f1-4af2-9e94-a09ea2110182", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "73" @@ -259,14 +259,14 @@ "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/451ceee9-2134-44b6-9321-6e2c02495c10/analyzeResults/bfa07a70-bc87-41bc-933e-b6b35836d088", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff/analyzeResults/494d96d2-67f1-4af2-9e94-a09ea2110182", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1d1696fcfacd46fb468d1d0f7d24cc32", "x-ms-return-client-request-id": "true" @@ -274,29 +274,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "96b03cf4-5d73-41db-9db9-eb4ae33e041d", + "apim-request-id": "1ffcdcc6-c720-48cd-adbc-fac803d7c2fe", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:18 GMT", + "Date": "Fri, 30 Oct 2020 12:53:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:51:18Z", - "lastUpdatedDateTime": "2020-09-10T23:51:18Z" + "createdDateTime": "2020-10-30T12:53:01Z", + "lastUpdatedDateTime": "2020-10-30T12:53:01Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/451ceee9-2134-44b6-9321-6e2c02495c10/analyzeResults/bfa07a70-bc87-41bc-933e-b6b35836d088", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff/analyzeResults/494d96d2-67f1-4af2-9e94-a09ea2110182", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6a8f32772a9d1dbf41434debdd45f475", "x-ms-return-client-request-id": "true" @@ -304,29 +304,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e5d94e0-d0c8-43ea-8b67-fcdc1ceddb6e", + "apim-request-id": "387796c1-9b8e-492f-acd0-33b65c731906", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:19 GMT", + "Date": "Fri, 30 Oct 2020 12:53:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:51:18Z", - "lastUpdatedDateTime": "2020-09-10T23:51:18Z" + "createdDateTime": "2020-10-30T12:53:01Z", + "lastUpdatedDateTime": "2020-10-30T12:53:02Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/451ceee9-2134-44b6-9321-6e2c02495c10/analyzeResults/bfa07a70-bc87-41bc-933e-b6b35836d088", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff/analyzeResults/494d96d2-67f1-4af2-9e94-a09ea2110182", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7b2b0761e83e5524bc51eeff85c01935", "x-ms-return-client-request-id": "true" @@ -334,29 +334,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79be4922-8443-46bb-89b8-051fa60dbd3d", + "apim-request-id": "63ff21ab-60cb-40a5-9d12-e7a984e96389", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:20 GMT", + "Date": "Fri, 30 Oct 2020 12:53:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:51:18Z", - "lastUpdatedDateTime": "2020-09-10T23:51:18Z" + "createdDateTime": "2020-10-30T12:53:01Z", + "lastUpdatedDateTime": "2020-10-30T12:53:02Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/451ceee9-2134-44b6-9321-6e2c02495c10/analyzeResults/bfa07a70-bc87-41bc-933e-b6b35836d088", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff/analyzeResults/494d96d2-67f1-4af2-9e94-a09ea2110182", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "073e6045aed3d28fd6f9dc8aad0f6901", "x-ms-return-client-request-id": "true" @@ -364,29 +364,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2cf9d5c8-9028-4319-987e-0dee25a40bc9", + "apim-request-id": "bfb9d0c0-eb1c-4932-b5c3-47a57046d640", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:21 GMT", + "Date": "Fri, 30 Oct 2020 12:53:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:51:18Z", - "lastUpdatedDateTime": "2020-09-10T23:51:18Z" + "createdDateTime": "2020-10-30T12:53:01Z", + "lastUpdatedDateTime": "2020-10-30T12:53:02Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/451ceee9-2134-44b6-9321-6e2c02495c10/analyzeResults/bfa07a70-bc87-41bc-933e-b6b35836d088", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff/analyzeResults/494d96d2-67f1-4af2-9e94-a09ea2110182", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "76aea89950f98ff30d3aad4b3cc09780", "x-ms-return-client-request-id": "true" @@ -394,18 +394,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9a7550e3-2fb4-48f2-8974-85e75857f516", + "apim-request-id": "f0a4cc52-fbf8-4e2e-bc33-8348f28ae126", "Content-Length": "6054", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:22 GMT", + "Date": "Fri, 30 Oct 2020 12:53:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:51:18Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z", + "createdDateTime": "2020-10-30T12:53:01Z", + "lastUpdatedDateTime": "2020-10-30T12:53:06Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -859,29 +859,80 @@ ], "documentResults": [ { - "docType": "custom:451ceee9-2134-44b6-9321-6e2c02495c10", - "modelId": "451ceee9-2134-44b6-9321-6e2c02495c10", + "docType": "custom:d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff", + "modelId": "d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff", "pageRange": [ 1, 1 ], "fields": { - "Tax": { + "Total": { "type": "string", - "valueString": "$4.00", - "text": "$4.00", + "valueString": "$144.00", + "text": "$144.00", "page": 1, "boundingBox": [ - 1458.0, - 1615.0, + 1427.0, + 1669.0, 1529.0, - 1615.0, + 1669.0, 1529.0, - 1643.0, - 1458.0, - 1643.0 + 1698.0, + 1427.0, + 1698.0 ], - "confidence": 0.994 + "confidence": 0.991 + }, + "DatedAs": { + "type": "string", + "valueString": "12/20/2020", + "text": "12/20/2020", + "page": 1, + "boundingBox": [ + 1165.0, + 420.0, + 1317.0, + 420.0, + 1317.0, + 449.0, + 1165.0, + 449.0 + ], + "confidence": 0.99 + }, + "VendorName": { + "type": "string", + "valueString": "Hillary Swank", + "text": "Hillary Swank", + "page": 1, + "boundingBox": [ + 349.0, + 609.0, + 521.0, + 609.0, + 521.0, + 639.0, + 349.0, + 639.0 + ], + "confidence": 0.93 + }, + "Email": { + "type": "string", + "valueString": "accounts@herolimited.com", + "text": "accounts@herolimited.com", + "page": 1, + "boundingBox": [ + 164.0, + 479.0, + 478.0, + 479.0, + 478.0, + 503.0, + 164.0, + 503.0 + ], + "confidence": 1.0 }, "Website": { "type": "string", @@ -900,22 +951,38 @@ ], "confidence": 0.95 }, - "CompanyName": { + "Signature": { "type": "string", - "valueString": "Higgly Wiggly Books", - "text": "Higgly Wiggly Books", + "valueString": "Bernie Sanders", + "text": "Bernie Sanders", "page": 1, "boundingBox": [ - 375.0, - 646.0, - 629.0, - 646.0, - 629.0, - 679.0, - 375.0, - 679.0 + 489.0, + 1670.0, + 765.0, + 1670.0, + 765.0, + 1708.0, + 489.0, + 1708.0 ], - "confidence": 0.95 + "confidence": 0.998 + }, + "Quantity": { + "type": "number", + "text": "20", + "page": 1, + "boundingBox": [ + 861.0, + 1094.0, + 892.0, + 1094.0, + 892.0, + 1119.0, + 861.0, + 1119.0 + ], + "confidence": 0.962 }, "CompanyPhoneNumber": { "type": "string", @@ -934,22 +1001,22 @@ ], "confidence": 1.0 }, - "Signature": { + "Tax": { "type": "string", - "valueString": "Bernie Sanders", - "text": "Bernie Sanders", + "valueString": "$4.00", + "text": "$4.00", "page": 1, "boundingBox": [ - 489.0, - 1670.0, - 765.0, - 1670.0, - 765.0, - 1708.0, - 489.0, - 1708.0 + 1458.0, + 1615.0, + 1529.0, + 1615.0, + 1529.0, + 1643.0, + 1458.0, + 1643.0 ], - "confidence": 0.998 + "confidence": 0.994 }, "PurchaseOrderNumber": { "type": "string", @@ -968,6 +1035,23 @@ ], "confidence": 0.94 }, + "CompanyAddress": { + "type": "string", + "valueString": "938 NE Burner Road Boulder City, CO 92848", + "text": "938 NE Burner Road Boulder City, CO 92848", + "page": 1, + "boundingBox": [ + 273.0, + 685.0, + 565.0, + 685.0, + 565.0, + 751.0, + 273.0, + 751.0 + ], + "confidence": 1.0 + }, "Merchant": { "type": "string", "valueString": "Hero Limited", @@ -985,40 +1069,6 @@ ], "confidence": 0.97 }, - "DatedAs": { - "type": "string", - "valueString": "12/20/2020", - "text": "12/20/2020", - "page": 1, - "boundingBox": [ - 1165.0, - 420.0, - 1317.0, - 420.0, - 1317.0, - 449.0, - 1165.0, - 449.0 - ], - "confidence": 0.99 - }, - "Subtotal": { - "type": "string", - "valueString": "$140.00", - "text": "$140.00", - "page": 1, - "boundingBox": [ - 1426.0, - 1572.0, - 1531.0, - 1572.0, - 1531.0, - 1599.0, - 1426.0, - 1599.0 - ], - "confidence": 0.984 - }, "PhoneNumber": { "type": "string", "valueString": "555-348-6512", @@ -1036,89 +1086,39 @@ ], "confidence": 0.89 }, - "VendorName": { - "type": "string", - "valueString": "Hillary Swank", - "text": "Hillary Swank", - "page": 1, - "boundingBox": [ - 349.0, - 609.0, - 521.0, - 609.0, - 521.0, - 639.0, - 349.0, - 639.0 - ], - "confidence": 0.93 - }, - "Total": { - "type": "string", - "valueString": "$144.00", - "text": "$144.00", - "page": 1, - "boundingBox": [ - 1427.0, - 1669.0, - 1529.0, - 1669.0, - 1529.0, - 1698.0, - 1427.0, - 1698.0 - ], - "confidence": 0.991 - }, - "CompanyAddress": { + "CompanyName": { "type": "string", - "valueString": "938 NE Burner Road Boulder City, CO 92848", - "text": "938 NE Burner Road Boulder City, CO 92848", - "page": 1, - "boundingBox": [ - 273.0, - 685.0, - 565.0, - 685.0, - 565.0, - 751.0, - 273.0, - 751.0 - ], - "confidence": 1.0 - }, - "Quantity": { - "type": "number", - "text": "20", + "valueString": "Higgly Wiggly Books", + "text": "Higgly Wiggly Books", "page": 1, "boundingBox": [ - 861.0, - 1094.0, - 892.0, - 1094.0, - 892.0, - 1119.0, - 861.0, - 1119.0 + 375.0, + 646.0, + 629.0, + 646.0, + 629.0, + 679.0, + 375.0, + 679.0 ], - "confidence": 0.962 + "confidence": 0.95 }, - "Email": { + "Subtotal": { "type": "string", - "valueString": "accounts@herolimited.com", - "text": "accounts@herolimited.com", + "valueString": "$140.00", + "text": "$140.00", "page": 1, "boundingBox": [ - 164.0, - 479.0, - 478.0, - 479.0, - 478.0, - 503.0, - 164.0, - 503.0 + 1426.0, + 1572.0, + 1531.0, + 1572.0, + 1531.0, + 1599.0, + 1426.0, + 1599.0 ], - "confidence": 1.0 + "confidence": 0.984 } }, "docTypeConfidence": 1.0 @@ -1129,15 +1129,15 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/451ceee9-2134-44b6-9321-6e2c02495c10", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d47bdf9c-d5c2-45f6-ae7c-8f86a7b5d8ff", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-013acf70e26bc34d965363f3d0120436-51234fcb0e8a2042-00", + "traceparent": "00-875a97192a936e4d9250d2fa14c923af-907d815adb59f24a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7da61729ec06b3a17759a5450b9aa7ad", "x-ms-return-client-request-id": "true" @@ -1145,12 +1145,12 @@ "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "56c1f4ac-a742-4bdb-ae56-425957b3d5da", + "apim-request-id": "58fa374c-f57e-47bf-88c5-a1912e779655", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:51:22 GMT", + "Date": "Fri, 30 Oct 2020 12:53:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": [] } @@ -1158,7 +1158,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1947286724" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,False)Async.json index 6495713cedbf1..37dd2c9087f7e 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-448acb328709274d9df62daa5b2ccdd8-88690dd49036244e-00", + "traceparent": "00-6874939025283e40955178b4fa579e5d-64946aed65c32f4b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "945a680945569d3a4e6c05ae0ce417a3", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "4c8475b3-1383-4db5-b7d0-acfea270fa0e", + "apim-request-id": "56f3f15f-8b93-4cc3-b7d2-fafe648bae5a", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:33 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b", + "Date": "Fri, 30 Oct 2020 12:59:13 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e549fd59-adb7-49e9-833b-9a3a7f06a80f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "75" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e549fd59-adb7-49e9-833b-9a3a7f06a80f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "be64b4f120983fc49e7bc30bc5a267a4", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "16a92655-be1a-4491-838f-ced98f434313", + "apim-request-id": "1b1cf406-52c2-4c75-9ad8-5d91849dd660", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:33 GMT", + "Date": "Fri, 30 Oct 2020 12:59:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b", + "modelId": "e549fd59-adb7-49e9-833b-9a3a7f06a80f", "status": "creating", - "createdDateTime": "2020-09-10T23:53:34Z", - "lastUpdatedDateTime": "2020-09-10T23:53:34Z" + "createdDateTime": "2020-10-30T12:59:13Z", + "lastUpdatedDateTime": "2020-10-30T12:59:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e549fd59-adb7-49e9-833b-9a3a7f06a80f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bc6242a1c83084b8b7193bcc70562d58", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ccde122-e7f3-496d-b0bb-3537bff399c4", + "apim-request-id": "67441020-a161-4504-8c8b-35bca24a8f1f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:35 GMT", + "Date": "Fri, 30 Oct 2020 12:59:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b", + "modelId": "e549fd59-adb7-49e9-833b-9a3a7f06a80f", "status": "creating", - "createdDateTime": "2020-09-10T23:53:34Z", - "lastUpdatedDateTime": "2020-09-10T23:53:34Z" + "createdDateTime": "2020-10-30T12:59:13Z", + "lastUpdatedDateTime": "2020-10-30T12:59:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e549fd59-adb7-49e9-833b-9a3a7f06a80f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cfaef709e1f6e9f9a31af5da822ed8ab", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "87a68132-9fdc-4820-97b5-e6045b4ab845", + "apim-request-id": "3ea4b0be-e6f9-4c4a-8704-84d636c823b6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:36 GMT", + "Date": "Fri, 30 Oct 2020 12:59:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b", + "modelId": "e549fd59-adb7-49e9-833b-9a3a7f06a80f", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-10T23:53:34Z", - "lastUpdatedDateTime": "2020-09-10T23:53:35Z" + "createdDateTime": "2020-10-30T12:59:13Z", + "lastUpdatedDateTime": "2020-10-30T12:59:15Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,17 +228,17 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e549fd59-adb7-49e9-833b-9a3a7f06a80f/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1c97e5c7d0710b41819f831fe58830ab-df832864387f4a48-00", + "traceparent": "00-697df471543d2a4fbbe8ee1f33674bdd-3ca74c0d2073fb46-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ca0c61055a812972fbdf067fe4f8cf48", "x-ms-return-client-request-id": "true" @@ -248,25 +248,25 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d0d123aa-c2f6-4dc3-b8c2-831e6c7f393a", + "apim-request-id": "003194b6-71be-4686-b83b-b2b6740f0b8a", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:36 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b/analyzeresults/2b83156a-670d-40f7-a079-4cf45c323aee", + "Date": "Fri, 30 Oct 2020 12:59:17 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e549fd59-adb7-49e9-833b-9a3a7f06a80f/analyzeresults/ad92fc84-1b40-4a42-a0f3-40176b66217c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b/analyzeResults/2b83156a-670d-40f7-a079-4cf45c323aee", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e549fd59-adb7-49e9-833b-9a3a7f06a80f/analyzeResults/ad92fc84-1b40-4a42-a0f3-40176b66217c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cd016b4d97f4bfad48791815d2dd0188", "x-ms-return-client-request-id": "true" @@ -274,29 +274,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a608b34a-0c14-4f13-980a-96f17c50872e", + "apim-request-id": "7b4d147a-9f93-4c90-bb9a-883c0c386944", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:36 GMT", + "Date": "Fri, 30 Oct 2020 12:59:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:36Z", - "lastUpdatedDateTime": "2020-09-10T23:53:36Z" + "createdDateTime": "2020-10-30T12:59:17Z", + "lastUpdatedDateTime": "2020-10-30T12:59:17Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b/analyzeResults/2b83156a-670d-40f7-a079-4cf45c323aee", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e549fd59-adb7-49e9-833b-9a3a7f06a80f/analyzeResults/ad92fc84-1b40-4a42-a0f3-40176b66217c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0fc790416249aed68584d316da7904ab", "x-ms-return-client-request-id": "true" @@ -304,29 +304,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85d15f0a-248f-4ffd-a6b6-21b86473f395", + "apim-request-id": "8dc72955-bd36-46bc-9190-281bd8de128d", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:37 GMT", + "Date": "Fri, 30 Oct 2020 12:59:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "72" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:36Z", - "lastUpdatedDateTime": "2020-09-10T23:53:36Z" + "createdDateTime": "2020-10-30T12:59:17Z", + "lastUpdatedDateTime": "2020-10-30T12:59:18Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b/analyzeResults/2b83156a-670d-40f7-a079-4cf45c323aee", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e549fd59-adb7-49e9-833b-9a3a7f06a80f/analyzeResults/ad92fc84-1b40-4a42-a0f3-40176b66217c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "178dad4b0a2c6db7b34d8208415c561e", "x-ms-return-client-request-id": "true" @@ -334,29 +334,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c7613d9-e559-437a-8441-46f835e57f2f", + "apim-request-id": "3479dbeb-103c-4967-8630-88c4f750727c", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:38 GMT", + "Date": "Fri, 30 Oct 2020 12:59:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:36Z", - "lastUpdatedDateTime": "2020-09-10T23:53:36Z" + "createdDateTime": "2020-10-30T12:59:17Z", + "lastUpdatedDateTime": "2020-10-30T12:59:18Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b/analyzeResults/2b83156a-670d-40f7-a079-4cf45c323aee", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e549fd59-adb7-49e9-833b-9a3a7f06a80f/analyzeResults/ad92fc84-1b40-4a42-a0f3-40176b66217c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "543e7dddbf31eaff9452476fc396e4cf", "x-ms-return-client-request-id": "true" @@ -364,138 +364,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0913caf2-8555-4299-9a19-420d5b1024c1", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:36Z", - "lastUpdatedDateTime": "2020-09-10T23:53:36Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b/analyzeResults/2b83156a-670d-40f7-a079-4cf45c323aee", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "25c96d75ea50365cd8595bfce0cd6c28", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7c2aa13b-2186-4057-bf51-031e3c085563", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:36Z", - "lastUpdatedDateTime": "2020-09-10T23:53:40Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b/analyzeResults/2b83156a-670d-40f7-a079-4cf45c323aee", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5d38b52eaf3a8c7aada382d9c248aa1c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e9754731-f3f6-44e8-b98f-37efe88d4bae", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:36Z", - "lastUpdatedDateTime": "2020-09-10T23:53:40Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b/analyzeResults/2b83156a-670d-40f7-a079-4cf45c323aee", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d493b2683093f3cd21087cd7630309c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4a021147-0c5e-4fcb-9917-f78fa2dae1b9", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:42 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:36Z", - "lastUpdatedDateTime": "2020-09-10T23:53:40Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b/analyzeResults/2b83156a-670d-40f7-a079-4cf45c323aee", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "0d401fe6875ec594f33d77ac67827390", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a413e289-effc-41c6-87db-5902fbdb7fd8", + "apim-request-id": "e41ebb35-4aae-4434-b557-89de1fbebee1", "Content-Length": "6054", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:43 GMT", + "Date": "Fri, 30 Oct 2020 12:59:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:53:36Z", - "lastUpdatedDateTime": "2020-09-10T23:53:43Z", + "createdDateTime": "2020-10-30T12:59:17Z", + "lastUpdatedDateTime": "2020-10-30T12:59:21Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -949,46 +829,29 @@ ], "documentResults": [ { - "docType": "custom:3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b", - "modelId": "3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b", + "docType": "custom:e549fd59-adb7-49e9-833b-9a3a7f06a80f", + "modelId": "e549fd59-adb7-49e9-833b-9a3a7f06a80f", "pageRange": [ 1, 1 ], "fields": { - "Tax": { - "type": "string", - "valueString": "$4.00", - "text": "$4.00", - "page": 1, - "boundingBox": [ - 1458.0, - 1615.0, - 1529.0, - 1615.0, - 1529.0, - 1643.0, - 1458.0, - 1643.0 - ], - "confidence": 0.994 - }, - "Website": { + "Merchant": { "type": "string", - "valueString": "www.herolimited.com", - "text": "www.herolimited.com", + "valueString": "Hero Limited", + "text": "Hero Limited", "page": 1, "boundingBox": [ - 273.0, - 393.0, - 531.0, - 393.0, - 531.0, - 418.0, - 273.0, - 418.0 + 620.0, + 205.0, + 1075.0, + 205.0, + 1075.0, + 266.0, + 620.0, + 266.0 ], - "confidence": 0.95 + "confidence": 0.97 }, "CompanyName": { "type": "string", @@ -1007,40 +870,6 @@ ], "confidence": 0.95 }, - "CompanyPhoneNumber": { - "type": "string", - "valueString": "938-294-2949", - "text": "938-294-2949", - "page": 1, - "boundingBox": [ - 708.0, - 722.0, - 885.0, - 722.0, - 885.0, - 749.0, - 708.0, - 749.0 - ], - "confidence": 1.0 - }, - "Signature": { - "type": "string", - "valueString": "Bernie Sanders", - "text": "Bernie Sanders", - "page": 1, - "boundingBox": [ - 489.0, - 1670.0, - 765.0, - 1670.0, - 765.0, - 1708.0, - 489.0, - 1708.0 - ], - "confidence": 0.998 - }, "PurchaseOrderNumber": { "type": "string", "valueString": "948284", @@ -1058,56 +887,73 @@ ], "confidence": 0.94 }, - "Merchant": { + "Tax": { "type": "string", - "valueString": "Hero Limited", - "text": "Hero Limited", + "valueString": "$4.00", + "text": "$4.00", "page": 1, "boundingBox": [ - 620.0, - 205.0, - 1075.0, - 205.0, - 1075.0, - 266.0, - 620.0, - 266.0 + 1458.0, + 1615.0, + 1529.0, + 1615.0, + 1529.0, + 1643.0, + 1458.0, + 1643.0 ], - "confidence": 0.97 + "confidence": 0.994 }, - "DatedAs": { + "Signature": { "type": "string", - "valueString": "12/20/2020", - "text": "12/20/2020", + "valueString": "Bernie Sanders", + "text": "Bernie Sanders", "page": 1, "boundingBox": [ - 1165.0, - 420.0, - 1317.0, - 420.0, - 1317.0, - 449.0, - 1165.0, - 449.0 + 489.0, + 1670.0, + 765.0, + 1670.0, + 765.0, + 1708.0, + 489.0, + 1708.0 ], - "confidence": 0.99 + "confidence": 0.998 }, - "Subtotal": { + "VendorName": { "type": "string", - "valueString": "$140.00", - "text": "$140.00", + "valueString": "Hillary Swank", + "text": "Hillary Swank", "page": 1, "boundingBox": [ - 1426.0, - 1572.0, - 1531.0, - 1572.0, - 1531.0, - 1599.0, - 1426.0, - 1599.0 + 349.0, + 609.0, + 521.0, + 609.0, + 521.0, + 639.0, + 349.0, + 639.0 ], - "confidence": 0.984 + "confidence": 0.93 + }, + "Website": { + "type": "string", + "valueString": "www.herolimited.com", + "text": "www.herolimited.com", + "page": 1, + "boundingBox": [ + 273.0, + 393.0, + 531.0, + 393.0, + 531.0, + 418.0, + 273.0, + 418.0 + ], + "confidence": 0.95 }, "PhoneNumber": { "type": "string", @@ -1126,22 +972,56 @@ ], "confidence": 0.89 }, - "VendorName": { + "CompanyAddress": { "type": "string", - "valueString": "Hillary Swank", - "text": "Hillary Swank", + "valueString": "938 NE Burner Road Boulder City, CO 92848", + "text": "938 NE Burner Road Boulder City, CO 92848", "page": 1, "boundingBox": [ - 349.0, - 609.0, - 521.0, - 609.0, - 521.0, - 639.0, - 349.0, - 639.0 + 273.0, + 685.0, + 565.0, + 685.0, + 565.0, + 751.0, + 273.0, + 751.0 ], - "confidence": 0.93 + "confidence": 1.0 + }, + "CompanyPhoneNumber": { + "type": "string", + "valueString": "938-294-2949", + "text": "938-294-2949", + "page": 1, + "boundingBox": [ + 708.0, + 722.0, + 885.0, + 722.0, + 885.0, + 749.0, + 708.0, + 749.0 + ], + "confidence": 1.0 + }, + "DatedAs": { + "type": "string", + "valueString": "12/20/2020", + "text": "12/20/2020", + "page": 1, + "boundingBox": [ + 1165.0, + 420.0, + 1317.0, + 420.0, + 1317.0, + 449.0, + 1165.0, + 449.0 + ], + "confidence": 0.99 }, "Total": { "type": "string", @@ -1160,22 +1040,22 @@ ], "confidence": 0.991 }, - "CompanyAddress": { + "Subtotal": { "type": "string", - "valueString": "938 NE Burner Road Boulder City, CO 92848", - "text": "938 NE Burner Road Boulder City, CO 92848", + "valueString": "$140.00", + "text": "$140.00", "page": 1, "boundingBox": [ - 273.0, - 685.0, - 565.0, - 685.0, - 565.0, - 751.0, - 273.0, - 751.0 + 1426.0, + 1572.0, + 1531.0, + 1572.0, + 1531.0, + 1599.0, + 1426.0, + 1599.0 ], - "confidence": 1.0 + "confidence": 0.984 }, "Quantity": { "type": "number", @@ -1219,28 +1099,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/3c9f059d-4474-4ad7-aad2-4a4c0cb4ef5b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e549fd59-adb7-49e9-833b-9a3a7f06a80f", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f745d6dfdc9c9f47930dc78ef54ccb04-ef47a0b47ad7a94a-00", + "traceparent": "00-e2fb1df89b98184bbcf9972bdaec5f64-8e9902006aea3a4a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2e933fae983afd95e7453b3233a228aa", + "x-ms-client-request-id": "25c96d75ea50365cd8595bfce0cd6c28", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "d5783eb3-9c58-4005-99f7-f2c66064f5c0", + "apim-request-id": "54947061-cab4-4015-8f84-155bd291ea5b", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:43 GMT", + "Date": "Fri, 30 Oct 2020 12:59:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": [] } @@ -1248,7 +1128,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1936632850" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,True).json index c5250a15873fd..321d19f183285 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-89d2f15d18dcdf4ea66bd49791360d82-5eb4e4e864a9ff4a-00", + "traceparent": "00-ba36bea643e15e4c95f9930c852d748c-2f65a45582332f49-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "275b42df23c247f17c2206a849accc90", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "ca3129b1-b76e-4532-b840-f584629b444e", + "apim-request-id": "e133b8b4-3bab-4ce1-89a4-d41d3c63301b", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:51:00 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66", + "Date": "Fri, 30 Oct 2020 12:52:51 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/555c45ad-384b-4409-b5e4-274dd9726aab", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "138" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/555c45ad-384b-4409-b5e4-274dd9726aab?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "82ed64f6c2dfa2cdea583abf8f1800c1", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4edfa29-6c30-40c2-b633-4179420a71a0", + "apim-request-id": "1c62d677-a08e-4c3f-b19a-b4fad06d62e0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:01 GMT", + "Date": "Fri, 30 Oct 2020 12:52:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "33821ae9-da54-4a5b-92d2-19f474783d66", + "modelId": "555c45ad-384b-4409-b5e4-274dd9726aab", "status": "creating", - "createdDateTime": "2020-09-10T23:51:01Z", - "lastUpdatedDateTime": "2020-09-10T23:51:01Z" + "createdDateTime": "2020-10-30T12:52:51Z", + "lastUpdatedDateTime": "2020-10-30T12:52:51Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/555c45ad-384b-4409-b5e4-274dd9726aab?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bae01ab5899e266707f51974fd30776e", "x-ms-return-client-request-id": "true" @@ -81,89 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ceeba3c-3a07-48d1-8fbd-92f18e0bd891", + "apim-request-id": "ab8a6227-0ac9-47a6-bf21-c799a4738256", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:02 GMT", + "Date": "Fri, 30 Oct 2020 12:52:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "33821ae9-da54-4a5b-92d2-19f474783d66", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:01Z", - "lastUpdatedDateTime": "2020-09-10T23:51:01Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f69c584f00281c5574b83d6ae831b863", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b0bf2fd0-4484-439a-b1c3-7ae73f21e660", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:03 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "33821ae9-da54-4a5b-92d2-19f474783d66", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:01Z", - "lastUpdatedDateTime": "2020-09-10T23:51:01Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2ef2452111cb6df1fdc67aeaa959a5b9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c4c901ea-87bb-4ecd-9f98-91d6e75f88a7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "33821ae9-da54-4a5b-92d2-19f474783d66", + "modelId": "555c45ad-384b-4409-b5e4-274dd9726aab", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-10T23:51:01Z", - "lastUpdatedDateTime": "2020-09-10T23:51:03Z" + "createdDateTime": "2020-10-30T12:52:51Z", + "lastUpdatedDateTime": "2020-10-30T12:52:52Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -261,19 +195,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/555c45ad-384b-4409-b5e4-274dd9726aab/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6997f66e514d1044848c288b04239548-5c4357323950e045-00", + "traceparent": "00-27c0fe71ccea10449cf3fb42ee1b807c-cbde647999b6a542-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "366fcce00a7bb598c5c346e64cfc3dd5", + "x-ms-client-request-id": "f69c584f00281c5574b83d6ae831b863", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -281,194 +215,134 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "09b6b738-0ef3-4072-b2c7-1035832a35a7", + "apim-request-id": "5b2c7358-e8c1-47d0-9e12-8fc83cf334ca", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:51:04 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66/analyzeresults/50c2796f-4039-4d28-ac77-3d02d137ef59", + "Date": "Fri, 30 Oct 2020 12:52:52 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/555c45ad-384b-4409-b5e4-274dd9726aab/analyzeresults/f933edd9-af2d-4cb2-9433-1f5fee214b90", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66/analyzeResults/50c2796f-4039-4d28-ac77-3d02d137ef59", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/555c45ad-384b-4409-b5e4-274dd9726aab/analyzeResults/f933edd9-af2d-4cb2-9433-1f5fee214b90", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b853b53c493e3da2672ff861856b731b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ee24c654-0961-4896-b670-ca61bb19fe2b", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:51:05Z", - "lastUpdatedDateTime": "2020-09-10T23:51:05Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66/analyzeResults/50c2796f-4039-4d28-ac77-3d02d137ef59", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1c89841382c216e7ac3d6908cb0b2000", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "99a59d9c-6fd6-4824-b5b4-2ca43f257b0e", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:51:05Z", - "lastUpdatedDateTime": "2020-09-10T23:51:05Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66/analyzeResults/50c2796f-4039-4d28-ac77-3d02d137ef59", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f4ada489ec05977a2932cf4c11372f59", + "x-ms-client-request-id": "2ef2452111cb6df1fdc67aeaa959a5b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d11ee56-18e5-4e74-8c63-486b5a8da0f7", + "apim-request-id": "5454bc70-0f82-4033-83fc-ae98160471fd", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:06 GMT", + "Date": "Fri, 30 Oct 2020 12:52:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:51:05Z", - "lastUpdatedDateTime": "2020-09-10T23:51:05Z" + "createdDateTime": "2020-10-30T12:52:53Z", + "lastUpdatedDateTime": "2020-10-30T12:52:53Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66/analyzeResults/50c2796f-4039-4d28-ac77-3d02d137ef59", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/555c45ad-384b-4409-b5e4-274dd9726aab/analyzeResults/f933edd9-af2d-4cb2-9433-1f5fee214b90", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c7d22b4f2173ba13cd3c0b00df99725b", + "x-ms-client-request-id": "366fcce00a7bb598c5c346e64cfc3dd5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "48c4fde8-19ab-418e-ada8-c196b5997e5d", + "apim-request-id": "ca1a7cf3-aace-4b44-b418-67603529b69e", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:08 GMT", + "Date": "Fri, 30 Oct 2020 12:52:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:51:05Z", - "lastUpdatedDateTime": "2020-09-10T23:51:05Z" + "createdDateTime": "2020-10-30T12:52:53Z", + "lastUpdatedDateTime": "2020-10-30T12:52:54Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66/analyzeResults/50c2796f-4039-4d28-ac77-3d02d137ef59", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/555c45ad-384b-4409-b5e4-274dd9726aab/analyzeResults/f933edd9-af2d-4cb2-9433-1f5fee214b90", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e1d8f80e7ebd261509f1f290b29b0475", + "x-ms-client-request-id": "b853b53c493e3da2672ff861856b731b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a56121a-5576-4d13-8deb-2a290f4e447a", + "apim-request-id": "fcdeab02-45ee-4e2e-82fb-f623ae38164e", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:09 GMT", + "Date": "Fri, 30 Oct 2020 12:52:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:51:05Z", - "lastUpdatedDateTime": "2020-09-10T23:51:05Z" + "createdDateTime": "2020-10-30T12:52:53Z", + "lastUpdatedDateTime": "2020-10-30T12:52:54Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66/analyzeResults/50c2796f-4039-4d28-ac77-3d02d137ef59", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/555c45ad-384b-4409-b5e4-274dd9726aab/analyzeResults/f933edd9-af2d-4cb2-9433-1f5fee214b90", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9fb80f0e5838678c91f326c9e17ab790", + "x-ms-client-request-id": "1c89841382c216e7ac3d6908cb0b2000", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc731583-b0e2-494d-a298-4b7d2d78b4a1", + "apim-request-id": "2441938c-05e4-465c-b105-7cdb6cb1c87c", "Content-Length": "25118", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:15 GMT", + "Date": "Fri, 30 Oct 2020 12:52:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5088" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:51:05Z", - "lastUpdatedDateTime": "2020-09-10T23:51:13Z", + "createdDateTime": "2020-10-30T12:52:53Z", + "lastUpdatedDateTime": "2020-10-30T12:52:57Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1245,7 +1119,7 @@ 751 ], "text": "92848", - "confidence": 0.977 + "confidence": 0.976 } ] }, @@ -1360,7 +1234,7 @@ 879 ], "text": "Name:", - "confidence": 0.986 + "confidence": 0.983 }, { "boundingBox": [ @@ -3669,13 +3543,34 @@ ], "documentResults": [ { - "docType": "custom:33821ae9-da54-4a5b-92d2-19f474783d66", - "modelId": "33821ae9-da54-4a5b-92d2-19f474783d66", + "docType": "custom:555c45ad-384b-4409-b5e4-274dd9726aab", + "modelId": "555c45ad-384b-4409-b5e4-274dd9726aab", "pageRange": [ 1, 1 ], "fields": { + "Signature": { + "type": "string", + "valueString": "Bernie Sanders", + "text": "Bernie Sanders", + "page": 1, + "boundingBox": [ + 489.0, + 1670.0, + 765.0, + 1670.0, + 765.0, + 1708.0, + 489.0, + 1708.0 + ], + "confidence": 0.998, + "elements": [ + "#/readResults/0/lines/45/words/0", + "#/readResults/0/lines/45/words/1" + ] + }, "Quantity": { "type": "number", "text": "20", @@ -3695,24 +3590,71 @@ "#/readResults/0/lines/26/words/0" ] }, - "Tax": { + "CompanyAddress": { "type": "string", - "valueString": "$4.00", - "text": "$4.00", + "valueString": "938 NE Burner Road Boulder City, CO 92848", + "text": "938 NE Burner Road Boulder City, CO 92848", "page": 1, "boundingBox": [ - 1458.0, - 1615.0, - 1529.0, - 1615.0, - 1529.0, - 1643.0, - 1458.0, - 1643.0 + 273.0, + 685.0, + 565.0, + 685.0, + 565.0, + 751.0, + 273.0, + 751.0 ], - "confidence": 0.994, + "confidence": 1.0, "elements": [ - "#/readResults/0/lines/44/words/0" + "#/readResults/0/lines/12/words/1", + "#/readResults/0/lines/12/words/2", + "#/readResults/0/lines/12/words/3", + "#/readResults/0/lines/12/words/4", + "#/readResults/0/lines/13/words/0", + "#/readResults/0/lines/13/words/1", + "#/readResults/0/lines/13/words/2", + "#/readResults/0/lines/13/words/3" + ] + }, + "PurchaseOrderNumber": { + "type": "string", + "valueString": "948284", + "text": "948284", + "page": 1, + "boundingBox": [ + 1277.0, + 461.0, + 1376.0, + 461.0, + 1376.0, + 489.0, + 1277.0, + 489.0 + ], + "confidence": 0.94, + "elements": [ + "#/readResults/0/lines/8/words/3" + ] + }, + "Website": { + "type": "string", + "valueString": "www.herolimited.com", + "text": "www.herolimited.com", + "page": 1, + "boundingBox": [ + 273.0, + 393.0, + 531.0, + 393.0, + 531.0, + 418.0, + 273.0, + 418.0 + ], + "confidence": 0.95, + "elements": [ + "#/readResults/0/lines/4/words/1" ] }, "PhoneNumber": { @@ -3735,6 +3677,26 @@ "#/readResults/0/lines/3/words/2" ] }, + "CompanyPhoneNumber": { + "type": "string", + "valueString": "938-294-2949", + "text": "938-294-2949", + "page": 1, + "boundingBox": [ + 708.0, + 722.0, + 885.0, + 722.0, + 885.0, + 749.0, + 708.0, + 749.0 + ], + "confidence": 1.0, + "elements": [ + "#/readResults/0/lines/14/words/1" + ] + }, "VendorName": { "type": "string", "valueString": "Hillary Swank", @@ -3756,33 +3718,6 @@ "#/readResults/0/lines/10/words/3" ] }, - "CompanyAddress": { - "type": "string", - "valueString": "938 NE Burner Road Boulder City, CO 92848", - "text": "938 NE Burner Road Boulder City, CO 92848", - "page": 1, - "boundingBox": [ - 273.0, - 685.0, - 565.0, - 685.0, - 565.0, - 751.0, - 273.0, - 751.0 - ], - "confidence": 1.0, - "elements": [ - "#/readResults/0/lines/12/words/1", - "#/readResults/0/lines/12/words/2", - "#/readResults/0/lines/12/words/3", - "#/readResults/0/lines/12/words/4", - "#/readResults/0/lines/13/words/0", - "#/readResults/0/lines/13/words/1", - "#/readResults/0/lines/13/words/2", - "#/readResults/0/lines/13/words/3" - ] - }, "Email": { "type": "string", "valueString": "accounts@herolimited.com", @@ -3803,24 +3738,44 @@ "#/readResults/0/lines/7/words/0" ] }, - "Website": { + "Tax": { "type": "string", - "valueString": "www.herolimited.com", - "text": "www.herolimited.com", + "valueString": "$4.00", + "text": "$4.00", "page": 1, "boundingBox": [ - 273.0, - 393.0, - 531.0, - 393.0, - 531.0, - 418.0, - 273.0, - 418.0 + 1458.0, + 1615.0, + 1529.0, + 1615.0, + 1529.0, + 1643.0, + 1458.0, + 1643.0 ], - "confidence": 0.95, + "confidence": 0.994, "elements": [ - "#/readResults/0/lines/4/words/1" + "#/readResults/0/lines/44/words/0" + ] + }, + "DatedAs": { + "type": "string", + "valueString": "12/20/2020", + "text": "12/20/2020", + "page": 1, + "boundingBox": [ + 1165.0, + 420.0, + 1317.0, + 420.0, + 1317.0, + 449.0, + 1165.0, + 449.0 + ], + "confidence": 0.99, + "elements": [ + "#/readResults/0/lines/6/words/2" ] }, "Total": { @@ -3843,67 +3798,6 @@ "#/readResults/0/lines/47/words/0" ] }, - "Subtotal": { - "type": "string", - "valueString": "$140.00", - "text": "$140.00", - "page": 1, - "boundingBox": [ - 1426.0, - 1572.0, - 1531.0, - 1572.0, - 1531.0, - 1599.0, - 1426.0, - 1599.0 - ], - "confidence": 0.984, - "elements": [ - "#/readResults/0/lines/42/words/0" - ] - }, - "Merchant": { - "type": "string", - "valueString": "Hero Limited", - "text": "Hero Limited", - "page": 1, - "boundingBox": [ - 620.0, - 205.0, - 1075.0, - 205.0, - 1075.0, - 266.0, - 620.0, - 266.0 - ], - "confidence": 0.97, - "elements": [ - "#/readResults/0/lines/1/words/0", - "#/readResults/0/lines/1/words/1" - ] - }, - "CompanyPhoneNumber": { - "type": "string", - "valueString": "938-294-2949", - "text": "938-294-2949", - "page": 1, - "boundingBox": [ - 708.0, - 722.0, - 885.0, - 722.0, - 885.0, - 749.0, - 708.0, - 749.0 - ], - "confidence": 1.0, - "elements": [ - "#/readResults/0/lines/14/words/1" - ] - }, "CompanyName": { "type": "string", "valueString": "Higgly Wiggly Books", @@ -3926,65 +3820,45 @@ "#/readResults/0/lines/11/words/4" ] }, - "PurchaseOrderNumber": { - "type": "string", - "valueString": "948284", - "text": "948284", - "page": 1, - "boundingBox": [ - 1277.0, - 461.0, - 1376.0, - 461.0, - 1376.0, - 489.0, - 1277.0, - 489.0 - ], - "confidence": 0.94, - "elements": [ - "#/readResults/0/lines/8/words/3" - ] - }, - "DatedAs": { + "Merchant": { "type": "string", - "valueString": "12/20/2020", - "text": "12/20/2020", + "valueString": "Hero Limited", + "text": "Hero Limited", "page": 1, "boundingBox": [ - 1165.0, - 420.0, - 1317.0, - 420.0, - 1317.0, - 449.0, - 1165.0, - 449.0 + 620.0, + 205.0, + 1075.0, + 205.0, + 1075.0, + 266.0, + 620.0, + 266.0 ], - "confidence": 0.99, + "confidence": 0.97, "elements": [ - "#/readResults/0/lines/6/words/2" + "#/readResults/0/lines/1/words/0", + "#/readResults/0/lines/1/words/1" ] }, - "Signature": { + "Subtotal": { "type": "string", - "valueString": "Bernie Sanders", - "text": "Bernie Sanders", + "valueString": "$140.00", + "text": "$140.00", "page": 1, "boundingBox": [ - 489.0, - 1670.0, - 765.0, - 1670.0, - 765.0, - 1708.0, - 489.0, - 1708.0 + 1426.0, + 1572.0, + 1531.0, + 1572.0, + 1531.0, + 1599.0, + 1426.0, + 1599.0 ], - "confidence": 0.998, + "confidence": 0.984, "elements": [ - "#/readResults/0/lines/45/words/0", - "#/readResults/0/lines/45/words/1" + "#/readResults/0/lines/42/words/0" ] } }, @@ -3996,28 +3870,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/33821ae9-da54-4a5b-92d2-19f474783d66", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/555c45ad-384b-4409-b5e4-274dd9726aab", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f492469296cb3f4780a6a0ad168f57bd-67179cd9d7f73347-00", + "traceparent": "00-c0ec17904963ba47ba1900a7642648ca-f6ce2d569216da4b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "193d73bf4e5ed09b15acbe822e830731", + "x-ms-client-request-id": "f4ada489ec05977a2932cf4c11372f59", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "348e42d6-4c58-4832-bd6d-559ab1a7affb", + "apim-request-id": "0c10f6a6-503b-48d5-aa56-12fc459b3d81", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:51:15 GMT", + "Date": "Fri, 30 Oct 2020 12:52:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": [] } @@ -4025,7 +3899,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1025329176" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,True)Async.json index 5b46ef5cf4f1e..e01a6d4995611 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(False,True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-96583fd90f88d646b810392924a3b2a5-751d8eadf2fcf147-00", + "traceparent": "00-4fd090ce8afe484e8bd562e41f8140a6-049ea1c826ddc44e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "858525356662885e073bec0aa713b192", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "de03fad8-5fd7-4794-887f-38712237efd0", + "apim-request-id": "c6d75b5e-3746-4f40-80de-60b005dcf1ad", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:27 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e2df7503-e7c1-4a29-94f6-896d80265285", + "Date": "Fri, 30 Oct 2020 12:59:01 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/922fd77f-7188-440b-b88e-17b86911049a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "71" + "x-envoy-upstream-service-time": "95" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e2df7503-e7c1-4a29-94f6-896d80265285?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/922fd77f-7188-440b-b88e-17b86911049a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cb82ecbbc609e1bc3ae6310c7d0e1d18", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b8a2c93b-442e-4303-b282-b950b78cdfbb", + "apim-request-id": "02cf444e-2c7f-4fa6-8d7d-adf780d72f02", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:27 GMT", + "Date": "Fri, 30 Oct 2020 12:59:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "e2df7503-e7c1-4a29-94f6-896d80265285", + "modelId": "922fd77f-7188-440b-b88e-17b86911049a", "status": "creating", - "createdDateTime": "2020-09-10T23:53:27Z", - "lastUpdatedDateTime": "2020-09-10T23:53:27Z" + "createdDateTime": "2020-10-30T12:59:01Z", + "lastUpdatedDateTime": "2020-10-30T12:59:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e2df7503-e7c1-4a29-94f6-896d80265285?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/922fd77f-7188-440b-b88e-17b86911049a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fac21691e586b495aebf156b57f4f168", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "003c9afa-5824-42d8-a117-3e468994c59e", + "apim-request-id": "11ddb85b-c79f-401a-a703-387f9b0dd5d5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:28 GMT", + "Date": "Fri, 30 Oct 2020 12:59:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "e2df7503-e7c1-4a29-94f6-896d80265285", + "modelId": "922fd77f-7188-440b-b88e-17b86911049a", "status": "creating", - "createdDateTime": "2020-09-10T23:53:27Z", - "lastUpdatedDateTime": "2020-09-10T23:53:27Z" + "createdDateTime": "2020-10-30T12:59:01Z", + "lastUpdatedDateTime": "2020-10-30T12:59:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e2df7503-e7c1-4a29-94f6-896d80265285?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/922fd77f-7188-440b-b88e-17b86911049a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "71f29a91626a6eda69a44a7c35510af8", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a421b14f-4d31-441b-b6c2-d24d85b04e9b", + "apim-request-id": "66319576-eb7d-4368-aea7-1672f9cc5bfe", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:29 GMT", + "Date": "Fri, 30 Oct 2020 12:59:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "152" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "e2df7503-e7c1-4a29-94f6-896d80265285", + "modelId": "922fd77f-7188-440b-b88e-17b86911049a", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-10T23:53:27Z", - "lastUpdatedDateTime": "2020-09-10T23:53:28Z" + "createdDateTime": "2020-10-30T12:59:01Z", + "lastUpdatedDateTime": "2020-10-30T12:59:03Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,17 +228,17 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e2df7503-e7c1-4a29-94f6-896d80265285/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/922fd77f-7188-440b-b88e-17b86911049a/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f03cd5853a12b04bae3aa9f70bf5cb55-ecb368d2e9fd7840-00", + "traceparent": "00-f76d37d51f554a4188b06a0e317cf56c-7487f7fc64654e47-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9178d31db751d50b57ce1d4ab1508946", "x-ms-return-client-request-id": "true" @@ -248,25 +248,25 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "44b5ebaf-66dd-40b3-9fdb-e2e0199aaf4a", + "apim-request-id": "e9d61f42-5acf-4cf0-b4c1-2c5b4c7cebfb", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:29 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e2df7503-e7c1-4a29-94f6-896d80265285/analyzeresults/79fe5132-54cf-4baf-97d4-6919bc116301", + "Date": "Fri, 30 Oct 2020 12:59:04 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/922fd77f-7188-440b-b88e-17b86911049a/analyzeresults/632e4a12-8a61-4747-9ea3-e68bbac551fd", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e2df7503-e7c1-4a29-94f6-896d80265285/analyzeResults/79fe5132-54cf-4baf-97d4-6919bc116301", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/922fd77f-7188-440b-b88e-17b86911049a/analyzeResults/632e4a12-8a61-4747-9ea3-e68bbac551fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e37bc8f4ab1b2fad3b5390e29b187e5c", "x-ms-return-client-request-id": "true" @@ -274,29 +274,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b8f9b2f9-6219-45f9-9737-30d67515d6a4", + "apim-request-id": "b93fc3ef-d1f3-4389-b772-508a6d88ee59", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:29 GMT", + "Date": "Fri, 30 Oct 2020 12:59:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:29Z", - "lastUpdatedDateTime": "2020-09-10T23:53:29Z" + "createdDateTime": "2020-10-30T12:59:04Z", + "lastUpdatedDateTime": "2020-10-30T12:59:04Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e2df7503-e7c1-4a29-94f6-896d80265285/analyzeResults/79fe5132-54cf-4baf-97d4-6919bc116301", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/922fd77f-7188-440b-b88e-17b86911049a/analyzeResults/632e4a12-8a61-4747-9ea3-e68bbac551fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "834d1cb45f7cd9178f1d199c4590bc18", "x-ms-return-client-request-id": "true" @@ -304,29 +304,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c8262e22-90c0-498f-83a5-c38fb30ecb20", + "apim-request-id": "62d092eb-5b49-4b0f-841e-ce3135740d6b", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:30 GMT", + "Date": "Fri, 30 Oct 2020 12:59:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:29Z", - "lastUpdatedDateTime": "2020-09-10T23:53:30Z" + "createdDateTime": "2020-10-30T12:59:04Z", + "lastUpdatedDateTime": "2020-10-30T12:59:05Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e2df7503-e7c1-4a29-94f6-896d80265285/analyzeResults/79fe5132-54cf-4baf-97d4-6919bc116301", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/922fd77f-7188-440b-b88e-17b86911049a/analyzeResults/632e4a12-8a61-4747-9ea3-e68bbac551fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6d88041a27d672dd264956fd27293a3f", "x-ms-return-client-request-id": "true" @@ -334,29 +334,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc744cb0-b164-4fad-9834-aaa0fcd0078c", + "apim-request-id": "8fd2b9b1-778a-4d09-bc31-6cfb321edad6", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:31 GMT", + "Date": "Fri, 30 Oct 2020 12:59:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:29Z", - "lastUpdatedDateTime": "2020-09-10T23:53:30Z" + "createdDateTime": "2020-10-30T12:59:04Z", + "lastUpdatedDateTime": "2020-10-30T12:59:05Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e2df7503-e7c1-4a29-94f6-896d80265285/analyzeResults/79fe5132-54cf-4baf-97d4-6919bc116301", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/922fd77f-7188-440b-b88e-17b86911049a/analyzeResults/632e4a12-8a61-4747-9ea3-e68bbac551fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9595c04f050394cab0a154fe9111eaab", "x-ms-return-client-request-id": "true" @@ -364,29 +364,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "076f78fc-5162-4200-b44d-ece1e2d1cc02", + "apim-request-id": "35a12aae-074c-44f2-9786-d791778b15ac", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:32 GMT", + "Date": "Fri, 30 Oct 2020 12:59:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:29Z", - "lastUpdatedDateTime": "2020-09-10T23:53:30Z" + "createdDateTime": "2020-10-30T12:59:04Z", + "lastUpdatedDateTime": "2020-10-30T12:59:09Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e2df7503-e7c1-4a29-94f6-896d80265285/analyzeResults/79fe5132-54cf-4baf-97d4-6919bc116301", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/922fd77f-7188-440b-b88e-17b86911049a/analyzeResults/632e4a12-8a61-4747-9ea3-e68bbac551fd", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "96c7779611908d863fdb5d33091ab266", "x-ms-return-client-request-id": "true" @@ -394,18 +394,78 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d50de99a-ee0e-437d-91cd-dd9ff85309e5", + "apim-request-id": "026d30ba-26cf-4a53-8fa3-03dadcaff32d", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 12:59:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T12:59:04Z", + "lastUpdatedDateTime": "2020-10-30T12:59:09Z" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/922fd77f-7188-440b-b88e-17b86911049a/analyzeResults/632e4a12-8a61-4747-9ea3-e68bbac551fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "854cdae227fa15153af3bc35d2dee014", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1243427b-210c-46a7-99de-0390223e138e", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 12:59:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T12:59:04Z", + "lastUpdatedDateTime": "2020-10-30T12:59:09Z" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/922fd77f-7188-440b-b88e-17b86911049a/analyzeResults/632e4a12-8a61-4747-9ea3-e68bbac551fd", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "af66ab5fa3613daf39075628a7978a96", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c4ad3d5-e6f0-4dcc-ab9d-5f2fe32323e7", "Content-Length": "25118", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:33 GMT", + "Date": "Fri, 30 Oct 2020 12:59:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:53:29Z", - "lastUpdatedDateTime": "2020-09-10T23:53:33Z", + "createdDateTime": "2020-10-30T12:59:04Z", + "lastUpdatedDateTime": "2020-10-30T12:59:12Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1182,7 +1242,7 @@ 751 ], "text": "92848", - "confidence": 0.977 + "confidence": 0.976 } ] }, @@ -1297,7 +1357,7 @@ 879 ], "text": "Name:", - "confidence": 0.986 + "confidence": 0.983 }, { "boundingBox": [ @@ -3606,13 +3666,96 @@ ], "documentResults": [ { - "docType": "custom:e2df7503-e7c1-4a29-94f6-896d80265285", - "modelId": "e2df7503-e7c1-4a29-94f6-896d80265285", + "docType": "custom:922fd77f-7188-440b-b88e-17b86911049a", + "modelId": "922fd77f-7188-440b-b88e-17b86911049a", "pageRange": [ 1, 1 ], "fields": { + "Subtotal": { + "type": "string", + "valueString": "$140.00", + "text": "$140.00", + "page": 1, + "boundingBox": [ + 1426.0, + 1572.0, + 1531.0, + 1572.0, + 1531.0, + 1599.0, + 1426.0, + 1599.0 + ], + "confidence": 0.984, + "elements": [ + "#/readResults/0/lines/42/words/0" + ] + }, + "CompanyName": { + "type": "string", + "valueString": "Higgly Wiggly Books", + "text": "Higgly Wiggly Books", + "page": 1, + "boundingBox": [ + 375.0, + 646.0, + 629.0, + 646.0, + 629.0, + 679.0, + 375.0, + 679.0 + ], + "confidence": 0.95, + "elements": [ + "#/readResults/0/lines/11/words/2", + "#/readResults/0/lines/11/words/3", + "#/readResults/0/lines/11/words/4" + ] + }, + "PhoneNumber": { + "type": "string", + "valueString": "555-348-6512", + "text": "555-348-6512", + "page": 1, + "boundingBox": [ + 364.0, + 351.0, + 528.0, + 351.0, + 528.0, + 378.0, + 364.0, + 378.0 + ], + "confidence": 0.89, + "elements": [ + "#/readResults/0/lines/3/words/2" + ] + }, + "Signature": { + "type": "string", + "valueString": "Bernie Sanders", + "text": "Bernie Sanders", + "page": 1, + "boundingBox": [ + 489.0, + 1670.0, + 765.0, + 1670.0, + 765.0, + 1708.0, + 489.0, + 1708.0 + ], + "confidence": 0.998, + "elements": [ + "#/readResults/0/lines/45/words/0", + "#/readResults/0/lines/45/words/1" + ] + }, "Tax": { "type": "string", "valueString": "$4.00", @@ -3633,24 +3776,52 @@ "#/readResults/0/lines/44/words/0" ] }, - "Total": { + "Merchant": { "type": "string", - "valueString": "$144.00", - "text": "$144.00", + "valueString": "Hero Limited", + "text": "Hero Limited", "page": 1, "boundingBox": [ - 1427.0, - 1669.0, - 1529.0, - 1669.0, - 1529.0, - 1698.0, - 1427.0, - 1698.0 + 620.0, + 205.0, + 1075.0, + 205.0, + 1075.0, + 266.0, + 620.0, + 266.0 ], - "confidence": 0.991, + "confidence": 0.97, "elements": [ - "#/readResults/0/lines/47/words/0" + "#/readResults/0/lines/1/words/0", + "#/readResults/0/lines/1/words/1" + ] + }, + "CompanyAddress": { + "type": "string", + "valueString": "938 NE Burner Road Boulder City, CO 92848", + "text": "938 NE Burner Road Boulder City, CO 92848", + "page": 1, + "boundingBox": [ + 273.0, + 685.0, + 565.0, + 685.0, + 565.0, + 751.0, + 273.0, + 751.0 + ], + "confidence": 1.0, + "elements": [ + "#/readResults/0/lines/12/words/1", + "#/readResults/0/lines/12/words/2", + "#/readResults/0/lines/12/words/3", + "#/readResults/0/lines/12/words/4", + "#/readResults/0/lines/13/words/0", + "#/readResults/0/lines/13/words/1", + "#/readResults/0/lines/13/words/2", + "#/readResults/0/lines/13/words/3" ] }, "DatedAs": { @@ -3673,28 +3844,6 @@ "#/readResults/0/lines/6/words/2" ] }, - "CompanyName": { - "type": "string", - "valueString": "Higgly Wiggly Books", - "text": "Higgly Wiggly Books", - "page": 1, - "boundingBox": [ - 375.0, - 646.0, - 629.0, - 646.0, - 629.0, - 679.0, - 375.0, - 679.0 - ], - "confidence": 0.95, - "elements": [ - "#/readResults/0/lines/11/words/2", - "#/readResults/0/lines/11/words/3", - "#/readResults/0/lines/11/words/4" - ] - }, "Email": { "type": "string", "valueString": "accounts@herolimited.com", @@ -3715,84 +3864,64 @@ "#/readResults/0/lines/7/words/0" ] }, - "CompanyPhoneNumber": { + "Website": { "type": "string", - "valueString": "938-294-2949", - "text": "938-294-2949", + "valueString": "www.herolimited.com", + "text": "www.herolimited.com", "page": 1, "boundingBox": [ - 708.0, - 722.0, - 885.0, - 722.0, - 885.0, - 749.0, - 708.0, - 749.0 + 273.0, + 393.0, + 531.0, + 393.0, + 531.0, + 418.0, + 273.0, + 418.0 ], - "confidence": 1.0, + "confidence": 0.95, "elements": [ - "#/readResults/0/lines/14/words/1" + "#/readResults/0/lines/4/words/1" ] }, - "PurchaseOrderNumber": { + "Total": { "type": "string", - "valueString": "948284", - "text": "948284", - "page": 1, - "boundingBox": [ - 1277.0, - 461.0, - 1376.0, - 461.0, - 1376.0, - 489.0, - 1277.0, - 489.0 - ], - "confidence": 0.94, - "elements": [ - "#/readResults/0/lines/8/words/3" - ] - }, - "Quantity": { - "type": "number", - "text": "20", + "valueString": "$144.00", + "text": "$144.00", "page": 1, "boundingBox": [ - 861.0, - 1094.0, - 892.0, - 1094.0, - 892.0, - 1119.0, - 861.0, - 1119.0 + 1427.0, + 1669.0, + 1529.0, + 1669.0, + 1529.0, + 1698.0, + 1427.0, + 1698.0 ], - "confidence": 0.962, + "confidence": 0.991, "elements": [ - "#/readResults/0/lines/26/words/0" + "#/readResults/0/lines/47/words/0" ] }, - "Signature": { + "CompanyPhoneNumber": { "type": "string", - "valueString": "Bernie Sanders", - "text": "Bernie Sanders", + "valueString": "938-294-2949", + "text": "938-294-2949", "page": 1, "boundingBox": [ - 489.0, - 1670.0, - 765.0, - 1670.0, - 765.0, - 1708.0, - 489.0, - 1708.0 + 708.0, + 722.0, + 885.0, + 722.0, + 885.0, + 749.0, + 708.0, + 749.0 ], - "confidence": 0.998, + "confidence": 1.0, "elements": [ - "#/readResults/0/lines/45/words/0", - "#/readResults/0/lines/45/words/1" + "#/readResults/0/lines/14/words/1" ] }, "VendorName": { @@ -3816,112 +3945,43 @@ "#/readResults/0/lines/10/words/3" ] }, - "PhoneNumber": { - "type": "string", - "valueString": "555-348-6512", - "text": "555-348-6512", - "page": 1, - "boundingBox": [ - 364.0, - 351.0, - 528.0, - 351.0, - 528.0, - 378.0, - 364.0, - 378.0 - ], - "confidence": 0.89, - "elements": [ - "#/readResults/0/lines/3/words/2" - ] - }, - "Website": { - "type": "string", - "valueString": "www.herolimited.com", - "text": "www.herolimited.com", - "page": 1, - "boundingBox": [ - 273.0, - 393.0, - 531.0, - 393.0, - 531.0, - 418.0, - 273.0, - 418.0 - ], - "confidence": 0.95, - "elements": [ - "#/readResults/0/lines/4/words/1" - ] - }, - "Merchant": { - "type": "string", - "valueString": "Hero Limited", - "text": "Hero Limited", - "page": 1, - "boundingBox": [ - 620.0, - 205.0, - 1075.0, - 205.0, - 1075.0, - 266.0, - 620.0, - 266.0 - ], - "confidence": 0.97, - "elements": [ - "#/readResults/0/lines/1/words/0", - "#/readResults/0/lines/1/words/1" - ] - }, - "Subtotal": { - "type": "string", - "valueString": "$140.00", - "text": "$140.00", + "Quantity": { + "type": "number", + "text": "20", "page": 1, "boundingBox": [ - 1426.0, - 1572.0, - 1531.0, - 1572.0, - 1531.0, - 1599.0, - 1426.0, - 1599.0 + 861.0, + 1094.0, + 892.0, + 1094.0, + 892.0, + 1119.0, + 861.0, + 1119.0 ], - "confidence": 0.984, + "confidence": 0.962, "elements": [ - "#/readResults/0/lines/42/words/0" + "#/readResults/0/lines/26/words/0" ] }, - "CompanyAddress": { + "PurchaseOrderNumber": { "type": "string", - "valueString": "938 NE Burner Road Boulder City, CO 92848", - "text": "938 NE Burner Road Boulder City, CO 92848", + "valueString": "948284", + "text": "948284", "page": 1, "boundingBox": [ - 273.0, - 685.0, - 565.0, - 685.0, - 565.0, - 751.0, - 273.0, - 751.0 + 1277.0, + 461.0, + 1376.0, + 461.0, + 1376.0, + 489.0, + 1277.0, + 489.0 ], - "confidence": 1.0, + "confidence": 0.94, "elements": [ - "#/readResults/0/lines/12/words/1", - "#/readResults/0/lines/12/words/2", - "#/readResults/0/lines/12/words/3", - "#/readResults/0/lines/12/words/4", - "#/readResults/0/lines/13/words/0", - "#/readResults/0/lines/13/words/1", - "#/readResults/0/lines/13/words/2", - "#/readResults/0/lines/13/words/3" + "#/readResults/0/lines/8/words/3" ] } }, @@ -3933,28 +3993,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e2df7503-e7c1-4a29-94f6-896d80265285", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/922fd77f-7188-440b-b88e-17b86911049a", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c2269afabf28a9419ec1f6763ac8459b-3eff88039de33f48-00", + "traceparent": "00-35df2363e7f56d4ead5cb8c789110032-f5f89ffc125e994c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "854cdae227fa15153af3bc35d2dee014", + "x-ms-client-request-id": "b71cedee64c46fb062b15c9c5451ba60", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "aa1176da-fd23-4c42-b8cd-31b24fde322d", + "apim-request-id": "84b8ea45-9b0e-4d3d-b618-fb077d324867", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:33 GMT", + "Date": "Fri, 30 Oct 2020 12:59:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": [] } @@ -3962,7 +4022,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "734149158" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,False).json index b56ec76d35ae4..c89fbde54053a 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e3c4f2b224d3774387e3e57b55882c8b-202a68cd68a9b048-00", + "traceparent": "00-625e1e59a68f504da315ac4c7b165bf6-c18b767df14e874e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d4329c7873f7995b4092daff7c3d8998", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "21e93260-53ee-4508-9a94-26cf1ae27c49", + "apim-request-id": "7d58e4db-1de2-4f7c-826e-50e070d8eb2b", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:50:51 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c", + "Date": "Fri, 30 Oct 2020 12:52:44 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f1041901-6370-42d2-a9fe-2c4607e49d63", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f1041901-6370-42d2-a9fe-2c4607e49d63?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "787c226c636f03b3b9dd5a86ca09b225", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0ef3d45b-c4d7-48cd-bc41-c9ce409db2d0", + "apim-request-id": "31137030-c220-45ea-b833-d231baa2850d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:51 GMT", + "Date": "Fri, 30 Oct 2020 12:52:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "178d8804-25f5-43ca-aae0-afe36477c39c", + "modelId": "f1041901-6370-42d2-a9fe-2c4607e49d63", "status": "creating", - "createdDateTime": "2020-09-10T23:50:51Z", - "lastUpdatedDateTime": "2020-09-10T23:50:51Z" + "createdDateTime": "2020-10-30T12:52:44Z", + "lastUpdatedDateTime": "2020-10-30T12:52:44Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f1041901-6370-42d2-a9fe-2c4607e49d63?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "816e150197beda4f81d0bc309168426a", "x-ms-return-client-request-id": "true" @@ -81,56 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "395e96ee-7522-4096-9bda-2f8f7f4d8db3", + "apim-request-id": "c99e20f4-d5d0-4ca7-b03c-79e6745d52d1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:52 GMT", + "Date": "Fri, 30 Oct 2020 12:52:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "178d8804-25f5-43ca-aae0-afe36477c39c", - "status": "creating", - "createdDateTime": "2020-09-10T23:50:51Z", - "lastUpdatedDateTime": "2020-09-10T23:50:51Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e39b1c606df615ffe92e1b1a19d4cf37", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5962eec9-cade-47ad-afa8-5b410ca06334", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "178d8804-25f5-43ca-aae0-afe36477c39c", + "modelId": "f1041901-6370-42d2-a9fe-2c4607e49d63", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-10T23:50:51Z", - "lastUpdatedDateTime": "2020-09-10T23:50:52Z" + "createdDateTime": "2020-10-30T12:52:44Z", + "lastUpdatedDateTime": "2020-10-30T12:52:46Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,272 +195,152 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f1041901-6370-42d2-a9fe-2c4607e49d63/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "479269", "Content-Type": "image/jpeg", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-18a4612707d89f4e83aff0ef66d949a8-bfba1a8bfb07f649-00", + "traceparent": "00-64d47d9c794ec541b049564d5ee6b0bc-0fc8bab9be81b145-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "67fdb5df08cfd5d9d2a2f79fa6827250", + "x-ms-client-request-id": "e39b1c606df615ffe92e1b1a19d4cf37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fdfa7027-6ad3-44df-b75b-4b83996df3f4", + "apim-request-id": "668183f0-af84-4cf8-bb0f-c2f905202730", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:50:53 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c/analyzeresults/150aad16-39b9-4897-b3df-da316a99ce62", + "Date": "Fri, 30 Oct 2020 12:52:47 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f1041901-6370-42d2-a9fe-2c4607e49d63/analyzeresults/6368c374-82fa-4e65-b285-03d5ac0293c6", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "198" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c/analyzeResults/150aad16-39b9-4897-b3df-da316a99ce62", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f1041901-6370-42d2-a9fe-2c4607e49d63/analyzeResults/6368c374-82fa-4e65-b285-03d5ac0293c6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ad26ef9acf6d942f1559988f7b35c0ad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5e6e140c-0565-45d4-ba1f-e3ce8fdbd78a", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:53Z", - "lastUpdatedDateTime": "2020-09-10T23:50:53Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c/analyzeResults/150aad16-39b9-4897-b3df-da316a99ce62", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "db518401db6a579b42c6105376606e66", + "x-ms-client-request-id": "67fdb5df08cfd5d9d2a2f79fa6827250", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f69b1e3-085e-4d88-9208-4ce9837a61bd", + "apim-request-id": "fbf05df1-8f0c-48f4-95de-38b6efc4d280", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:54 GMT", + "Date": "Fri, 30 Oct 2020 12:52:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:53Z", - "lastUpdatedDateTime": "2020-09-10T23:50:54Z" + "createdDateTime": "2020-10-30T12:52:47Z", + "lastUpdatedDateTime": "2020-10-30T12:52:47Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c/analyzeResults/150aad16-39b9-4897-b3df-da316a99ce62", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f1041901-6370-42d2-a9fe-2c4607e49d63/analyzeResults/6368c374-82fa-4e65-b285-03d5ac0293c6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "297fcabc21ae10ca86695276704a599d", + "x-ms-client-request-id": "ad26ef9acf6d942f1559988f7b35c0ad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "73a5473b-fd65-4dc7-82a0-51f1155afacc", + "apim-request-id": "90407396-cd37-43e5-ad53-56510eeaab93", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:55 GMT", + "Date": "Fri, 30 Oct 2020 12:52:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "129" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:53Z", - "lastUpdatedDateTime": "2020-09-10T23:50:54Z" + "createdDateTime": "2020-10-30T12:52:47Z", + "lastUpdatedDateTime": "2020-10-30T12:52:48Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c/analyzeResults/150aad16-39b9-4897-b3df-da316a99ce62", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f1041901-6370-42d2-a9fe-2c4607e49d63/analyzeResults/6368c374-82fa-4e65-b285-03d5ac0293c6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "229e4ae19631bfe654ce6aa6bedb1db5", + "x-ms-client-request-id": "db518401db6a579b42c6105376606e66", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e564899-8c7d-4f05-bbc8-0d8e0516e460", + "apim-request-id": "481f8d5f-a15b-40f2-8639-a1f414e61e48", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:56 GMT", + "Date": "Fri, 30 Oct 2020 12:52:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:53Z", - "lastUpdatedDateTime": "2020-09-10T23:50:54Z" + "createdDateTime": "2020-10-30T12:52:47Z", + "lastUpdatedDateTime": "2020-10-30T12:52:48Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c/analyzeResults/150aad16-39b9-4897-b3df-da316a99ce62", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f1041901-6370-42d2-a9fe-2c4607e49d63/analyzeResults/6368c374-82fa-4e65-b285-03d5ac0293c6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b0d231ea97b5dffeba4155008924e7f8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bb429985-bdb0-4d51-915d-1be7b8dbd5ef", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:53Z", - "lastUpdatedDateTime": "2020-09-10T23:50:57Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c/analyzeResults/150aad16-39b9-4897-b3df-da316a99ce62", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2c72736d4cc12635e4c0d4dfb72351ab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "583c96cb-c7ff-4c69-9df6-8cadd44376f4", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:53Z", - "lastUpdatedDateTime": "2020-09-10T23:50:57Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c/analyzeResults/150aad16-39b9-4897-b3df-da316a99ce62", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3e8b9d4ca87749e84bbf67f040e5362f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "362363fa-2261-430d-ba39-1102d859ba38", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:53Z", - "lastUpdatedDateTime": "2020-09-10T23:50:57Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c/analyzeResults/150aad16-39b9-4897-b3df-da316a99ce62", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4b3972e7f1699ef3fcacccf4c31e2896", + "x-ms-client-request-id": "297fcabc21ae10ca86695276704a599d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "303a614a-d8b2-485c-85d9-b05e7fa1eaab", + "apim-request-id": "dc6cc0d6-f924-41f8-8dcb-3181876c40a1", "Content-Length": "6054", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:00 GMT", + "Date": "Fri, 30 Oct 2020 12:52:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:50:53Z", - "lastUpdatedDateTime": "2020-09-10T23:51:00Z", + "createdDateTime": "2020-10-30T12:52:47Z", + "lastUpdatedDateTime": "2020-10-30T12:52:51Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -947,97 +794,13 @@ ], "documentResults": [ { - "docType": "custom:178d8804-25f5-43ca-aae0-afe36477c39c", - "modelId": "178d8804-25f5-43ca-aae0-afe36477c39c", + "docType": "custom:f1041901-6370-42d2-a9fe-2c4607e49d63", + "modelId": "f1041901-6370-42d2-a9fe-2c4607e49d63", "pageRange": [ 1, 1 ], "fields": { - "Quantity": { - "type": "number", - "text": "20", - "page": 1, - "boundingBox": [ - 861.0, - 1094.0, - 892.0, - 1094.0, - 892.0, - 1119.0, - 861.0, - 1119.0 - ], - "confidence": 0.962 - }, - "Signature": { - "type": "string", - "valueString": "Bernie Sanders", - "text": "Bernie Sanders", - "page": 1, - "boundingBox": [ - 489.0, - 1670.0, - 765.0, - 1670.0, - 765.0, - 1708.0, - 489.0, - 1708.0 - ], - "confidence": 0.998 - }, - "Merchant": { - "type": "string", - "valueString": "Hero Limited", - "text": "Hero Limited", - "page": 1, - "boundingBox": [ - 620.0, - 205.0, - 1075.0, - 205.0, - 1075.0, - 266.0, - 620.0, - 266.0 - ], - "confidence": 0.97 - }, - "Tax": { - "type": "string", - "valueString": "$4.00", - "text": "$4.00", - "page": 1, - "boundingBox": [ - 1458.0, - 1615.0, - 1529.0, - 1615.0, - 1529.0, - 1643.0, - 1458.0, - 1643.0 - ], - "confidence": 0.994 - }, - "CompanyName": { - "type": "string", - "valueString": "Higgly Wiggly Books", - "text": "Higgly Wiggly Books", - "page": 1, - "boundingBox": [ - 375.0, - 646.0, - 629.0, - 646.0, - 629.0, - 679.0, - 375.0, - 679.0 - ], - "confidence": 0.95 - }, "DatedAs": { "type": "string", "valueString": "12/20/2020", @@ -1055,39 +818,39 @@ ], "confidence": 0.99 }, - "PurchaseOrderNumber": { + "Email": { "type": "string", - "valueString": "948284", - "text": "948284", + "valueString": "accounts@herolimited.com", + "text": "accounts@herolimited.com", "page": 1, "boundingBox": [ - 1277.0, - 461.0, - 1376.0, - 461.0, - 1376.0, - 489.0, - 1277.0, - 489.0 + 164.0, + 479.0, + 478.0, + 479.0, + 478.0, + 503.0, + 164.0, + 503.0 ], - "confidence": 0.94 + "confidence": 1.0 }, - "CompanyAddress": { + "Website": { "type": "string", - "valueString": "938 NE Burner Road Boulder City, CO 92848", - "text": "938 NE Burner Road Boulder City, CO 92848", + "valueString": "www.herolimited.com", + "text": "www.herolimited.com", "page": 1, "boundingBox": [ 273.0, - 685.0, - 565.0, - 685.0, - 565.0, - 751.0, + 393.0, + 531.0, + 393.0, + 531.0, + 418.0, 273.0, - 751.0 + 418.0 ], - "confidence": 1.0 + "confidence": 0.95 }, "VendorName": { "type": "string", @@ -1106,22 +869,38 @@ ], "confidence": 0.93 }, - "CompanyPhoneNumber": { + "Quantity": { + "type": "number", + "text": "20", + "page": 1, + "boundingBox": [ + 861.0, + 1094.0, + 892.0, + 1094.0, + 892.0, + 1119.0, + 861.0, + 1119.0 + ], + "confidence": 0.962 + }, + "PhoneNumber": { "type": "string", - "valueString": "938-294-2949", - "text": "938-294-2949", + "valueString": "555-348-6512", + "text": "555-348-6512", "page": 1, "boundingBox": [ - 708.0, - 722.0, - 885.0, - 722.0, - 885.0, - 749.0, - 708.0, - 749.0 + 364.0, + 351.0, + 528.0, + 351.0, + 528.0, + 378.0, + 364.0, + 378.0 ], - "confidence": 1.0 + "confidence": 0.89 }, "Subtotal": { "type": "string", @@ -1140,54 +919,71 @@ ], "confidence": 0.984 }, - "PhoneNumber": { + "PurchaseOrderNumber": { "type": "string", - "valueString": "555-348-6512", - "text": "555-348-6512", + "valueString": "948284", + "text": "948284", "page": 1, "boundingBox": [ - 364.0, - 351.0, - 528.0, - 351.0, - 528.0, - 378.0, - 364.0, - 378.0 + 1277.0, + 461.0, + 1376.0, + 461.0, + 1376.0, + 489.0, + 1277.0, + 489.0 ], - "confidence": 0.89 + "confidence": 0.94 }, - "Website": { + "Tax": { "type": "string", - "valueString": "www.herolimited.com", - "text": "www.herolimited.com", + "valueString": "$4.00", + "text": "$4.00", "page": 1, "boundingBox": [ - 273.0, - 393.0, - 531.0, - 393.0, - 531.0, - 418.0, - 273.0, - 418.0 + 1458.0, + 1615.0, + 1529.0, + 1615.0, + 1529.0, + 1643.0, + 1458.0, + 1643.0 ], - "confidence": 0.95 + "confidence": 0.994 }, - "Email": { + "CompanyPhoneNumber": { "type": "string", - "valueString": "accounts@herolimited.com", - "text": "accounts@herolimited.com", + "valueString": "938-294-2949", + "text": "938-294-2949", "page": 1, "boundingBox": [ - 164.0, - 479.0, - 478.0, - 479.0, - 478.0, - 503.0, - 164.0, - 503.0 + 708.0, + 722.0, + 885.0, + 722.0, + 885.0, + 749.0, + 708.0, + 749.0 + ], + "confidence": 1.0 + }, + "CompanyAddress": { + "type": "string", + "valueString": "938 NE Burner Road Boulder City, CO 92848", + "text": "938 NE Burner Road Boulder City, CO 92848", + "page": 1, + "boundingBox": [ + 273.0, + 685.0, + 565.0, + 685.0, + 565.0, + 751.0, + 273.0, + 751.0 ], "confidence": 1.0 }, @@ -1207,6 +1003,57 @@ 1698.0 ], "confidence": 0.991 + }, + "CompanyName": { + "type": "string", + "valueString": "Higgly Wiggly Books", + "text": "Higgly Wiggly Books", + "page": 1, + "boundingBox": [ + 375.0, + 646.0, + 629.0, + 646.0, + 629.0, + 679.0, + 375.0, + 679.0 + ], + "confidence": 0.95 + }, + "Signature": { + "type": "string", + "valueString": "Bernie Sanders", + "text": "Bernie Sanders", + "page": 1, + "boundingBox": [ + 489.0, + 1670.0, + 765.0, + 1670.0, + 765.0, + 1708.0, + 489.0, + 1708.0 + ], + "confidence": 0.998 + }, + "Merchant": { + "type": "string", + "valueString": "Hero Limited", + "text": "Hero Limited", + "page": 1, + "boundingBox": [ + 620.0, + 205.0, + 1075.0, + 205.0, + 1075.0, + 266.0, + 620.0, + 266.0 + ], + "confidence": 0.97 } }, "docTypeConfidence": 1.0 @@ -1217,25 +1064,25 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/178d8804-25f5-43ca-aae0-afe36477c39c", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f1041901-6370-42d2-a9fe-2c4607e49d63", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ea8bd01712c53741aafb94d5cdb48e4c-d3fe61de6865794f-00", + "traceparent": "00-647cc77fd4b72d4a99c2eba8de2e97ff-121de87cbbf6c54f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ecb4aaefa899c5818b28e002e445e6fe", + "x-ms-client-request-id": "229e4ae19631bfe654ce6aa6bedb1db5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "f949888e-3646-4e4c-ad8a-939827a2a907", + "apim-request-id": "70803bef-da93-4b02-96ca-d206311d6fc2", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:51:00 GMT", + "Date": "Fri, 30 Oct 2020 12:52:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "29" @@ -1246,7 +1093,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1628084924" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,False)Async.json index 363e7c1c54858..1de8d91728651 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5d8b4eda718779448c509cd60392ec6b-c9da886e39b84044-00", + "traceparent": "00-a95fa508bc028246972f9a3783ae8d9a-cb0bc5f876101e49-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cd4cb3670b38c3797d04c7c9e10c7c97", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "f045f49b-d993-4f57-a12a-9ec37c2a8a09", + "apim-request-id": "0ea1fc9b-6e70-43ac-a72a-63e3b457e820", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:14 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d", + "Date": "Fri, 30 Oct 2020 12:58:53 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c4072b8a-2868-4020-bb7c-bbe4103dbc96", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "155" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c4072b8a-2868-4020-bb7c-bbe4103dbc96?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5af6bc9413e02e154215e2d769ff3252", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1c70698-d515-4263-868d-8c5275f50863", + "apim-request-id": "f5017906-6526-4799-9857-f9cc80efac50", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:14 GMT", + "Date": "Fri, 30 Oct 2020 12:58:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "modelInfo": { - "modelId": "ac749eeb-910a-456f-92be-c920ef58ee5d", + "modelId": "c4072b8a-2868-4020-bb7c-bbe4103dbc96", "status": "creating", - "createdDateTime": "2020-09-10T23:53:14Z", - "lastUpdatedDateTime": "2020-09-10T23:53:14Z" + "createdDateTime": "2020-10-30T12:58:53Z", + "lastUpdatedDateTime": "2020-10-30T12:58:53Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c4072b8a-2868-4020-bb7c-bbe4103dbc96?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4dead455c03ce9d911d020cfa3511d31", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b099851f-dea4-4077-97ec-33dad8a89f4d", + "apim-request-id": "b2ce8994-3a7c-439b-ba29-7071d43b71e7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:15 GMT", + "Date": "Fri, 30 Oct 2020 12:58:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "ac749eeb-910a-456f-92be-c920ef58ee5d", + "modelId": "c4072b8a-2868-4020-bb7c-bbe4103dbc96", "status": "creating", - "createdDateTime": "2020-09-10T23:53:14Z", - "lastUpdatedDateTime": "2020-09-10T23:53:14Z" + "createdDateTime": "2020-10-30T12:58:53Z", + "lastUpdatedDateTime": "2020-10-30T12:58:53Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c4072b8a-2868-4020-bb7c-bbe4103dbc96?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "80d4b950f006534a9e1e8a2328a15a7d", "x-ms-return-client-request-id": "true" @@ -114,188 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c6e5ab90-e127-4745-a963-076ae56155fe", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "ac749eeb-910a-456f-92be-c920ef58ee5d", - "status": "creating", - "createdDateTime": "2020-09-10T23:53:14Z", - "lastUpdatedDateTime": "2020-09-10T23:53:14Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "0d7474d12f21d45ae20c4910f3468bf1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cd5bf80e-d7ea-4738-84ce-964d74e4efa9", + "apim-request-id": "78737e17-aeac-451e-a3a5-eeb0493736b2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:18 GMT", + "Date": "Fri, 30 Oct 2020 12:58:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "modelInfo": { - "modelId": "ac749eeb-910a-456f-92be-c920ef58ee5d", - "status": "creating", - "createdDateTime": "2020-09-10T23:53:14Z", - "lastUpdatedDateTime": "2020-09-10T23:53:14Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "af87b1f8b22b654b8997ae1e35b6c16f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d7e97e66-f5fe-4dd5-8d8c-c5368e705a45", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:19 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "ac749eeb-910a-456f-92be-c920ef58ee5d", - "status": "creating", - "createdDateTime": "2020-09-10T23:53:14Z", - "lastUpdatedDateTime": "2020-09-10T23:53:14Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2efda2760fdc210f5f009df9a63a5f57", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2522714e-39ae-44e9-b970-dbde9a2570eb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:20 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "ac749eeb-910a-456f-92be-c920ef58ee5d", - "status": "creating", - "createdDateTime": "2020-09-10T23:53:14Z", - "lastUpdatedDateTime": "2020-09-10T23:53:14Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "772b9993aa1a1f52290f848a803c9e2b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "154ebd55-e5a9-42a6-a6bd-6a7133dc8603", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "ac749eeb-910a-456f-92be-c920ef58ee5d", - "status": "creating", - "createdDateTime": "2020-09-10T23:53:14Z", - "lastUpdatedDateTime": "2020-09-10T23:53:14Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "519ada4b5c48e814a165502b1452be4e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fd67e06b-62c7-42a4-b020-012a7bb45cc2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:22 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "ac749eeb-910a-456f-92be-c920ef58ee5d", + "modelId": "c4072b8a-2868-4020-bb7c-bbe4103dbc96", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-10T23:53:14Z", - "lastUpdatedDateTime": "2020-09-10T23:53:21Z" + "createdDateTime": "2020-10-30T12:58:53Z", + "lastUpdatedDateTime": "2020-10-30T12:58:55Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -393,182 +228,152 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c4072b8a-2868-4020-bb7c-bbe4103dbc96/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "479269", "Content-Type": "image/jpeg", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fec711b3c851cc4d85927f2115ffa83a-d82187a6f610a244-00", + "traceparent": "00-34909c7b0470c946b7d7d2d4794fe76b-81c55362124d2e4a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9b8b5737498bcb554fde05cd8b84a022", + "x-ms-client-request-id": "0d7474d12f21d45ae20c4910f3468bf1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "44013966-3e3a-4ccb-b429-334933af9227", + "apim-request-id": "f2dcd726-4b6c-4b9d-ab3b-d43b95e0dc0f", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:22 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d/analyzeresults/98eaa2af-4bd5-4069-a0f0-10ee563d93df", + "Date": "Fri, 30 Oct 2020 12:58:56 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c4072b8a-2868-4020-bb7c-bbe4103dbc96/analyzeresults/d23167b9-865f-430c-acd7-e11e52842208", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "176" + "x-envoy-upstream-service-time": "181" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d/analyzeResults/98eaa2af-4bd5-4069-a0f0-10ee563d93df", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cbad71610ea0360f8542d5b45a270ad6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ccaedad2-83bf-49b8-a14b-5a8657a986e2", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:22 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:22Z", - "lastUpdatedDateTime": "2020-09-10T23:53:22Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d/analyzeResults/98eaa2af-4bd5-4069-a0f0-10ee563d93df", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c4072b8a-2868-4020-bb7c-bbe4103dbc96/analyzeResults/d23167b9-865f-430c-acd7-e11e52842208", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2953355003b102a085ce016957465d1c", + "x-ms-client-request-id": "af87b1f8b22b654b8997ae1e35b6c16f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f6c9e638-aab6-4933-9e87-87b2a126c3d3", + "apim-request-id": "72c139a8-a107-4608-b85e-bb30a861e125", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:23 GMT", + "Date": "Fri, 30 Oct 2020 12:58:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:22Z", - "lastUpdatedDateTime": "2020-09-10T23:53:22Z" + "createdDateTime": "2020-10-30T12:58:57Z", + "lastUpdatedDateTime": "2020-10-30T12:58:57Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d/analyzeResults/98eaa2af-4bd5-4069-a0f0-10ee563d93df", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c4072b8a-2868-4020-bb7c-bbe4103dbc96/analyzeResults/d23167b9-865f-430c-acd7-e11e52842208", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a2c92dc4f3a428ae4754164873a07028", + "x-ms-client-request-id": "2efda2760fdc210f5f009df9a63a5f57", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cfd11038-3d9e-4a61-8182-cceb58b8eec3", + "apim-request-id": "e3adf7b4-c8e0-4601-b849-5a355e58415d", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:24 GMT", + "Date": "Fri, 30 Oct 2020 12:58:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:22Z", - "lastUpdatedDateTime": "2020-09-10T23:53:22Z" + "createdDateTime": "2020-10-30T12:58:57Z", + "lastUpdatedDateTime": "2020-10-30T12:58:57Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d/analyzeResults/98eaa2af-4bd5-4069-a0f0-10ee563d93df", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c4072b8a-2868-4020-bb7c-bbe4103dbc96/analyzeResults/d23167b9-865f-430c-acd7-e11e52842208", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "557d2ed477315e71d1ab46d10ca5df3e", + "x-ms-client-request-id": "772b9993aa1a1f52290f848a803c9e2b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "470162c1-af12-43da-8f95-5df36bf63482", + "apim-request-id": "f5c0c9ae-4db1-426a-82e3-d18dccef7b47", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:25 GMT", + "Date": "Fri, 30 Oct 2020 12:59:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:22Z", - "lastUpdatedDateTime": "2020-09-10T23:53:22Z" + "createdDateTime": "2020-10-30T12:58:57Z", + "lastUpdatedDateTime": "2020-10-30T12:58:57Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d/analyzeResults/98eaa2af-4bd5-4069-a0f0-10ee563d93df", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c4072b8a-2868-4020-bb7c-bbe4103dbc96/analyzeResults/d23167b9-865f-430c-acd7-e11e52842208", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2defb9e5675d5d31862ae15dec578ee4", + "x-ms-client-request-id": "519ada4b5c48e814a165502b1452be4e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b156d10e-be8e-4510-b7dc-0ff9cf2266b7", + "apim-request-id": "7ca61657-6105-4d7e-929c-d6f81d809f4d", "Content-Length": "6054", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:26 GMT", + "Date": "Fri, 30 Oct 2020 12:59:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:53:22Z", - "lastUpdatedDateTime": "2020-09-10T23:53:26Z", + "createdDateTime": "2020-10-30T12:58:57Z", + "lastUpdatedDateTime": "2020-10-30T12:59:00Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1022,13 +827,46 @@ ], "documentResults": [ { - "docType": "custom:ac749eeb-910a-456f-92be-c920ef58ee5d", - "modelId": "ac749eeb-910a-456f-92be-c920ef58ee5d", + "docType": "custom:c4072b8a-2868-4020-bb7c-bbe4103dbc96", + "modelId": "c4072b8a-2868-4020-bb7c-bbe4103dbc96", "pageRange": [ 1, 1 ], "fields": { + "Quantity": { + "type": "number", + "text": "20", + "page": 1, + "boundingBox": [ + 861.0, + 1094.0, + 892.0, + 1094.0, + 892.0, + 1119.0, + 861.0, + 1119.0 + ], + "confidence": 0.962 + }, + "CompanyPhoneNumber": { + "type": "string", + "valueString": "938-294-2949", + "text": "938-294-2949", + "page": 1, + "boundingBox": [ + 708.0, + 722.0, + 885.0, + 722.0, + 885.0, + 749.0, + 708.0, + 749.0 + ], + "confidence": 1.0 + }, "Tax": { "type": "string", "valueString": "$4.00", @@ -1046,22 +884,22 @@ ], "confidence": 0.994 }, - "Total": { + "Merchant": { "type": "string", - "valueString": "$144.00", - "text": "$144.00", + "valueString": "Hero Limited", + "text": "Hero Limited", "page": 1, "boundingBox": [ - 1427.0, - 1669.0, - 1529.0, - 1669.0, - 1529.0, - 1698.0, - 1427.0, - 1698.0 + 620.0, + 205.0, + 1075.0, + 205.0, + 1075.0, + 266.0, + 620.0, + 266.0 ], - "confidence": 0.991 + "confidence": 0.97 }, "DatedAs": { "type": "string", @@ -1080,56 +918,39 @@ ], "confidence": 0.99 }, - "CompanyName": { - "type": "string", - "valueString": "Higgly Wiggly Books", - "text": "Higgly Wiggly Books", - "page": 1, - "boundingBox": [ - 375.0, - 646.0, - 629.0, - 646.0, - 629.0, - 679.0, - 375.0, - 679.0 - ], - "confidence": 0.95 - }, - "Email": { + "Subtotal": { "type": "string", - "valueString": "accounts@herolimited.com", - "text": "accounts@herolimited.com", + "valueString": "$140.00", + "text": "$140.00", "page": 1, "boundingBox": [ - 164.0, - 479.0, - 478.0, - 479.0, - 478.0, - 503.0, - 164.0, - 503.0 + 1426.0, + 1572.0, + 1531.0, + 1572.0, + 1531.0, + 1599.0, + 1426.0, + 1599.0 ], - "confidence": 1.0 + "confidence": 0.984 }, - "CompanyPhoneNumber": { + "Website": { "type": "string", - "valueString": "938-294-2949", - "text": "938-294-2949", + "valueString": "www.herolimited.com", + "text": "www.herolimited.com", "page": 1, "boundingBox": [ - 708.0, - 722.0, - 885.0, - 722.0, - 885.0, - 749.0, - 708.0, - 749.0 + 273.0, + 393.0, + 531.0, + 393.0, + 531.0, + 418.0, + 273.0, + 418.0 ], - "confidence": 1.0 + "confidence": 0.95 }, "PurchaseOrderNumber": { "type": "string", @@ -1148,55 +969,56 @@ ], "confidence": 0.94 }, - "Quantity": { - "type": "number", - "text": "20", + "Total": { + "type": "string", + "valueString": "$144.00", + "text": "$144.00", "page": 1, "boundingBox": [ - 861.0, - 1094.0, - 892.0, - 1094.0, - 892.0, - 1119.0, - 861.0, - 1119.0 + 1427.0, + 1669.0, + 1529.0, + 1669.0, + 1529.0, + 1698.0, + 1427.0, + 1698.0 ], - "confidence": 0.962 + "confidence": 0.991 }, - "Signature": { + "Email": { "type": "string", - "valueString": "Bernie Sanders", - "text": "Bernie Sanders", + "valueString": "accounts@herolimited.com", + "text": "accounts@herolimited.com", "page": 1, "boundingBox": [ - 489.0, - 1670.0, - 765.0, - 1670.0, - 765.0, - 1708.0, - 489.0, - 1708.0 + 164.0, + 479.0, + 478.0, + 479.0, + 478.0, + 503.0, + 164.0, + 503.0 ], - "confidence": 0.998 + "confidence": 1.0 }, - "VendorName": { + "CompanyName": { "type": "string", - "valueString": "Hillary Swank", - "text": "Hillary Swank", + "valueString": "Higgly Wiggly Books", + "text": "Higgly Wiggly Books", "page": 1, "boundingBox": [ - 349.0, - 609.0, - 521.0, - 609.0, - 521.0, - 639.0, - 349.0, - 639.0 + 375.0, + 646.0, + 629.0, + 646.0, + 629.0, + 679.0, + 375.0, + 679.0 ], - "confidence": 0.93 + "confidence": 0.95 }, "PhoneNumber": { "type": "string", @@ -1215,57 +1037,6 @@ ], "confidence": 0.89 }, - "Website": { - "type": "string", - "valueString": "www.herolimited.com", - "text": "www.herolimited.com", - "page": 1, - "boundingBox": [ - 273.0, - 393.0, - 531.0, - 393.0, - 531.0, - 418.0, - 273.0, - 418.0 - ], - "confidence": 0.95 - }, - "Merchant": { - "type": "string", - "valueString": "Hero Limited", - "text": "Hero Limited", - "page": 1, - "boundingBox": [ - 620.0, - 205.0, - 1075.0, - 205.0, - 1075.0, - 266.0, - 620.0, - 266.0 - ], - "confidence": 0.97 - }, - "Subtotal": { - "type": "string", - "valueString": "$140.00", - "text": "$140.00", - "page": 1, - "boundingBox": [ - 1426.0, - 1572.0, - 1531.0, - 1572.0, - 1531.0, - 1599.0, - 1426.0, - 1599.0 - ], - "confidence": 0.984 - }, "CompanyAddress": { "type": "string", "valueString": "938 NE Burner Road Boulder City, CO 92848", @@ -1282,6 +1053,40 @@ 751.0 ], "confidence": 1.0 + }, + "VendorName": { + "type": "string", + "valueString": "Hillary Swank", + "text": "Hillary Swank", + "page": 1, + "boundingBox": [ + 349.0, + 609.0, + 521.0, + 609.0, + 521.0, + 639.0, + 349.0, + 639.0 + ], + "confidence": 0.93 + }, + "Signature": { + "type": "string", + "valueString": "Bernie Sanders", + "text": "Bernie Sanders", + "page": 1, + "boundingBox": [ + 489.0, + 1670.0, + 765.0, + 1670.0, + 765.0, + 1708.0, + 489.0, + 1708.0 + ], + "confidence": 0.998 } }, "docTypeConfidence": 1.0 @@ -1292,28 +1097,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ac749eeb-910a-456f-92be-c920ef58ee5d", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c4072b8a-2868-4020-bb7c-bbe4103dbc96", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-209d69f42faced4d9577cb1592ef97df-9ffdc100cbeffa46-00", + "traceparent": "00-34e73601ca06914caf1d52e399e818c7-c9ae180630f25a46-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2895d85e07c84debbc6bd0f9acdd1ca2", + "x-ms-client-request-id": "9b8b5737498bcb554fde05cd8b84a022", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "0017fa89-719d-46c4-a71c-1951748cfad7", + "apim-request-id": "274d1a48-df5e-41b7-a39d-7eb0553dcaf3", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:26 GMT", + "Date": "Fri, 30 Oct 2020 12:59:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": [] } @@ -1321,7 +1126,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "761765626" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,True).json index aadbd17caffa4..9177f34ff9067 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b90c8c593c278444a65d6bdd73fa69c8-6b772141eb755d42-00", + "traceparent": "00-9cb4ec4932e8ea4f8a9478d61d1738a3-35902b69c0173c41-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9367673adbaf8f9d6d55cf47afa5af79", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "b893ca5f-b8c6-44bb-a269-f2f48710edd0", + "apim-request-id": "6f5f05db-655f-4bad-9d5b-e6cfe5263e1a", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:50:39 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476", + "Date": "Fri, 30 Oct 2020 12:52:34 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ec8ed71a-80bc-403c-9af0-54cabf99565a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ec8ed71a-80bc-403c-9af0-54cabf99565a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a388ae70e29e74f637db81dfc47fbd5d", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8a5ca339-4d24-4494-8247-c8ae3d64d682", + "apim-request-id": "f9e8f12a-3398-41d1-ad33-68e9a31cbf17", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:39 GMT", + "Date": "Fri, 30 Oct 2020 12:52:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "a459bc46-45c3-4dd1-ad22-93ddbc0c6476", + "modelId": "ec8ed71a-80bc-403c-9af0-54cabf99565a", "status": "creating", - "createdDateTime": "2020-09-10T23:50:40Z", - "lastUpdatedDateTime": "2020-09-10T23:50:40Z" + "createdDateTime": "2020-10-30T12:52:35Z", + "lastUpdatedDateTime": "2020-10-30T12:52:35Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ec8ed71a-80bc-403c-9af0-54cabf99565a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e4e2b17a2bd600ccafe4534ece788a44", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6986ce81-b0e2-477f-b586-a2d9b1527681", + "apim-request-id": "f7c9160d-8a5f-4f69-8d86-6cabd701ed7b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:40 GMT", + "Date": "Fri, 30 Oct 2020 12:52:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "a459bc46-45c3-4dd1-ad22-93ddbc0c6476", + "modelId": "ec8ed71a-80bc-403c-9af0-54cabf99565a", "status": "creating", - "createdDateTime": "2020-09-10T23:50:40Z", - "lastUpdatedDateTime": "2020-09-10T23:50:40Z" + "createdDateTime": "2020-10-30T12:52:35Z", + "lastUpdatedDateTime": "2020-10-30T12:52:35Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ec8ed71a-80bc-403c-9af0-54cabf99565a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b95afc4e564c588970f35bd45abecaed", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "020cb028-c22f-4bf1-833c-6276a8631351", + "apim-request-id": "78542810-4876-4814-b0b0-b54ab053ccd0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:41 GMT", + "Date": "Fri, 30 Oct 2020 12:52:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "a459bc46-45c3-4dd1-ad22-93ddbc0c6476", + "modelId": "ec8ed71a-80bc-403c-9af0-54cabf99565a", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-10T23:50:40Z", - "lastUpdatedDateTime": "2020-09-10T23:50:42Z" + "createdDateTime": "2020-10-30T12:52:35Z", + "lastUpdatedDateTime": "2020-10-30T12:52:36Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,17 +228,17 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ec8ed71a-80bc-403c-9af0-54cabf99565a/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "479269", "Content-Type": "image/jpeg", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eb1ec82d4b938546bfb2276ed2247910-bd930ce9c10cd340-00", + "traceparent": "00-bb68a742ec0b2c49a09039c618e9d299-dd0d6a83c97ba247-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fecc7197cac345a2e187f4ba8fa7a6be", "x-ms-return-client-request-id": "true" @@ -246,25 +246,25 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ed8a13d7-2c81-4295-ad12-4c5f0652c40e", + "apim-request-id": "c9270b0d-2a0d-4669-9026-62431f1ddd4d", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:50:42 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476/analyzeresults/0e8a9118-693c-4b28-a053-bd69e1f75072", + "Date": "Fri, 30 Oct 2020 12:52:38 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ec8ed71a-80bc-403c-9af0-54cabf99565a/analyzeresults/f7b624c7-fd48-4d9f-8489-437eca01c6af", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-envoy-upstream-service-time": "572" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476/analyzeResults/0e8a9118-693c-4b28-a053-bd69e1f75072", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ec8ed71a-80bc-403c-9af0-54cabf99565a/analyzeResults/f7b624c7-fd48-4d9f-8489-437eca01c6af", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c8903c5003252411288a73e3cff7a6f0", "x-ms-return-client-request-id": "true" @@ -272,29 +272,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c321b0c6-d40b-43f5-ade9-0e89c3cb4c36", + "apim-request-id": "d2097ad9-9e23-44b6-88fe-11fbd7e43cd1", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:42 GMT", + "Date": "Fri, 30 Oct 2020 12:52:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:43Z", - "lastUpdatedDateTime": "2020-09-10T23:50:43Z" + "createdDateTime": "2020-10-30T12:52:39Z", + "lastUpdatedDateTime": "2020-10-30T12:52:39Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476/analyzeResults/0e8a9118-693c-4b28-a053-bd69e1f75072", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ec8ed71a-80bc-403c-9af0-54cabf99565a/analyzeResults/f7b624c7-fd48-4d9f-8489-437eca01c6af", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5cb766198cac83815915d8c561cfc8c9", "x-ms-return-client-request-id": "true" @@ -302,29 +302,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "477e4714-2853-434b-87fb-0c5b6df60864", + "apim-request-id": "089ea962-7046-4f6f-945a-6ca94196c3a5", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:43 GMT", + "Date": "Fri, 30 Oct 2020 12:52:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:43Z", - "lastUpdatedDateTime": "2020-09-10T23:50:43Z" + "createdDateTime": "2020-10-30T12:52:39Z", + "lastUpdatedDateTime": "2020-10-30T12:52:39Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476/analyzeResults/0e8a9118-693c-4b28-a053-bd69e1f75072", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ec8ed71a-80bc-403c-9af0-54cabf99565a/analyzeResults/f7b624c7-fd48-4d9f-8489-437eca01c6af", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1d849c4c022d93c760a8d53857bf75e9", "x-ms-return-client-request-id": "true" @@ -332,29 +332,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce60eed8-340a-496c-a400-7ba1d435f71a", + "apim-request-id": "05d11c52-f76b-423d-83aa-1fd013397af9", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:44 GMT", + "Date": "Fri, 30 Oct 2020 12:52:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "179" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:43Z", - "lastUpdatedDateTime": "2020-09-10T23:50:43Z" + "createdDateTime": "2020-10-30T12:52:39Z", + "lastUpdatedDateTime": "2020-10-30T12:52:39Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476/analyzeResults/0e8a9118-693c-4b28-a053-bd69e1f75072", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ec8ed71a-80bc-403c-9af0-54cabf99565a/analyzeResults/f7b624c7-fd48-4d9f-8489-437eca01c6af", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "29a003e04af0c412bb0d6e0f2b4cc259", "x-ms-return-client-request-id": "true" @@ -362,138 +362,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "af54b65a-78d9-4f64-baeb-6b2cfbc7500e", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:46 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:43Z", - "lastUpdatedDateTime": "2020-09-10T23:50:43Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476/analyzeResults/0e8a9118-693c-4b28-a053-bd69e1f75072", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3296aac1897316c39e23fb04b6482b99", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e39fb8a8-f2d7-4b22-b5a5-78801e45c972", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:47 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:43Z", - "lastUpdatedDateTime": "2020-09-10T23:50:46Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476/analyzeResults/0e8a9118-693c-4b28-a053-bd69e1f75072", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5de4eea09f2e02d88abf611f93b86814", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "73eab3af-1b79-418d-82df-14ba682f57fa", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:43Z", - "lastUpdatedDateTime": "2020-09-10T23:50:46Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476/analyzeResults/0e8a9118-693c-4b28-a053-bd69e1f75072", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ad767ce54329577640898bcc4e0e0e72", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "66967b13-ad96-4d6e-8a5e-4014703ecb7e", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:49 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:50:43Z", - "lastUpdatedDateTime": "2020-09-10T23:50:46Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476/analyzeResults/0e8a9118-693c-4b28-a053-bd69e1f75072", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3c6fd4e26467222bd193a8b427a383e6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4074c641-09dc-4053-9b47-c70a371ce114", + "apim-request-id": "2a638796-dfee-4456-a137-2906748483e2", "Content-Length": "25118", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:50:50 GMT", + "Date": "Fri, 30 Oct 2020 12:52:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:50:43Z", - "lastUpdatedDateTime": "2020-09-10T23:50:49Z", + "createdDateTime": "2020-10-30T12:52:39Z", + "lastUpdatedDateTime": "2020-10-30T12:52:43Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1270,7 +1150,7 @@ 751 ], "text": "92848", - "confidence": 0.977 + "confidence": 0.976 } ] }, @@ -1385,7 +1265,7 @@ 879 ], "text": "Name:", - "confidence": 0.986 + "confidence": 0.983 }, { "boundingBox": [ @@ -3694,131 +3574,91 @@ ], "documentResults": [ { - "docType": "custom:a459bc46-45c3-4dd1-ad22-93ddbc0c6476", - "modelId": "a459bc46-45c3-4dd1-ad22-93ddbc0c6476", + "docType": "custom:ec8ed71a-80bc-403c-9af0-54cabf99565a", + "modelId": "ec8ed71a-80bc-403c-9af0-54cabf99565a", "pageRange": [ 1, 1 ], "fields": { - "Website": { + "VendorName": { "type": "string", - "valueString": "www.herolimited.com", - "text": "www.herolimited.com", - "page": 1, - "boundingBox": [ - 273.0, - 393.0, - 531.0, - 393.0, - 531.0, - 418.0, - 273.0, - 418.0 - ], - "confidence": 0.95, - "elements": [ - "#/readResults/0/lines/4/words/1" - ] - }, - "Quantity": { - "type": "number", - "text": "20", + "valueString": "Hillary Swank", + "text": "Hillary Swank", "page": 1, "boundingBox": [ - 861.0, - 1094.0, - 892.0, - 1094.0, - 892.0, - 1119.0, - 861.0, - 1119.0 + 349.0, + 609.0, + 521.0, + 609.0, + 521.0, + 639.0, + 349.0, + 639.0 ], - "confidence": 0.962, + "confidence": 0.93, "elements": [ - "#/readResults/0/lines/26/words/0" + "#/readResults/0/lines/10/words/2", + "#/readResults/0/lines/10/words/3" ] }, - "Subtotal": { + "PhoneNumber": { "type": "string", - "valueString": "$140.00", - "text": "$140.00", + "valueString": "555-348-6512", + "text": "555-348-6512", "page": 1, "boundingBox": [ - 1426.0, - 1572.0, - 1531.0, - 1572.0, - 1531.0, - 1599.0, - 1426.0, - 1599.0 + 364.0, + 351.0, + 528.0, + 351.0, + 528.0, + 378.0, + 364.0, + 378.0 ], - "confidence": 0.984, + "confidence": 0.89, "elements": [ - "#/readResults/0/lines/42/words/0" + "#/readResults/0/lines/3/words/2" ] }, - "Total": { + "Tax": { "type": "string", - "valueString": "$144.00", - "text": "$144.00", + "valueString": "$4.00", + "text": "$4.00", "page": 1, "boundingBox": [ - 1427.0, - 1669.0, + 1458.0, + 1615.0, 1529.0, - 1669.0, + 1615.0, 1529.0, - 1698.0, - 1427.0, - 1698.0 - ], - "confidence": 0.991, - "elements": [ - "#/readResults/0/lines/47/words/0" - ] - }, - "VendorName": { - "type": "string", - "valueString": "Hillary Swank", - "text": "Hillary Swank", - "page": 1, - "boundingBox": [ - 349.0, - 609.0, - 521.0, - 609.0, - 521.0, - 639.0, - 349.0, - 639.0 + 1643.0, + 1458.0, + 1643.0 ], - "confidence": 0.93, + "confidence": 0.994, "elements": [ - "#/readResults/0/lines/10/words/2", - "#/readResults/0/lines/10/words/3" + "#/readResults/0/lines/44/words/0" ] }, - "CompanyPhoneNumber": { - "type": "string", - "valueString": "938-294-2949", - "text": "938-294-2949", + "Quantity": { + "type": "number", + "text": "20", "page": 1, "boundingBox": [ - 708.0, - 722.0, - 885.0, - 722.0, - 885.0, - 749.0, - 708.0, - 749.0 + 861.0, + 1094.0, + 892.0, + 1094.0, + 892.0, + 1119.0, + 861.0, + 1119.0 ], - "confidence": 1.0, + "confidence": 0.962, "elements": [ - "#/readResults/0/lines/14/words/1" + "#/readResults/0/lines/26/words/0" ] }, "Merchant": { @@ -3842,44 +3682,71 @@ "#/readResults/0/lines/1/words/1" ] }, - "PhoneNumber": { + "DatedAs": { "type": "string", - "valueString": "555-348-6512", - "text": "555-348-6512", + "valueString": "12/20/2020", + "text": "12/20/2020", "page": 1, "boundingBox": [ - 364.0, - 351.0, - 528.0, - 351.0, - 528.0, - 378.0, - 364.0, - 378.0 + 1165.0, + 420.0, + 1317.0, + 420.0, + 1317.0, + 449.0, + 1165.0, + 449.0 ], - "confidence": 0.89, + "confidence": 0.99, "elements": [ - "#/readResults/0/lines/3/words/2" + "#/readResults/0/lines/6/words/2" ] }, - "Email": { + "CompanyAddress": { "type": "string", - "valueString": "accounts@herolimited.com", - "text": "accounts@herolimited.com", + "valueString": "938 NE Burner Road Boulder City, CO 92848", + "text": "938 NE Burner Road Boulder City, CO 92848", "page": 1, "boundingBox": [ - 164.0, - 479.0, - 478.0, - 479.0, - 478.0, - 503.0, - 164.0, - 503.0 + 273.0, + 685.0, + 565.0, + 685.0, + 565.0, + 751.0, + 273.0, + 751.0 ], "confidence": 1.0, "elements": [ - "#/readResults/0/lines/7/words/0" + "#/readResults/0/lines/12/words/1", + "#/readResults/0/lines/12/words/2", + "#/readResults/0/lines/12/words/3", + "#/readResults/0/lines/12/words/4", + "#/readResults/0/lines/13/words/0", + "#/readResults/0/lines/13/words/1", + "#/readResults/0/lines/13/words/2", + "#/readResults/0/lines/13/words/3" + ] + }, + "Subtotal": { + "type": "string", + "valueString": "$140.00", + "text": "$140.00", + "page": 1, + "boundingBox": [ + 1426.0, + 1572.0, + 1531.0, + 1572.0, + 1531.0, + 1599.0, + 1426.0, + 1599.0 + ], + "confidence": 0.984, + "elements": [ + "#/readResults/0/lines/42/words/0" ] }, "PurchaseOrderNumber": { @@ -3902,26 +3769,6 @@ "#/readResults/0/lines/8/words/3" ] }, - "DatedAs": { - "type": "string", - "valueString": "12/20/2020", - "text": "12/20/2020", - "page": 1, - "boundingBox": [ - 1165.0, - 420.0, - 1317.0, - 420.0, - 1317.0, - 449.0, - 1165.0, - 449.0 - ], - "confidence": 0.99, - "elements": [ - "#/readResults/0/lines/6/words/2" - ] - }, "CompanyName": { "type": "string", "valueString": "Higgly Wiggly Books", @@ -3965,51 +3812,84 @@ "#/readResults/0/lines/45/words/1" ] }, - "Tax": { + "Email": { "type": "string", - "valueString": "$4.00", - "text": "$4.00", + "valueString": "accounts@herolimited.com", + "text": "accounts@herolimited.com", "page": 1, "boundingBox": [ - 1458.0, - 1615.0, + 164.0, + 479.0, + 478.0, + 479.0, + 478.0, + 503.0, + 164.0, + 503.0 + ], + "confidence": 1.0, + "elements": [ + "#/readResults/0/lines/7/words/0" + ] + }, + "CompanyPhoneNumber": { + "type": "string", + "valueString": "938-294-2949", + "text": "938-294-2949", + "page": 1, + "boundingBox": [ + 708.0, + 722.0, + 885.0, + 722.0, + 885.0, + 749.0, + 708.0, + 749.0 + ], + "confidence": 1.0, + "elements": [ + "#/readResults/0/lines/14/words/1" + ] + }, + "Total": { + "type": "string", + "valueString": "$144.00", + "text": "$144.00", + "page": 1, + "boundingBox": [ + 1427.0, + 1669.0, 1529.0, - 1615.0, + 1669.0, 1529.0, - 1643.0, - 1458.0, - 1643.0 + 1698.0, + 1427.0, + 1698.0 ], - "confidence": 0.994, + "confidence": 0.991, "elements": [ - "#/readResults/0/lines/44/words/0" + "#/readResults/0/lines/47/words/0" ] }, - "CompanyAddress": { + "Website": { "type": "string", - "valueString": "938 NE Burner Road Boulder City, CO 92848", - "text": "938 NE Burner Road Boulder City, CO 92848", + "valueString": "www.herolimited.com", + "text": "www.herolimited.com", "page": 1, "boundingBox": [ 273.0, - 685.0, - 565.0, - 685.0, - 565.0, - 751.0, + 393.0, + 531.0, + 393.0, + 531.0, + 418.0, 273.0, - 751.0 + 418.0 ], - "confidence": 1.0, + "confidence": 0.95, "elements": [ - "#/readResults/0/lines/12/words/1", - "#/readResults/0/lines/12/words/2", - "#/readResults/0/lines/12/words/3", - "#/readResults/0/lines/12/words/4", - "#/readResults/0/lines/13/words/0", - "#/readResults/0/lines/13/words/1", - "#/readResults/0/lines/13/words/2", - "#/readResults/0/lines/13/words/3" + "#/readResults/0/lines/4/words/1" ] } }, @@ -4021,28 +3901,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a459bc46-45c3-4dd1-ad22-93ddbc0c6476", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ec8ed71a-80bc-403c-9af0-54cabf99565a", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-64cf2d31b0cf1c4aa8f1c76d3120805f-ecda8b747fb1744b-00", + "traceparent": "00-e29b9abee4cc384880ed451e6d50d327-8d1fa1000fc50745-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3a1ee7bb7ed25c70788c1da4140bb47b", + "x-ms-client-request-id": "3296aac1897316c39e23fb04b6482b99", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "c67f1502-0ac9-4f9b-8024-dfdd4f56d93f", + "apim-request-id": "62cdf569-ac6d-4519-b8db-e174ccaa4525", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:50:50 GMT", + "Date": "Fri, 30 Oct 2020 12:52:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": [] } @@ -4050,7 +3930,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1966338678" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,True)Async.json index c335868a0dd6f..9db71168e103a 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabels(True,True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c482b59e6cf86b4ab02462621eebde22-36f103af11659645-00", + "traceparent": "00-f8835a1c5df47a48a3cfc9ba6b5ba296-fe319c5e322e974b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ba344c2e3e0a2f5218151a827513e9cf", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "f0152a22-cf32-4c53-878b-179070140473", + "apim-request-id": "9af79c24-adeb-4ce2-a78f-ec349e91a5c3", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:06 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f5a17c08-3061-4e3a-a440-c2106cbbae21", + "Date": "Fri, 30 Oct 2020 12:58:46 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/80e9f7bc-1ec3-4218-a5c8-63a258217fcd", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f5a17c08-3061-4e3a-a440-c2106cbbae21?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/80e9f7bc-1ec3-4218-a5c8-63a258217fcd?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5472efd286226efb0b85e616049db75f", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c35b7359-076c-4925-8fb3-a17b7aeec62a", + "apim-request-id": "a7179ecc-2313-4574-9e0b-2cce24769412", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:06 GMT", + "Date": "Fri, 30 Oct 2020 12:58:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "f5a17c08-3061-4e3a-a440-c2106cbbae21", + "modelId": "80e9f7bc-1ec3-4218-a5c8-63a258217fcd", "status": "creating", - "createdDateTime": "2020-09-10T23:53:07Z", - "lastUpdatedDateTime": "2020-09-10T23:53:07Z" + "createdDateTime": "2020-10-30T12:58:46Z", + "lastUpdatedDateTime": "2020-10-30T12:58:46Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f5a17c08-3061-4e3a-a440-c2106cbbae21?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/80e9f7bc-1ec3-4218-a5c8-63a258217fcd?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "156de92959d84d98b50078a9b7b232f8", "x-ms-return-client-request-id": "true" @@ -81,56 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c245f280-7199-45c7-8c2b-86ec37dc6200", + "apim-request-id": "39b9935e-4e95-4d00-8224-21a4e4c12be6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:08 GMT", + "Date": "Fri, 30 Oct 2020 12:58:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "f5a17c08-3061-4e3a-a440-c2106cbbae21", - "status": "creating", - "createdDateTime": "2020-09-10T23:53:07Z", - "lastUpdatedDateTime": "2020-09-10T23:53:07Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f5a17c08-3061-4e3a-a440-c2106cbbae21?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "389171302e7fa82d51c6af85583b2b7a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b57f52b7-19ae-4dff-9d47-d46d11def8c7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "f5a17c08-3061-4e3a-a440-c2106cbbae21", + "modelId": "80e9f7bc-1ec3-4218-a5c8-63a258217fcd", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-10T23:53:07Z", - "lastUpdatedDateTime": "2020-09-10T23:53:09Z" + "createdDateTime": "2020-10-30T12:58:46Z", + "lastUpdatedDateTime": "2020-10-30T12:58:48Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,182 +195,152 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f5a17c08-3061-4e3a-a440-c2106cbbae21/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/80e9f7bc-1ec3-4218-a5c8-63a258217fcd/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "479269", "Content-Type": "image/jpeg", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cddf56e5b3130540a92dd1563f93f902-77b1a44f177dec45-00", + "traceparent": "00-080d41766d119d4a9180395c05a7aece-440512b0bbd57543-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8b59ba5dd3a578f656249e220d51b658", + "x-ms-client-request-id": "389171302e7fa82d51c6af85583b2b7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "46e64168-b9ba-4bfc-a1fe-9cde39c83259", + "apim-request-id": "035fbc00-0dd0-4522-837e-6eadeca586b5", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:10 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f5a17c08-3061-4e3a-a440-c2106cbbae21/analyzeresults/aa62c685-64df-4f37-a8ee-0d3c02bb508b", + "Date": "Fri, 30 Oct 2020 12:58:48 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/80e9f7bc-1ec3-4218-a5c8-63a258217fcd/analyzeresults/02617510-76e9-419c-9362-c67d3197df26", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f5a17c08-3061-4e3a-a440-c2106cbbae21/analyzeResults/aa62c685-64df-4f37-a8ee-0d3c02bb508b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/80e9f7bc-1ec3-4218-a5c8-63a258217fcd/analyzeResults/02617510-76e9-419c-9362-c67d3197df26", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "92e6ed527f0cfae0bbc4c411aa13f579", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c0836ce9-3e0e-4440-8758-97117cc095b2", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:10Z", - "lastUpdatedDateTime": "2020-09-10T23:53:10Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f5a17c08-3061-4e3a-a440-c2106cbbae21/analyzeResults/aa62c685-64df-4f37-a8ee-0d3c02bb508b", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "fd4bfed4a6585d527b19e15b8f0b9bff", + "x-ms-client-request-id": "8b59ba5dd3a578f656249e220d51b658", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8377e26-3f1d-40df-87ab-0efdc2fa59b2", + "apim-request-id": "c1613706-2dc1-4b11-aed9-4c11999521b5", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:11 GMT", + "Date": "Fri, 30 Oct 2020 12:58:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:10Z", - "lastUpdatedDateTime": "2020-09-10T23:53:10Z" + "createdDateTime": "2020-10-30T12:58:48Z", + "lastUpdatedDateTime": "2020-10-30T12:58:48Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f5a17c08-3061-4e3a-a440-c2106cbbae21/analyzeResults/aa62c685-64df-4f37-a8ee-0d3c02bb508b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/80e9f7bc-1ec3-4218-a5c8-63a258217fcd/analyzeResults/02617510-76e9-419c-9362-c67d3197df26", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6a32560f9855de6ed95fd0e10fe4cd43", + "x-ms-client-request-id": "92e6ed527f0cfae0bbc4c411aa13f579", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f79941f5-db59-472f-95ca-573dd5c00088", + "apim-request-id": "20d69975-bc58-4fa5-8161-0ee7a67042b8", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:12 GMT", + "Date": "Fri, 30 Oct 2020 12:58:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "236" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:10Z", - "lastUpdatedDateTime": "2020-09-10T23:53:10Z" + "createdDateTime": "2020-10-30T12:58:48Z", + "lastUpdatedDateTime": "2020-10-30T12:58:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f5a17c08-3061-4e3a-a440-c2106cbbae21/analyzeResults/aa62c685-64df-4f37-a8ee-0d3c02bb508b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/80e9f7bc-1ec3-4218-a5c8-63a258217fcd/analyzeResults/02617510-76e9-419c-9362-c67d3197df26", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0f4d252fb906ab009a8817f29e856ab0", + "x-ms-client-request-id": "fd4bfed4a6585d527b19e15b8f0b9bff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "01805fb1-4cf0-40b2-a74d-35de6f892700", + "apim-request-id": "2b8a711e-53a1-4f62-aabf-1b3253af9ee3", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:13 GMT", + "Date": "Fri, 30 Oct 2020 12:58:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:10Z", - "lastUpdatedDateTime": "2020-09-10T23:53:10Z" + "createdDateTime": "2020-10-30T12:58:48Z", + "lastUpdatedDateTime": "2020-10-30T12:58:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f5a17c08-3061-4e3a-a440-c2106cbbae21/analyzeResults/aa62c685-64df-4f37-a8ee-0d3c02bb508b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/80e9f7bc-1ec3-4218-a5c8-63a258217fcd/analyzeResults/02617510-76e9-419c-9362-c67d3197df26", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5302c4288be03c248f6d23f9d6714d96", + "x-ms-client-request-id": "6a32560f9855de6ed95fd0e10fe4cd43", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f45a5eb0-dcc8-4941-be69-f8f85d258d34", + "apim-request-id": "ea7f5f4d-0cad-4137-94d5-5cd24e1870a5", "Content-Length": "25118", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:14 GMT", + "Date": "Fri, 30 Oct 2020 12:58:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:53:10Z", - "lastUpdatedDateTime": "2020-09-10T23:53:13Z", + "createdDateTime": "2020-10-30T12:58:48Z", + "lastUpdatedDateTime": "2020-10-30T12:58:52Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1180,7 +1117,7 @@ 751 ], "text": "92848", - "confidence": 0.977 + "confidence": 0.976 } ] }, @@ -1295,7 +1232,7 @@ 879 ], "text": "Name:", - "confidence": 0.986 + "confidence": 0.983 }, { "boundingBox": [ @@ -3604,90 +3541,115 @@ ], "documentResults": [ { - "docType": "custom:f5a17c08-3061-4e3a-a440-c2106cbbae21", - "modelId": "f5a17c08-3061-4e3a-a440-c2106cbbae21", + "docType": "custom:80e9f7bc-1ec3-4218-a5c8-63a258217fcd", + "modelId": "80e9f7bc-1ec3-4218-a5c8-63a258217fcd", "pageRange": [ 1, 1 ], "fields": { - "Website": { + "Merchant": { "type": "string", - "valueString": "www.herolimited.com", - "text": "www.herolimited.com", + "valueString": "Hero Limited", + "text": "Hero Limited", "page": 1, "boundingBox": [ - 273.0, - 393.0, - 531.0, - 393.0, - 531.0, - 418.0, - 273.0, - 418.0 + 620.0, + 205.0, + 1075.0, + 205.0, + 1075.0, + 266.0, + 620.0, + 266.0 ], - "confidence": 0.95, + "confidence": 0.97, "elements": [ - "#/readResults/0/lines/4/words/1" + "#/readResults/0/lines/1/words/0", + "#/readResults/0/lines/1/words/1" ] }, - "Quantity": { - "type": "number", - "text": "20", + "CompanyName": { + "type": "string", + "valueString": "Higgly Wiggly Books", + "text": "Higgly Wiggly Books", "page": 1, "boundingBox": [ - 861.0, - 1094.0, - 892.0, - 1094.0, - 892.0, - 1119.0, - 861.0, - 1119.0 + 375.0, + 646.0, + 629.0, + 646.0, + 629.0, + 679.0, + 375.0, + 679.0 ], - "confidence": 0.962, + "confidence": 0.95, "elements": [ - "#/readResults/0/lines/26/words/0" + "#/readResults/0/lines/11/words/2", + "#/readResults/0/lines/11/words/3", + "#/readResults/0/lines/11/words/4" ] }, - "Subtotal": { + "PurchaseOrderNumber": { "type": "string", - "valueString": "$140.00", - "text": "$140.00", + "valueString": "948284", + "text": "948284", "page": 1, "boundingBox": [ - 1426.0, - 1572.0, - 1531.0, - 1572.0, - 1531.0, - 1599.0, - 1426.0, - 1599.0 + 1277.0, + 461.0, + 1376.0, + 461.0, + 1376.0, + 489.0, + 1277.0, + 489.0 ], - "confidence": 0.984, + "confidence": 0.94, "elements": [ - "#/readResults/0/lines/42/words/0" + "#/readResults/0/lines/8/words/3" ] }, - "Total": { + "Tax": { "type": "string", - "valueString": "$144.00", - "text": "$144.00", + "valueString": "$4.00", + "text": "$4.00", "page": 1, "boundingBox": [ - 1427.0, - 1669.0, + 1458.0, + 1615.0, 1529.0, - 1669.0, + 1615.0, 1529.0, - 1698.0, - 1427.0, - 1698.0 + 1643.0, + 1458.0, + 1643.0 ], - "confidence": 0.991, + "confidence": 0.994, "elements": [ - "#/readResults/0/lines/47/words/0" + "#/readResults/0/lines/44/words/0" + ] + }, + "Signature": { + "type": "string", + "valueString": "Bernie Sanders", + "text": "Bernie Sanders", + "page": 1, + "boundingBox": [ + 489.0, + 1670.0, + 765.0, + 1670.0, + 765.0, + 1708.0, + 489.0, + 1708.0 + ], + "confidence": 0.998, + "elements": [ + "#/readResults/0/lines/45/words/0", + "#/readResults/0/lines/45/words/1" ] }, "VendorName": { @@ -3711,45 +3673,24 @@ "#/readResults/0/lines/10/words/3" ] }, - "CompanyPhoneNumber": { - "type": "string", - "valueString": "938-294-2949", - "text": "938-294-2949", - "page": 1, - "boundingBox": [ - 708.0, - 722.0, - 885.0, - 722.0, - 885.0, - 749.0, - 708.0, - 749.0 - ], - "confidence": 1.0, - "elements": [ - "#/readResults/0/lines/14/words/1" - ] - }, - "Merchant": { + "Website": { "type": "string", - "valueString": "Hero Limited", - "text": "Hero Limited", + "valueString": "www.herolimited.com", + "text": "www.herolimited.com", "page": 1, "boundingBox": [ - 620.0, - 205.0, - 1075.0, - 205.0, - 1075.0, - 266.0, - 620.0, - 266.0 + 273.0, + 393.0, + 531.0, + 393.0, + 531.0, + 418.0, + 273.0, + 418.0 ], - "confidence": 0.97, + "confidence": 0.95, "elements": [ - "#/readResults/0/lines/1/words/0", - "#/readResults/0/lines/1/words/1" + "#/readResults/0/lines/4/words/1" ] }, "PhoneNumber": { @@ -3772,44 +3713,51 @@ "#/readResults/0/lines/3/words/2" ] }, - "Email": { + "CompanyAddress": { "type": "string", - "valueString": "accounts@herolimited.com", - "text": "accounts@herolimited.com", + "valueString": "938 NE Burner Road Boulder City, CO 92848", + "text": "938 NE Burner Road Boulder City, CO 92848", "page": 1, "boundingBox": [ - 164.0, - 479.0, - 478.0, - 479.0, - 478.0, - 503.0, - 164.0, - 503.0 + 273.0, + 685.0, + 565.0, + 685.0, + 565.0, + 751.0, + 273.0, + 751.0 ], "confidence": 1.0, "elements": [ - "#/readResults/0/lines/7/words/0" + "#/readResults/0/lines/12/words/1", + "#/readResults/0/lines/12/words/2", + "#/readResults/0/lines/12/words/3", + "#/readResults/0/lines/12/words/4", + "#/readResults/0/lines/13/words/0", + "#/readResults/0/lines/13/words/1", + "#/readResults/0/lines/13/words/2", + "#/readResults/0/lines/13/words/3" ] }, - "PurchaseOrderNumber": { + "CompanyPhoneNumber": { "type": "string", - "valueString": "948284", - "text": "948284", + "valueString": "938-294-2949", + "text": "938-294-2949", "page": 1, "boundingBox": [ - 1277.0, - 461.0, - 1376.0, - 461.0, - 1376.0, - 489.0, - 1277.0, - 489.0 + 708.0, + 722.0, + 885.0, + 722.0, + 885.0, + 749.0, + 708.0, + 749.0 ], - "confidence": 0.94, + "confidence": 1.0, "elements": [ - "#/readResults/0/lines/8/words/3" + "#/readResults/0/lines/14/words/1" ] }, "DatedAs": { @@ -3832,94 +3780,83 @@ "#/readResults/0/lines/6/words/2" ] }, - "CompanyName": { + "Total": { "type": "string", - "valueString": "Higgly Wiggly Books", - "text": "Higgly Wiggly Books", + "valueString": "$144.00", + "text": "$144.00", "page": 1, "boundingBox": [ - 375.0, - 646.0, - 629.0, - 646.0, - 629.0, - 679.0, - 375.0, - 679.0 + 1427.0, + 1669.0, + 1529.0, + 1669.0, + 1529.0, + 1698.0, + 1427.0, + 1698.0 ], - "confidence": 0.95, + "confidence": 0.991, "elements": [ - "#/readResults/0/lines/11/words/2", - "#/readResults/0/lines/11/words/3", - "#/readResults/0/lines/11/words/4" + "#/readResults/0/lines/47/words/0" ] }, - "Signature": { + "Subtotal": { "type": "string", - "valueString": "Bernie Sanders", - "text": "Bernie Sanders", + "valueString": "$140.00", + "text": "$140.00", "page": 1, "boundingBox": [ - 489.0, - 1670.0, - 765.0, - 1670.0, - 765.0, - 1708.0, - 489.0, - 1708.0 + 1426.0, + 1572.0, + 1531.0, + 1572.0, + 1531.0, + 1599.0, + 1426.0, + 1599.0 ], - "confidence": 0.998, + "confidence": 0.984, "elements": [ - "#/readResults/0/lines/45/words/0", - "#/readResults/0/lines/45/words/1" + "#/readResults/0/lines/42/words/0" ] }, - "Tax": { - "type": "string", - "valueString": "$4.00", - "text": "$4.00", + "Quantity": { + "type": "number", + "text": "20", "page": 1, "boundingBox": [ - 1458.0, - 1615.0, - 1529.0, - 1615.0, - 1529.0, - 1643.0, - 1458.0, - 1643.0 + 861.0, + 1094.0, + 892.0, + 1094.0, + 892.0, + 1119.0, + 861.0, + 1119.0 ], - "confidence": 0.994, + "confidence": 0.962, "elements": [ - "#/readResults/0/lines/44/words/0" + "#/readResults/0/lines/26/words/0" ] }, - "CompanyAddress": { + "Email": { "type": "string", - "valueString": "938 NE Burner Road Boulder City, CO 92848", - "text": "938 NE Burner Road Boulder City, CO 92848", + "valueString": "accounts@herolimited.com", + "text": "accounts@herolimited.com", "page": 1, "boundingBox": [ - 273.0, - 685.0, - 565.0, - 685.0, - 565.0, - 751.0, - 273.0, - 751.0 + 164.0, + 479.0, + 478.0, + 479.0, + 478.0, + 503.0, + 164.0, + 503.0 ], "confidence": 1.0, "elements": [ - "#/readResults/0/lines/12/words/1", - "#/readResults/0/lines/12/words/2", - "#/readResults/0/lines/12/words/3", - "#/readResults/0/lines/12/words/4", - "#/readResults/0/lines/13/words/0", - "#/readResults/0/lines/13/words/1", - "#/readResults/0/lines/13/words/2", - "#/readResults/0/lines/13/words/3" + "#/readResults/0/lines/7/words/0" ] } }, @@ -3931,28 +3868,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f5a17c08-3061-4e3a-a440-c2106cbbae21", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/80e9f7bc-1ec3-4218-a5c8-63a258217fcd", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f33350265a24624f8e567e3bad8276b8-a0a5a95595e61f4a-00", + "traceparent": "00-82edff0770860e4caeb8abe9a3f1595b-b69b46bfae009c4b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6a2b9d4b8cbd56f95686cfcc817b4054", + "x-ms-client-request-id": "0f4d252fb906ab009a8817f29e856ab0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "2a784219-498a-4687-a59e-0b4b2d02625d", + "apim-request-id": "eee6911e-fa96-4b10-882e-376f6335dfb0", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:14 GMT", + "Date": "Fri, 30 Oct 2020 12:58:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": [] } @@ -3960,7 +3897,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1153916353" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(False).json index 94d0008493396..0c99409beb4b4 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(False).json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7e108b82bee8bc408eeca0d1205496ce-704df362b7e9ff48-00", + "traceparent": "00-a6f78f8f24da0e44886aad299cec1a53-8d4bae9481e22042-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ac2c8bffc78c57622dfaa0943e71bc4f", @@ -22,24 +22,24 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "cf50a0f3-ddcf-4736-8efa-8d569ceaff25", + "apim-request-id": "e6575c45-0da2-4e22-8ff1-f767899d209f", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:19:27 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d", + "Date": "Fri, 30 Oct 2020 12:53:18 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "842" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b90af338273fafd3fa86adda20e11257", @@ -48,9 +48,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "200365a0-6899-49d7-8dec-72bef1cf5528", + "apim-request-id": "c4cf669e-6a03-45de-b2e0-ef30c7144622", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:27 GMT", + "Date": "Fri, 30 Oct 2020 12:53:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,21 +58,21 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "e968eef3-7415-4644-90b1-5efc3b46a95d", + "modelId": "6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23", "status": "creating", - "createdDateTime": "2020-10-16T18:19:26Z", - "lastUpdatedDateTime": "2020-10-16T18:19:26Z" + "createdDateTime": "2020-10-30T12:53:18Z", + "lastUpdatedDateTime": "2020-10-30T12:53:18Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ea1606298c9055b7b337758d7455f144", @@ -81,9 +81,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "89eca759-9da1-43df-b67e-424798a1553f", + "apim-request-id": "524bf95e-80b1-4de8-a702-ece21a81126a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:28 GMT", + "Date": "Fri, 30 Oct 2020 12:53:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -91,46 +91,13 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "e968eef3-7415-4644-90b1-5efc3b46a95d", - "status": "creating", - "createdDateTime": "2020-10-16T18:19:26Z", - "lastUpdatedDateTime": "2020-10-16T18:19:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5238165c1f1ed72cb87cb2061a87364b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6eb98db5-d357-4309-9791-89f87105ca53", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "e968eef3-7415-4644-90b1-5efc3b46a95d", + "modelId": "6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-10-16T18:19:26Z", - "lastUpdatedDateTime": "2020-10-16T18:19:29Z" + "createdDateTime": "2020-10-30T12:53:18Z", + "lastUpdatedDateTime": "2020-10-30T12:53:20Z" }, "trainResult": { "averageModelAccuracy": 1.0, @@ -180,272 +147,242 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "251215", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bf0acd4cd7b69b4988ca0439f69def7d-196b66b9ce8ed64a-00", + "traceparent": "00-e407bf0d18d666468ca3a78de835db6c-b98785cac9807248-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "386b48e7d15babbf3cb50607b2453ba4", + "x-ms-client-request-id": "5238165c1f1ed72cb87cb2061a87364b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "bc30d763-52c8-4004-a9b2-2c501a79068a", + "apim-request-id": "437ba23b-917a-4e87-9b6c-4ad22381fb3e", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:19:29 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d/analyzeresults/2fd632ab-0827-4561-961e-5b10107f3631", + "Date": "Fri, 30 Oct 2020 12:53:21 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23/analyzeresults/771dccb2-f150-4f02-9f0a-7c6cc655e5ec", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "183" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d/analyzeResults/2fd632ab-0827-4561-961e-5b10107f3631", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23/analyzeResults/771dccb2-f150-4f02-9f0a-7c6cc655e5ec", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "097e6894c0a80939da3e3213d9b03b2b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "98686da7-eb8a-43c5-8f23-900b37287573", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:29Z", - "lastUpdatedDateTime": "2020-10-16T18:19:29Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d/analyzeResults/2fd632ab-0827-4561-961e-5b10107f3631", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2ba62900b9ea8ae9568d166919242472", + "x-ms-client-request-id": "386b48e7d15babbf3cb50607b2453ba4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "42b04d6d-1d0d-4452-ba46-2f6f0e457ab6", + "apim-request-id": "f7ce8cb4-7bfd-43c7-804a-0e17b193f63d", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:30 GMT", + "Date": "Fri, 30 Oct 2020 12:53:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:29Z", - "lastUpdatedDateTime": "2020-10-16T18:19:29Z" + "createdDateTime": "2020-10-30T12:53:21Z", + "lastUpdatedDateTime": "2020-10-30T12:53:21Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d/analyzeResults/2fd632ab-0827-4561-961e-5b10107f3631", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23/analyzeResults/771dccb2-f150-4f02-9f0a-7c6cc655e5ec", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b1710e402d0927a30f615e1c9eacd18b", + "x-ms-client-request-id": "097e6894c0a80939da3e3213d9b03b2b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b2969db3-1467-4e95-b5e1-f7655003208d", + "apim-request-id": "005c78f0-9ac2-4179-b8e0-f6038dafe8fc", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:31 GMT", + "Date": "Fri, 30 Oct 2020 12:53:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:29Z", - "lastUpdatedDateTime": "2020-10-16T18:19:30Z" + "createdDateTime": "2020-10-30T12:53:21Z", + "lastUpdatedDateTime": "2020-10-30T12:53:22Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d/analyzeResults/2fd632ab-0827-4561-961e-5b10107f3631", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23/analyzeResults/771dccb2-f150-4f02-9f0a-7c6cc655e5ec", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8906db790f9fdbb97ff3b21baacff0b5", + "x-ms-client-request-id": "2ba62900b9ea8ae9568d166919242472", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "352e144a-3637-40c3-a61b-44e0a75e34dd", + "apim-request-id": "587713ec-361b-4809-b70d-038f8fd4d646", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:32 GMT", + "Date": "Fri, 30 Oct 2020 12:53:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:29Z", - "lastUpdatedDateTime": "2020-10-16T18:19:30Z" + "createdDateTime": "2020-10-30T12:53:21Z", + "lastUpdatedDateTime": "2020-10-30T12:53:22Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d/analyzeResults/2fd632ab-0827-4561-961e-5b10107f3631", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23/analyzeResults/771dccb2-f150-4f02-9f0a-7c6cc655e5ec", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "cbd2bf19893ed321857e1b885bccecaa", + "x-ms-client-request-id": "b1710e402d0927a30f615e1c9eacd18b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6d9c682-136b-4440-a990-4f51dd87fecc", + "apim-request-id": "a2c51b79-def1-4941-8b03-32f22ce254bc", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:33 GMT", + "Date": "Fri, 30 Oct 2020 12:53:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:29Z", - "lastUpdatedDateTime": "2020-10-16T18:19:34Z" + "createdDateTime": "2020-10-30T12:53:21Z", + "lastUpdatedDateTime": "2020-10-30T12:53:25Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d/analyzeResults/2fd632ab-0827-4561-961e-5b10107f3631", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23/analyzeResults/771dccb2-f150-4f02-9f0a-7c6cc655e5ec", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3eef8abb9b1e31d3549632157a887c3f", + "x-ms-client-request-id": "8906db790f9fdbb97ff3b21baacff0b5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "03629354-1735-4bef-8be3-e0a4f13eccbe", + "apim-request-id": "e1947279-117a-4438-96b1-8b3271f72ec2", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:34 GMT", + "Date": "Fri, 30 Oct 2020 12:53:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:29Z", - "lastUpdatedDateTime": "2020-10-16T18:19:34Z" + "createdDateTime": "2020-10-30T12:53:21Z", + "lastUpdatedDateTime": "2020-10-30T12:53:25Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d/analyzeResults/2fd632ab-0827-4561-961e-5b10107f3631", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23/analyzeResults/771dccb2-f150-4f02-9f0a-7c6cc655e5ec", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "de03a87106d9f04cb9320420f33080b2", + "x-ms-client-request-id": "cbd2bf19893ed321857e1b885bccecaa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d853ce21-172c-4200-83d3-b5e264758993", + "apim-request-id": "7f174a45-fc6f-4159-9b91-1c384c952b19", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:35 GMT", + "Date": "Fri, 30 Oct 2020 12:53:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:29Z", - "lastUpdatedDateTime": "2020-10-16T18:19:34Z" + "createdDateTime": "2020-10-30T12:53:21Z", + "lastUpdatedDateTime": "2020-10-30T12:53:25Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d/analyzeResults/2fd632ab-0827-4561-961e-5b10107f3631", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23/analyzeResults/771dccb2-f150-4f02-9f0a-7c6cc655e5ec", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "205f0807b2e07e97eca176a8570c59fd", + "x-ms-client-request-id": "3eef8abb9b1e31d3549632157a887c3f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ae499ad-81ba-4395-b4d9-6c2b2be14d51", + "apim-request-id": "25450976-a053-4090-97b8-f8402353086b", "Content-Length": "2864", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:36 GMT", + "Date": "Fri, 30 Oct 2020 12:53:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-10-16T18:19:29Z", - "lastUpdatedDateTime": "2020-10-16T18:19:37Z", + "createdDateTime": "2020-10-30T12:53:21Z", + "lastUpdatedDateTime": "2020-10-30T12:53:28Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -692,26 +629,26 @@ ], "documentResults": [ { - "docType": "custom:e968eef3-7415-4644-90b1-5efc3b46a95d", - "modelId": "e968eef3-7415-4644-90b1-5efc3b46a95d", + "docType": "custom:6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23", + "modelId": "6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23", "pageRange": [ 1, 1 ], "fields": { - "MASTERCARD_SELECTION_MARK": { + "AMEX_SELECTION_MARK": { "type": "selectionMark", - "text": "unselected", + "text": "selected", "page": 1, "boundingBox": [ - 3.07, - 5.44, - 3.25, - 5.44, - 3.25, - 5.61, - 3.07, - 5.61 + 2.285, + 5.42, + 2.465, + 5.42, + 2.465, + 5.595, + 2.285, + 5.595 ], "confidence": 1.0 }, @@ -731,19 +668,19 @@ ], "confidence": 1.0 }, - "AMEX_SELECTION_MARK": { + "MASTERCARD_SELECTION_MARK": { "type": "selectionMark", - "text": "selected", + "text": "unselected", "page": 1, "boundingBox": [ - 2.285, - 5.42, - 2.465, - 5.42, - 2.465, - 5.595, - 2.285, - 5.595 + 3.07, + 5.44, + 3.25, + 5.44, + 3.25, + 5.61, + 3.07, + 5.61 ], "confidence": 1.0 } @@ -756,35 +693,35 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e968eef3-7415-4644-90b1-5efc3b46a95d", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6e1b2ccc-c43b-40ef-a1d9-9f6298a7fd23", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c43d0ef1dad15c4f92382472ab839e37-5de095f68a3f5d4b-00", + "traceparent": "00-586a6dac11ad4c4ba30b9271924550e7-28416d5cdfbff843-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b217dc020ec9b4d13dff84eb96b33d23", + "x-ms-client-request-id": "de03a87106d9f04cb9320420f33080b2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "4c1b39b9-e13d-49dd-bdc0-8867ea9d5cc5", + "apim-request-id": "76ffeb52-2166-4744-89b5-e033685cc81e", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:19:36 GMT", + "Date": "Fri, 30 Oct 2020 12:53:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": [] } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_SELECTION_MARK_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", "RandomSeed": "704831820" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(False)Async.json index 9664f91da8939..878dcc6f017eb 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(False)Async.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4b335eeb65b86848aad592ab5577e6e2-d35d2e138e034240-00", + "traceparent": "00-675b00b6977b844a95e1a3f6e5d287ac-a571dece1a9f5e42-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b89f7af0200413a6cf9a628d9bedd030", @@ -22,24 +22,24 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "6230176e-a0b7-40c5-8bf2-0644165a277d", + "apim-request-id": "453f1375-8320-41de-92c6-9b0c552d5c86", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:20:00 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91", + "Date": "Fri, 30 Oct 2020 12:59:33 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "670" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c2be96bc7bab0a4cd675a99f9a7656d4", @@ -48,31 +48,31 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "057a9e42-884d-47ad-af92-697a2f1084a5", + "apim-request-id": "58f75c24-b849-4a27-b6d0-f8a5b60bfb38", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:00 GMT", + "Date": "Fri, 30 Oct 2020 12:59:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "45578351-b6d7-4b77-9d2c-bb5359369c91", + "modelId": "f5977848-ab31-4f75-b128-ade4e4f15d0a", "status": "creating", - "createdDateTime": "2020-10-16T18:20:00Z", - "lastUpdatedDateTime": "2020-10-16T18:20:00Z" + "createdDateTime": "2020-10-30T12:59:33Z", + "lastUpdatedDateTime": "2020-10-30T12:59:33Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5f5d11875f1a4f59301a5fc7bbcffb22", @@ -81,31 +81,31 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0d8d3645-5455-47f9-9deb-72465dc01321", + "apim-request-id": "14eb94ee-f7f5-4fe7-9a08-2365320b4e62", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:01 GMT", + "Date": "Fri, 30 Oct 2020 12:59:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "84" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "modelInfo": { - "modelId": "45578351-b6d7-4b77-9d2c-bb5359369c91", + "modelId": "f5977848-ab31-4f75-b128-ade4e4f15d0a", "status": "creating", - "createdDateTime": "2020-10-16T18:20:00Z", - "lastUpdatedDateTime": "2020-10-16T18:20:00Z" + "createdDateTime": "2020-10-30T12:59:33Z", + "lastUpdatedDateTime": "2020-10-30T12:59:33Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b1b6a39c3fa774752d94e28e76077859", @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "865a8579-e705-47c2-abc8-ba5b9e23a766", + "apim-request-id": "42103b68-f0c4-41e4-a412-f9f8702b947a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:02 GMT", + "Date": "Fri, 30 Oct 2020 12:59:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "modelInfo": { - "modelId": "45578351-b6d7-4b77-9d2c-bb5359369c91", + "modelId": "f5977848-ab31-4f75-b128-ade4e4f15d0a", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-10-16T18:20:00Z", - "lastUpdatedDateTime": "2020-10-16T18:20:03Z" + "createdDateTime": "2020-10-30T12:59:33Z", + "lastUpdatedDateTime": "2020-10-30T12:59:34Z" }, "trainResult": { "averageModelAccuracy": 1.0, @@ -180,16 +180,16 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "251215", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dfe2f6f09646ff4591ce02930587673c-6844cbad4798c84e-00", + "traceparent": "00-b937b1dae8abfc4abceecea6b6d07d02-4ba74760624a6048-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8a058e4371905c163d6f92901c854f06", @@ -198,24 +198,24 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "c2809338-cb59-4f9e-80bd-60e8631f0eb8", + "apim-request-id": "5348305a-ee50-4413-8a6b-049edaba8768", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:20:02 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91/analyzeresults/c2610aef-2f0e-4b5c-a4c2-b8a3ece20158", + "Date": "Fri, 30 Oct 2020 12:59:36 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a/analyzeresults/deff016c-0073-468c-b894-498cd64d420a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-envoy-upstream-service-time": "70" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91/analyzeResults/c2610aef-2f0e-4b5c-a4c2-b8a3ece20158", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a/analyzeResults/deff016c-0073-468c-b894-498cd64d420a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f602867aa4bf482c9be831857dcad828", @@ -224,28 +224,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1fe9224c-ceb6-44d8-a719-ef7f02d9c9ca", + "apim-request-id": "f6a38f3f-2433-4790-b5d1-9c155dc1d9c0", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:02 GMT", + "Date": "Fri, 30 Oct 2020 12:59:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:20:03Z", - "lastUpdatedDateTime": "2020-10-16T18:20:03Z" + "createdDateTime": "2020-10-30T12:59:36Z", + "lastUpdatedDateTime": "2020-10-30T12:59:36Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91/analyzeResults/c2610aef-2f0e-4b5c-a4c2-b8a3ece20158", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a/analyzeResults/deff016c-0073-468c-b894-498cd64d420a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2d8305a271c92b928d5a7438ade558a7", @@ -254,28 +254,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c16e6a25-957e-4576-bfcd-0664b8ccba2c", + "apim-request-id": "a3851609-1f9b-4d6b-881c-540081c5fa0c", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:04 GMT", + "Date": "Fri, 30 Oct 2020 12:59:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:20:03Z", - "lastUpdatedDateTime": "2020-10-16T18:20:04Z" + "createdDateTime": "2020-10-30T12:59:36Z", + "lastUpdatedDateTime": "2020-10-30T12:59:36Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91/analyzeResults/c2610aef-2f0e-4b5c-a4c2-b8a3ece20158", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a/analyzeResults/deff016c-0073-468c-b894-498cd64d420a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f014db4582059f9961bdeea73f90df72", @@ -284,28 +284,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51af95ec-1aa6-46d3-a529-760b30c619a9", + "apim-request-id": "5baa27f6-49a2-4e05-82aa-efbdbcf3ce6c", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:06 GMT", + "Date": "Fri, 30 Oct 2020 12:59:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:20:03Z", - "lastUpdatedDateTime": "2020-10-16T18:20:04Z" + "createdDateTime": "2020-10-30T12:59:36Z", + "lastUpdatedDateTime": "2020-10-30T12:59:36Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91/analyzeResults/c2610aef-2f0e-4b5c-a4c2-b8a3ece20158", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a/analyzeResults/deff016c-0073-468c-b894-498cd64d420a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "16ee69962202083df3d668652ff39ab6", @@ -314,28 +314,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c714940-2c0f-4d5e-b082-09977b4294d7", + "apim-request-id": "8ed408c5-7c00-4b8b-a6a1-0ac6315b75f9", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:07 GMT", + "Date": "Fri, 30 Oct 2020 12:59:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:20:03Z", - "lastUpdatedDateTime": "2020-10-16T18:20:04Z" + "createdDateTime": "2020-10-30T12:59:36Z", + "lastUpdatedDateTime": "2020-10-30T12:59:40Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91/analyzeResults/c2610aef-2f0e-4b5c-a4c2-b8a3ece20158", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a/analyzeResults/deff016c-0073-468c-b894-498cd64d420a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a1408990e7b620236ce3cb0b83ebecfd", @@ -344,28 +344,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "da1ce64f-b796-4ccc-9260-b70eccda3f95", + "apim-request-id": "9fe5fdd5-4345-4769-a8ab-3a7ff9be9c92", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:08 GMT", + "Date": "Fri, 30 Oct 2020 12:59:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:20:03Z", - "lastUpdatedDateTime": "2020-10-16T18:20:07Z" + "createdDateTime": "2020-10-30T12:59:36Z", + "lastUpdatedDateTime": "2020-10-30T12:59:40Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91/analyzeResults/c2610aef-2f0e-4b5c-a4c2-b8a3ece20158", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a/analyzeResults/deff016c-0073-468c-b894-498cd64d420a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "43a1027b42f723a59d0cfc2e1933706e", @@ -374,28 +374,28 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "933bb9aa-4a31-4ba9-a66f-b5d837567b28", + "apim-request-id": "09e276b6-1833-4bdb-8ec7-f11bf60910f3", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:09 GMT", + "Date": "Fri, 30 Oct 2020 12:59:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:20:03Z", - "lastUpdatedDateTime": "2020-10-16T18:20:07Z" + "createdDateTime": "2020-10-30T12:59:36Z", + "lastUpdatedDateTime": "2020-10-30T12:59:40Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91/analyzeResults/c2610aef-2f0e-4b5c-a4c2-b8a3ece20158", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a/analyzeResults/deff016c-0073-468c-b894-498cd64d420a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b51738223e50afbc45cda91e57328508", @@ -404,138 +404,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "16f421ca-cb83-4b6e-866a-861b776631cf", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-16T18:20:03Z", - "lastUpdatedDateTime": "2020-10-16T18:20:07Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91/analyzeResults/c2610aef-2f0e-4b5c-a4c2-b8a3ece20158", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2cea6aea57514ebee41d03a9eaf50639", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "814ec074-32e1-4aaf-8a0e-f927d08cc694", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-16T18:20:03Z", - "lastUpdatedDateTime": "2020-10-16T18:20:10Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91/analyzeResults/c2610aef-2f0e-4b5c-a4c2-b8a3ece20158", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4ae85d7336d43cad46f2fe299886cb6b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "37fe8359-a1f4-4fad-af0a-5197eaff3e7a", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-16T18:20:03Z", - "lastUpdatedDateTime": "2020-10-16T18:20:10Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91/analyzeResults/c2610aef-2f0e-4b5c-a4c2-b8a3ece20158", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ae44f4864349cb1c79c8d1323a12c450", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "17316d59-6607-4f26-b1c3-a935f59bc9cd", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:13 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-16T18:20:03Z", - "lastUpdatedDateTime": "2020-10-16T18:20:10Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91/analyzeResults/c2610aef-2f0e-4b5c-a4c2-b8a3ece20158", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f9ab70c73a4ab333bdade65e5995b55d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8b9b2e64-d4a6-4894-ba0e-2492b04d5667", + "apim-request-id": "cb89d054-5be1-4489-aed7-f27acc42daf1", "Content-Length": "2864", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:20:14 GMT", + "Date": "Fri, 30 Oct 2020 12:59:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-10-16T18:20:03Z", - "lastUpdatedDateTime": "2020-10-16T18:20:14Z", + "createdDateTime": "2020-10-30T12:59:36Z", + "lastUpdatedDateTime": "2020-10-30T12:59:43Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -782,25 +662,25 @@ ], "documentResults": [ { - "docType": "custom:45578351-b6d7-4b77-9d2c-bb5359369c91", - "modelId": "45578351-b6d7-4b77-9d2c-bb5359369c91", + "docType": "custom:f5977848-ab31-4f75-b128-ade4e4f15d0a", + "modelId": "f5977848-ab31-4f75-b128-ade4e4f15d0a", "pageRange": [ 1, 1 ], "fields": { - "AMEX_SELECTION_MARK": { + "VISA_SELECTION_MARK": { "type": "selectionMark", - "text": "selected", + "text": "unselected", "page": 1, "boundingBox": [ - 2.285, - 5.42, - 2.465, - 5.42, - 2.465, + 1.605, + 5.425, + 1.775, + 5.425, + 1.775, 5.595, - 2.285, + 1.605, 5.595 ], "confidence": 1.0 @@ -821,18 +701,18 @@ ], "confidence": 1.0 }, - "VISA_SELECTION_MARK": { + "AMEX_SELECTION_MARK": { "type": "selectionMark", - "text": "unselected", + "text": "selected", "page": 1, "boundingBox": [ - 1.605, - 5.425, - 1.775, - 5.425, - 1.775, + 2.285, + 5.42, + 2.465, + 5.42, + 2.465, 5.595, - 1.605, + 2.285, 5.595 ], "confidence": 1.0 @@ -846,35 +726,35 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/45578351-b6d7-4b77-9d2c-bb5359369c91", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f5977848-ab31-4f75-b128-ade4e4f15d0a", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6beba53a1a5769498cd38f40a8ba68e6-01ce2dfaf5ea1042-00", + "traceparent": "00-ee09fbfdaf9aa342a18f6e437fb762a7-81b3ffb0fad4b04d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f523975157b12ff0401cd10b657a0233", + "x-ms-client-request-id": "2cea6aea57514ebee41d03a9eaf50639", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "262fafc0-3693-44c8-b77b-b763846f9524", + "apim-request-id": "bec95bc4-9cb2-49db-a666-13789e3f0c75", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:20:14 GMT", + "Date": "Fri, 30 Oct 2020 12:59:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": [] } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_SELECTION_MARK_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", "RandomSeed": "1278783287" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(True).json index 795942ecbde02..c772f388d76cd 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(True).json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8070d8c4318c9e45ba716113177cb8e1-9d273c5186791349-00", + "traceparent": "00-20f08d191801dc41899b5c074bdc3d1c-0d5ab2050089ee42-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a5ff30bf5dcde7922209a203b5a7a57e", @@ -22,24 +22,24 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "2666737f-f0f8-4251-b5d7-8f74ae8f6676", + "apim-request-id": "02e2f351-f045-451c-a95a-f6b75c68ea92", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:19:11 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a", + "Date": "Fri, 30 Oct 2020 12:53:07 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d10ff484-5c63-4d65-bf8c-efae6e9d5dce", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "767" + "x-envoy-upstream-service-time": "160" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d10ff484-5c63-4d65-bf8c-efae6e9d5dce?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4a74b1f3bcafccdbb3407799347701e5", @@ -48,31 +48,31 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8212127b-9ecd-41dc-9668-062021424ccd", + "apim-request-id": "59d3ea51-536d-442b-9bf5-b6ce7e0bffb9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:11 GMT", + "Date": "Fri, 30 Oct 2020 12:53:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "63304745-836a-476b-b734-0add2e6b8a8a", + "modelId": "d10ff484-5c63-4d65-bf8c-efae6e9d5dce", "status": "creating", - "createdDateTime": "2020-10-16T18:19:11Z", - "lastUpdatedDateTime": "2020-10-16T18:19:11Z" + "createdDateTime": "2020-10-30T12:53:07Z", + "lastUpdatedDateTime": "2020-10-30T12:53:07Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d10ff484-5c63-4d65-bf8c-efae6e9d5dce?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "47a5f79344c007140a828ea8de42560b", @@ -81,31 +81,31 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e40c2ff5-dc98-4be1-b001-fe7335d777e9", + "apim-request-id": "f7799ad4-a741-4c53-b9c6-82524b3fde99", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:12 GMT", + "Date": "Fri, 30 Oct 2020 12:53:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "63304745-836a-476b-b734-0add2e6b8a8a", + "modelId": "d10ff484-5c63-4d65-bf8c-efae6e9d5dce", "status": "creating", - "createdDateTime": "2020-10-16T18:19:11Z", - "lastUpdatedDateTime": "2020-10-16T18:19:11Z" + "createdDateTime": "2020-10-30T12:53:07Z", + "lastUpdatedDateTime": "2020-10-30T12:53:07Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d10ff484-5c63-4d65-bf8c-efae6e9d5dce?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d4521a017188038d5532f18de6f9b3aa", @@ -114,56 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6018554e-81f8-4fd8-ba5d-f2fa94426e4c", + "apim-request-id": "54739b18-65be-4ffe-b01f-ec92e375f944", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:13 GMT", + "Date": "Fri, 30 Oct 2020 12:53:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "63304745-836a-476b-b734-0add2e6b8a8a", - "status": "creating", - "createdDateTime": "2020-10-16T18:19:11Z", - "lastUpdatedDateTime": "2020-10-16T18:19:11Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bd70bd075e02afbe9c6c402d2e32ee70", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c1ba8a8f-c11f-4c13-bb9c-5fbdd52599a8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "63304745-836a-476b-b734-0add2e6b8a8a", + "modelId": "d10ff484-5c63-4d65-bf8c-efae6e9d5dce", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-10-16T18:19:11Z", - "lastUpdatedDateTime": "2020-10-16T18:19:15Z" + "createdDateTime": "2020-10-30T12:53:07Z", + "lastUpdatedDateTime": "2020-10-30T12:53:09Z" }, "trainResult": { "averageModelAccuracy": 1.0, @@ -213,332 +180,212 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d10ff484-5c63-4d65-bf8c-efae6e9d5dce/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "251215", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-31f70ddf9855a048aa96ba170c36aaed-f618d4fb3c24304c-00", + "traceparent": "00-863e581e10c6414197a782b6cd1d0b6d-b6619c5fc3f9a147-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "19976be92d25225c6aa2f18d52862111", + "x-ms-client-request-id": "bd70bd075e02afbe9c6c402d2e32ee70", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6851476d-d823-426a-87f1-d7ebec699c57", + "apim-request-id": "e3501d4b-2951-451e-a953-956ff450b0d2", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:19:15 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a/analyzeresults/a7fa6265-bd08-4342-9d9f-e1018698fe55", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "152" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a/analyzeResults/a7fa6265-bd08-4342-9d9f-e1018698fe55", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "21a0e4ce99d2a3095ba3371b3060d522", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "20059168-c62c-4b25-8623-522a4b5a6d0c", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:15 GMT", + "Date": "Fri, 30 Oct 2020 12:53:10 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d10ff484-5c63-4d65-bf8c-efae6e9d5dce/analyzeresults/866c2e8e-9a10-4a22-a00b-c35d97e7d542", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "81" }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:16Z", - "lastUpdatedDateTime": "2020-10-16T18:19:16Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a/analyzeResults/a7fa6265-bd08-4342-9d9f-e1018698fe55", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7aa481439a61da84604d525f6d315c16", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ab7f90e9-9bd1-4be7-8956-9bf857f4b8cc", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:16Z", - "lastUpdatedDateTime": "2020-10-16T18:19:16Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a/analyzeResults/a7fa6265-bd08-4342-9d9f-e1018698fe55", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "495e2f4bcd92509e61f4bd82f541f10a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6272b5db-c4d2-4212-ab99-2a49ef919be4", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:16Z", - "lastUpdatedDateTime": "2020-10-16T18:19:16Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a/analyzeResults/a7fa6265-bd08-4342-9d9f-e1018698fe55", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d149cecda6e234af5fc5c18446aa352a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ef3c3073-3d96-4ffe-b101-9146c89314cb", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:16Z", - "lastUpdatedDateTime": "2020-10-16T18:19:16Z" - } + "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a/analyzeResults/a7fa6265-bd08-4342-9d9f-e1018698fe55", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d10ff484-5c63-4d65-bf8c-efae6e9d5dce/analyzeResults/866c2e8e-9a10-4a22-a00b-c35d97e7d542", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "01cf21468b017690e254186cdc02e51e", + "x-ms-client-request-id": "19976be92d25225c6aa2f18d52862111", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56b20dff-30dc-4275-bccb-205fd57b886f", + "apim-request-id": "3afefbf8-1f06-4d98-a5c4-2799fc2b781b", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:20 GMT", + "Date": "Fri, 30 Oct 2020 12:53:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:16Z", - "lastUpdatedDateTime": "2020-10-16T18:19:19Z" + "createdDateTime": "2020-10-30T12:53:10Z", + "lastUpdatedDateTime": "2020-10-30T12:53:10Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a/analyzeResults/a7fa6265-bd08-4342-9d9f-e1018698fe55", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d10ff484-5c63-4d65-bf8c-efae6e9d5dce/analyzeResults/866c2e8e-9a10-4a22-a00b-c35d97e7d542", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9e91485c8be7a4337f29eacc0c1909b7", + "x-ms-client-request-id": "21a0e4ce99d2a3095ba3371b3060d522", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b050e31-96ab-4daa-a2ed-811198e12a50", + "apim-request-id": "bda272bb-f1b5-4023-9226-c3d45fe9a14c", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:21 GMT", + "Date": "Fri, 30 Oct 2020 12:53:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:16Z", - "lastUpdatedDateTime": "2020-10-16T18:19:19Z" + "createdDateTime": "2020-10-30T12:53:10Z", + "lastUpdatedDateTime": "2020-10-30T12:53:11Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a/analyzeResults/a7fa6265-bd08-4342-9d9f-e1018698fe55", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d10ff484-5c63-4d65-bf8c-efae6e9d5dce/analyzeResults/866c2e8e-9a10-4a22-a00b-c35d97e7d542", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d33c92beef7142083ed2ee8e8d43585d", + "x-ms-client-request-id": "7aa481439a61da84604d525f6d315c16", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b25fb1f-0d44-4e48-bada-4e28b7bd0dbf", + "apim-request-id": "7a2da6a4-30f0-4811-b388-5733450fb331", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:22 GMT", + "Date": "Fri, 30 Oct 2020 12:53:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:16Z", - "lastUpdatedDateTime": "2020-10-16T18:19:19Z" + "createdDateTime": "2020-10-30T12:53:10Z", + "lastUpdatedDateTime": "2020-10-30T12:53:11Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a/analyzeResults/a7fa6265-bd08-4342-9d9f-e1018698fe55", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d10ff484-5c63-4d65-bf8c-efae6e9d5dce/analyzeResults/866c2e8e-9a10-4a22-a00b-c35d97e7d542", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "fd28a2e09718ba42ee2a82d7a0c36ac8", + "x-ms-client-request-id": "495e2f4bcd92509e61f4bd82f541f10a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d19055fa-dde7-4df2-aa7c-2f475cb62215", + "apim-request-id": "738db16b-f184-4b99-a167-a72b7b8f050f", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:23 GMT", + "Date": "Fri, 30 Oct 2020 12:53:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "132" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:16Z", - "lastUpdatedDateTime": "2020-10-16T18:19:22Z" + "createdDateTime": "2020-10-30T12:53:10Z", + "lastUpdatedDateTime": "2020-10-30T12:53:14Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a/analyzeResults/a7fa6265-bd08-4342-9d9f-e1018698fe55", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d10ff484-5c63-4d65-bf8c-efae6e9d5dce/analyzeResults/866c2e8e-9a10-4a22-a00b-c35d97e7d542", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4aad614a12c56cad3f4f60149ca5173c", + "x-ms-client-request-id": "d149cecda6e234af5fc5c18446aa352a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d14d83c7-8657-4655-b367-ec3838f27c0c", + "apim-request-id": "24271cb2-9004-4db7-a87a-8157454ca31e", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:24 GMT", + "Date": "Fri, 30 Oct 2020 12:53:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "160" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:16Z", - "lastUpdatedDateTime": "2020-10-16T18:19:22Z" + "createdDateTime": "2020-10-30T12:53:10Z", + "lastUpdatedDateTime": "2020-10-30T12:53:14Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a/analyzeResults/a7fa6265-bd08-4342-9d9f-e1018698fe55", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d10ff484-5c63-4d65-bf8c-efae6e9d5dce/analyzeResults/866c2e8e-9a10-4a22-a00b-c35d97e7d542", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6aec8dd10cf1279f4f81e5466d31a17b", + "x-ms-client-request-id": "01cf21468b017690e254186cdc02e51e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cd7ef986-33d5-471d-bc6f-e12a12e60895", + "apim-request-id": "c66a4bb4-d7f5-442e-8859-3c68db5bf528", "Content-Length": "35389", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:25 GMT", + "Date": "Fri, 30 Oct 2020 12:53:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-10-16T18:19:16Z", - "lastUpdatedDateTime": "2020-10-16T18:19:26Z", + "createdDateTime": "2020-10-30T12:53:10Z", + "lastUpdatedDateTime": "2020-10-30T12:53:18Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -3798,7 +3645,7 @@ 8.5396 ], "text": "Singer", - "confidence": 0.948 + "confidence": 0.947 } ] }, @@ -4959,13 +4806,32 @@ ], "documentResults": [ { - "docType": "custom:63304745-836a-476b-b734-0add2e6b8a8a", - "modelId": "63304745-836a-476b-b734-0add2e6b8a8a", + "docType": "custom:d10ff484-5c63-4d65-bf8c-efae6e9d5dce", + "modelId": "d10ff484-5c63-4d65-bf8c-efae6e9d5dce", "pageRange": [ 1, 1 ], "fields": { + "AMEX_SELECTION_MARK": { + "type": "selectionMark", + "text": "selected", + "page": 1, + "boundingBox": [ + 2.285, + 5.42, + 2.465, + 5.42, + 2.465, + 5.595, + 2.285, + 5.595 + ], + "confidence": 1.0, + "elements": [ + "#/readResults/0/selectionMarks/2" + ] + }, "MASTERCARD_SELECTION_MARK": { "type": "selectionMark", "text": "unselected", @@ -5003,25 +4869,6 @@ "elements": [ "#/readResults/0/selectionMarks/1" ] - }, - "AMEX_SELECTION_MARK": { - "type": "selectionMark", - "text": "selected", - "page": 1, - "boundingBox": [ - 2.285, - 5.42, - 2.465, - 5.42, - 2.465, - 5.595, - 2.285, - 5.595 - ], - "confidence": 1.0, - "elements": [ - "#/readResults/0/selectionMarks/2" - ] } }, "docTypeConfidence": 1.0 @@ -5032,35 +4879,35 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/63304745-836a-476b-b734-0add2e6b8a8a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d10ff484-5c63-4d65-bf8c-efae6e9d5dce", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f14325f58b2b3143943a0afab8ca09be-1b8ae8f903c64845-00", + "traceparent": "00-28e705accfc8274b9da00c2caced17f7-4afd8b012640c449-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2c4426680d95cd97f5bbbdc9372e1d48", + "x-ms-client-request-id": "9e91485c8be7a4337f29eacc0c1909b7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "b90ee4e8-13fa-4afa-8c18-e36b36649579", + "apim-request-id": "addd7c99-f0b6-498c-94c0-fceafb3291cc", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:19:26 GMT", + "Date": "Fri, 30 Oct 2020 12:53:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": [] } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_SELECTION_MARK_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", "RandomSeed": "113080749" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(True)Async.json index 488519d291c78..ad205b97acb26 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsAndSelectionMarks(True)Async.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eea3c244fe4b2240bf3945d5ec98659c-485d699a8743c94b-00", + "traceparent": "00-285f633a3f81824d9c0487316f89ef34-15daf75743901749-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c8ed64c1e42ba69f82de0b9db1d36b4b", @@ -22,24 +22,24 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "84c2496b-56a0-4082-be50-e55f22ea7845", + "apim-request-id": "2948f004-f0a4-45ea-9844-648bfdf19da4", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:19:46 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86", + "Date": "Fri, 30 Oct 2020 12:59:21 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a2d836e2-cd0e-4af5-b572-87643ea4f76f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "738" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a2d836e2-cd0e-4af5-b572-87643ea4f76f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b6e0a500e19c2e304c51407c5ac34e5e", @@ -48,31 +48,31 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d261ff16-270d-4b61-819c-524a94430e71", + "apim-request-id": "68daf405-afa0-4d61-aac0-78120799860e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:46 GMT", + "Date": "Fri, 30 Oct 2020 12:59:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "170967ac-4cb2-4c7c-a763-83882b04cc86", + "modelId": "a2d836e2-cd0e-4af5-b572-87643ea4f76f", "status": "creating", - "createdDateTime": "2020-10-16T18:19:45Z", - "lastUpdatedDateTime": "2020-10-16T18:19:45Z" + "createdDateTime": "2020-10-30T12:59:22Z", + "lastUpdatedDateTime": "2020-10-30T12:59:22Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a2d836e2-cd0e-4af5-b572-87643ea4f76f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a8cace134b4242324943149263608cde", @@ -81,89 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f78876f-f376-4570-976a-4ea74886cf01", + "apim-request-id": "32e6836f-1066-42b7-913c-defea9b9eda7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:47 GMT", + "Date": "Fri, 30 Oct 2020 12:59:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "170967ac-4cb2-4c7c-a763-83882b04cc86", - "status": "creating", - "createdDateTime": "2020-10-16T18:19:45Z", - "lastUpdatedDateTime": "2020-10-16T18:19:45Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b41f38fe0a28e0e133bf7bd9a4234cbe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ebafcc31-e211-4934-9402-52d70368c125", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "170967ac-4cb2-4c7c-a763-83882b04cc86", - "status": "creating", - "createdDateTime": "2020-10-16T18:19:45Z", - "lastUpdatedDateTime": "2020-10-16T18:19:45Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e28aac90c208b408729d6c59cc9dcbeb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f1be015d-7bd5-4d05-aa98-57874512efcd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:49 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "170967ac-4cb2-4c7c-a763-83882b04cc86", + "modelId": "a2d836e2-cd0e-4af5-b572-87643ea4f76f", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-10-16T18:19:45Z", - "lastUpdatedDateTime": "2020-10-16T18:19:49Z" + "createdDateTime": "2020-10-30T12:59:22Z", + "lastUpdatedDateTime": "2020-10-30T12:59:23Z" }, "trainResult": { "averageModelAccuracy": 1.0, @@ -213,362 +147,242 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a2d836e2-cd0e-4af5-b572-87643ea4f76f/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "251215", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c1e38e4b40e38640899d9ec8eb65d1b1-bfad86fcc909964b-00", + "traceparent": "00-b93fcd29f5a220449a4f497293ff3f5f-b309ab176bbcff40-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "227e61c499a40836edea7483d0589e26", + "x-ms-client-request-id": "b41f38fe0a28e0e133bf7bd9a4234cbe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4c9e255f-524f-4200-9362-c1cab59f85d8", + "apim-request-id": "f6d7f176-0b57-4937-be0c-d02b0673df1d", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:19:49 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86/analyzeresults/61441bdb-ceb0-4b2f-947f-8511c12d65b7", + "Date": "Fri, 30 Oct 2020 12:59:25 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a2d836e2-cd0e-4af5-b572-87643ea4f76f/analyzeresults/7c550008-4dd6-44ac-8e55-d0cef532a7e3", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86/analyzeResults/61441bdb-ceb0-4b2f-947f-8511c12d65b7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a2d836e2-cd0e-4af5-b572-87643ea4f76f/analyzeResults/7c550008-4dd6-44ac-8e55-d0cef532a7e3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b60256f6aad63cd52f6a418a9d871396", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d5b134c2-d229-443e-aa29-2e5555b73727", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:49 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:49Z", - "lastUpdatedDateTime": "2020-10-16T18:19:49Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86/analyzeResults/61441bdb-ceb0-4b2f-947f-8511c12d65b7", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "42158ff329a5f6197581f51e4d84e41a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3e80b4c2-c651-45f1-ba70-89bcab603c16", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:50 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:49Z", - "lastUpdatedDateTime": "2020-10-16T18:19:50Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86/analyzeResults/61441bdb-ceb0-4b2f-947f-8511c12d65b7", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "766246ff149b1a158b42f23958ab6b65", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "02b64de6-9cfb-4b7f-8123-74477257b82d", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:49Z", - "lastUpdatedDateTime": "2020-10-16T18:19:50Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86/analyzeResults/61441bdb-ceb0-4b2f-947f-8511c12d65b7", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4090ded75b43cc813c0b4154b4b7eeab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "083b3e7a-2236-456a-aba5-3533a28ffe49", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:49Z", - "lastUpdatedDateTime": "2020-10-16T18:19:50Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86/analyzeResults/61441bdb-ceb0-4b2f-947f-8511c12d65b7", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "578b27869c25defb79fab66337e09ec9", + "x-ms-client-request-id": "e28aac90c208b408729d6c59cc9dcbeb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b9ec095-6673-4d7f-9108-594adfea8e5a", + "apim-request-id": "ae67bc25-330f-499e-be10-b9d031977acf", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:53 GMT", + "Date": "Fri, 30 Oct 2020 12:59:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:49Z", - "lastUpdatedDateTime": "2020-10-16T18:19:53Z" + "createdDateTime": "2020-10-30T12:59:25Z", + "lastUpdatedDateTime": "2020-10-30T12:59:25Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86/analyzeResults/61441bdb-ceb0-4b2f-947f-8511c12d65b7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a2d836e2-cd0e-4af5-b572-87643ea4f76f/analyzeResults/7c550008-4dd6-44ac-8e55-d0cef532a7e3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6f479016a4f4a3d7c4953a8fd3c166d4", + "x-ms-client-request-id": "227e61c499a40836edea7483d0589e26", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b11fb56-fedc-4795-977d-9948e5bee2b4", + "apim-request-id": "5103acff-917b-4654-bf5a-2942efa7044f", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:54 GMT", + "Date": "Fri, 30 Oct 2020 12:59:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "155" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:49Z", - "lastUpdatedDateTime": "2020-10-16T18:19:53Z" + "createdDateTime": "2020-10-30T12:59:25Z", + "lastUpdatedDateTime": "2020-10-30T12:59:25Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86/analyzeResults/61441bdb-ceb0-4b2f-947f-8511c12d65b7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a2d836e2-cd0e-4af5-b572-87643ea4f76f/analyzeResults/7c550008-4dd6-44ac-8e55-d0cef532a7e3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "30b3465313203a3fe3b1c648a41e955c", + "x-ms-client-request-id": "b60256f6aad63cd52f6a418a9d871396", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c158d48-4e5f-4ea4-b64f-0dde1c181696", + "apim-request-id": "52f7f32e-ca9e-47ea-9f2b-3b26397c44cb", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:55 GMT", + "Date": "Fri, 30 Oct 2020 12:59:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:49Z", - "lastUpdatedDateTime": "2020-10-16T18:19:53Z" + "createdDateTime": "2020-10-30T12:59:25Z", + "lastUpdatedDateTime": "2020-10-30T12:59:25Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86/analyzeResults/61441bdb-ceb0-4b2f-947f-8511c12d65b7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a2d836e2-cd0e-4af5-b572-87643ea4f76f/analyzeResults/7c550008-4dd6-44ac-8e55-d0cef532a7e3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "233e776d7f6fe1b750e8938f616c0bb8", + "x-ms-client-request-id": "42158ff329a5f6197581f51e4d84e41a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "622e92b4-2455-450d-a54f-0f0c98ce5873", + "apim-request-id": "fb447d53-1501-459a-b9aa-c3070a6e7fc0", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:56 GMT", + "Date": "Fri, 30 Oct 2020 12:59:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:49Z", - "lastUpdatedDateTime": "2020-10-16T18:19:56Z" + "createdDateTime": "2020-10-30T12:59:25Z", + "lastUpdatedDateTime": "2020-10-30T12:59:28Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86/analyzeResults/61441bdb-ceb0-4b2f-947f-8511c12d65b7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a2d836e2-cd0e-4af5-b572-87643ea4f76f/analyzeResults/7c550008-4dd6-44ac-8e55-d0cef532a7e3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f00fe2946d2c02a9500c8c43de8efea5", + "x-ms-client-request-id": "766246ff149b1a158b42f23958ab6b65", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd35bd5e-22d0-429c-9151-85ed05374e39", + "apim-request-id": "e7b36150-62f8-4e82-ac35-4b339526e337", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:57 GMT", + "Date": "Fri, 30 Oct 2020 12:59:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:49Z", - "lastUpdatedDateTime": "2020-10-16T18:19:56Z" + "createdDateTime": "2020-10-30T12:59:25Z", + "lastUpdatedDateTime": "2020-10-30T12:59:28Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86/analyzeResults/61441bdb-ceb0-4b2f-947f-8511c12d65b7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a2d836e2-cd0e-4af5-b572-87643ea4f76f/analyzeResults/7c550008-4dd6-44ac-8e55-d0cef532a7e3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5c21de004282d4648fd1e03880b0d876", + "x-ms-client-request-id": "4090ded75b43cc813c0b4154b4b7eeab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6fd2adab-bbda-4bdc-9d3b-3690da8c20ef", + "apim-request-id": "588aed91-ca67-4770-a3e3-f4b8975466a7", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:58 GMT", + "Date": "Fri, 30 Oct 2020 12:59:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-10-16T18:19:49Z", - "lastUpdatedDateTime": "2020-10-16T18:19:56Z" + "createdDateTime": "2020-10-30T12:59:25Z", + "lastUpdatedDateTime": "2020-10-30T12:59:28Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86/analyzeResults/61441bdb-ceb0-4b2f-947f-8511c12d65b7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a2d836e2-cd0e-4af5-b572-87643ea4f76f/analyzeResults/7c550008-4dd6-44ac-8e55-d0cef532a7e3", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c2b30da5a40fff2fcd3bd363f27403c1", + "x-ms-client-request-id": "578b27869c25defb79fab66337e09ec9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e01c5a3f-0494-48f8-9e12-cc4290fe82db", + "apim-request-id": "a4a7f896-f63b-4472-8429-99f276aa6216", "Content-Length": "35389", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Oct 2020 18:19:59 GMT", + "Date": "Fri, 30 Oct 2020 12:59:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-10-16T18:19:49Z", - "lastUpdatedDateTime": "2020-10-16T18:19:59Z", + "createdDateTime": "2020-10-30T12:59:25Z", + "lastUpdatedDateTime": "2020-10-30T12:59:31Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -4989,30 +4803,30 @@ ], "documentResults": [ { - "docType": "custom:170967ac-4cb2-4c7c-a763-83882b04cc86", - "modelId": "170967ac-4cb2-4c7c-a763-83882b04cc86", + "docType": "custom:a2d836e2-cd0e-4af5-b572-87643ea4f76f", + "modelId": "a2d836e2-cd0e-4af5-b572-87643ea4f76f", "pageRange": [ 1, 1 ], "fields": { - "VISA_SELECTION_MARK": { + "AMEX_SELECTION_MARK": { "type": "selectionMark", - "text": "unselected", + "text": "selected", "page": 1, "boundingBox": [ - 1.605, - 5.425, - 1.775, - 5.425, - 1.775, + 2.285, + 5.42, + 2.465, + 5.42, + 2.465, 5.595, - 1.605, + 2.285, 5.595 ], "confidence": 1.0, "elements": [ - "#/readResults/0/selectionMarks/1" + "#/readResults/0/selectionMarks/2" ] }, "MASTERCARD_SELECTION_MARK": { @@ -5034,23 +4848,23 @@ "#/readResults/0/selectionMarks/0" ] }, - "AMEX_SELECTION_MARK": { + "VISA_SELECTION_MARK": { "type": "selectionMark", - "text": "selected", + "text": "unselected", "page": 1, "boundingBox": [ - 2.285, - 5.42, - 2.465, - 5.42, - 2.465, + 1.605, + 5.425, + 1.775, + 5.425, + 1.775, 5.595, - 2.285, + 1.605, 5.595 ], "confidence": 1.0, "elements": [ - "#/readResults/0/selectionMarks/2" + "#/readResults/0/selectionMarks/1" ] } }, @@ -5062,25 +4876,25 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/170967ac-4cb2-4c7c-a763-83882b04cc86", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a2d836e2-cd0e-4af5-b572-87643ea4f76f", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-186a5ff6d829d54bb6a5ccb8ac449202-81583bd0b2936144-00", + "traceparent": "00-069b7f7fbd8d6547b1a146132d6eaa0e-511010951e329148-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201016.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "838fede9af4a52367d3a615a8c7082a0", + "x-ms-client-request-id": "6f479016a4f4a3d7c4953a8fd3c166d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "7246385b-26bd-4233-99aa-520e79361754", + "apim-request-id": "0d00b7d0-dc46-485a-a245-f922bf7a5cc2", "Content-Length": "0", - "Date": "Fri, 16 Oct 2020 18:19:59 GMT", + "Date": "Fri, 30 Oct 2020 12:59:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "32" @@ -5090,7 +4904,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_SELECTION_MARK_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", "RandomSeed": "1190978338" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseBlankPage.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseBlankPage.json index b3a5aa946d76c..e15845bb75670 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseBlankPage.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseBlankPage.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4f28bfcd7973a14bb70827a28bd45c59-b4ffcfbab6bc3b44-00", + "traceparent": "00-92a4d5ba77d6834a9fb386c1382b5469-1ac5d87df09c7f4c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cd613dd032dfb3c02a02c836a2d59792", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "bc413410-d237-4350-b420-9c499365d9e4", + "apim-request-id": "8a8fa17d-5a5b-411d-8af4-9d5a0ef01eed", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:28:32 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e", + "Date": "Fri, 30 Oct 2020 12:50:43 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "253" + "x-envoy-upstream-service-time": "529" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f1de004151442f5c9dbcc1e5552acbe9", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc8cef65-99da-4d52-8761-247f43803ab9", + "apim-request-id": "8c1f625e-b361-4640-81a1-36c2afaffefa", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:32 GMT", + "Date": "Fri, 30 Oct 2020 12:50:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "199" }, "ResponseBody": { "modelInfo": { - "modelId": "34fe23d4-7756-4e94-b878-0f0f3128931e", + "modelId": "fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e", "status": "creating", - "createdDateTime": "2020-09-09T22:28:32Z", - "lastUpdatedDateTime": "2020-09-09T22:28:32Z" + "createdDateTime": "2020-10-30T12:50:43Z", + "lastUpdatedDateTime": "2020-10-30T12:50:43Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7aecc22c98e24e0e420b500c78c56c9f", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bc55eee0-8db5-48e7-8061-7ebaf366ca34", + "apim-request-id": "07b34407-1738-4590-80d0-aa4ca4cb738b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:33 GMT", + "Date": "Fri, 30 Oct 2020 12:50:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "224" }, "ResponseBody": { "modelInfo": { - "modelId": "34fe23d4-7756-4e94-b878-0f0f3128931e", + "modelId": "fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e", "status": "creating", - "createdDateTime": "2020-09-09T22:28:32Z", - "lastUpdatedDateTime": "2020-09-09T22:28:32Z" + "createdDateTime": "2020-10-30T12:50:43Z", + "lastUpdatedDateTime": "2020-10-30T12:50:43Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d72eadef59c37fefe031302370da5dff", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "64f1974d-5322-4d06-95bd-e8e2cecf2bbb", + "apim-request-id": "4684d7ce-a969-40ec-a5dd-0d2a2d472830", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:34 GMT", + "Date": "Fri, 30 Oct 2020 12:50:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "165" }, "ResponseBody": { "modelInfo": { - "modelId": "34fe23d4-7756-4e94-b878-0f0f3128931e", + "modelId": "fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:28:32Z", - "lastUpdatedDateTime": "2020-09-09T22:28:34Z" + "createdDateTime": "2020-10-30T12:50:43Z", + "lastUpdatedDateTime": "2020-10-30T12:50:45Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,17 +228,17 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "25662", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d85ff93ef09e224faf78cd1dbada2fe7-50a1815cfea99f4c-00", + "traceparent": "00-c71624f471e6e6478d10e4bcddbc3916-42ad017e7cd4c84b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "df09df371de9a8aff18faf38014fb7d7", "x-ms-return-client-request-id": "true" @@ -246,25 +246,25 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e062dd41-a5c7-4b0a-8acb-3d6cca3b6a36", + "apim-request-id": "1976c4d8-362b-46c5-b366-c33343b40d2d", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:28:34 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e/analyzeresults/d668fc2e-1e52-4c3b-91e6-2448a5038636", + "Date": "Fri, 30 Oct 2020 12:50:47 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e/analyzeresults/81a7cea1-9725-4568-b350-92c396e5bd51", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-envoy-upstream-service-time": "211" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e/analyzeResults/d668fc2e-1e52-4c3b-91e6-2448a5038636", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e/analyzeResults/81a7cea1-9725-4568-b350-92c396e5bd51", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a8f6214ff3fbd325d26c99b067ebdd67", "x-ms-return-client-request-id": "true" @@ -272,29 +272,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4193c8f8-384a-4baf-beb7-71c420b1657f", + "apim-request-id": "c39265b7-373b-4650-ba07-590409718dd0", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:34 GMT", + "Date": "Fri, 30 Oct 2020 12:50:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "159" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:28:35Z", - "lastUpdatedDateTime": "2020-09-09T22:28:35Z" + "createdDateTime": "2020-10-30T12:50:47Z", + "lastUpdatedDateTime": "2020-10-30T12:50:48Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e/analyzeResults/d668fc2e-1e52-4c3b-91e6-2448a5038636", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e/analyzeResults/81a7cea1-9725-4568-b350-92c396e5bd51", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "99d550ae8dbbd1b6fd86e533aab67e90", "x-ms-return-client-request-id": "true" @@ -302,29 +302,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f7a6f6a-5469-4e8e-aff5-c108ab39bd27", + "apim-request-id": "6cd4019e-8dd6-4ebb-a5e1-4370a48ce364", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:35 GMT", + "Date": "Fri, 30 Oct 2020 12:50:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "228" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:28:35Z", - "lastUpdatedDateTime": "2020-09-09T22:28:35Z" + "createdDateTime": "2020-10-30T12:50:47Z", + "lastUpdatedDateTime": "2020-10-30T12:50:48Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e/analyzeResults/d668fc2e-1e52-4c3b-91e6-2448a5038636", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e/analyzeResults/81a7cea1-9725-4568-b350-92c396e5bd51", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4fd3597ab4e34304b9360c7d83fe4006", "x-ms-return-client-request-id": "true" @@ -332,29 +332,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3f0d671-2cb8-4b80-9709-ffb786f5f8bc", + "apim-request-id": "c0bce2ac-e87f-49e2-9671-b294f808b4c3", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:36 GMT", + "Date": "Fri, 30 Oct 2020 12:50:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "151" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:28:35Z", - "lastUpdatedDateTime": "2020-09-09T22:28:35Z" + "createdDateTime": "2020-10-30T12:50:47Z", + "lastUpdatedDateTime": "2020-10-30T12:50:48Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e/analyzeResults/d668fc2e-1e52-4c3b-91e6-2448a5038636", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e/analyzeResults/81a7cea1-9725-4568-b350-92c396e5bd51", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b08a48b21d7ac21b6a25aa750ef1291c", "x-ms-return-client-request-id": "true" @@ -362,29 +362,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "892ae01b-2435-423c-8c24-ff888483d13e", + "apim-request-id": "ffe20d42-2a7e-45a8-8669-dadf94fb1def", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:38 GMT", + "Date": "Fri, 30 Oct 2020 12:50:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "119" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:28:35Z", - "lastUpdatedDateTime": "2020-09-09T22:28:38Z" + "createdDateTime": "2020-10-30T12:50:47Z", + "lastUpdatedDateTime": "2020-10-30T12:50:51Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e/analyzeResults/d668fc2e-1e52-4c3b-91e6-2448a5038636", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e/analyzeResults/81a7cea1-9725-4568-b350-92c396e5bd51", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0e3609ee8e17f9834c91df8580394eff", "x-ms-return-client-request-id": "true" @@ -392,29 +392,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8a8ea769-5b3f-40f5-be6b-53a37e6ee244", + "apim-request-id": "aff294e8-ca4f-41ea-85e0-f6dc5eba60ec", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:39 GMT", + "Date": "Fri, 30 Oct 2020 12:50:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "120" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:28:35Z", - "lastUpdatedDateTime": "2020-09-09T22:28:38Z" + "createdDateTime": "2020-10-30T12:50:47Z", + "lastUpdatedDateTime": "2020-10-30T12:50:51Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e/analyzeResults/d668fc2e-1e52-4c3b-91e6-2448a5038636", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e/analyzeResults/81a7cea1-9725-4568-b350-92c396e5bd51", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6181df45cd2c5c153e11e4be0a8e35c8", "x-ms-return-client-request-id": "true" @@ -422,48 +422,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f655508-9068-4912-99b7-28ecdf28ead8", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:28:35Z", - "lastUpdatedDateTime": "2020-09-09T22:28:38Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e/analyzeResults/d668fc2e-1e52-4c3b-91e6-2448a5038636", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7a8ef00d32c824eec49164e93e954131", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "54923dc0-581c-455c-81ed-f6d0666e6c21", + "apim-request-id": "ee1041d6-853d-4981-8945-477fce64512a", "Content-Length": "732", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:41 GMT", + "Date": "Fri, 30 Oct 2020 12:50:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "185" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:28:35Z", - "lastUpdatedDateTime": "2020-09-09T22:28:41Z", + "createdDateTime": "2020-10-30T12:50:47Z", + "lastUpdatedDateTime": "2020-10-30T12:50:54Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -484,8 +454,8 @@ ], "documentResults": [ { - "docType": "custom:34fe23d4-7756-4e94-b878-0f0f3128931e", - "modelId": "34fe23d4-7756-4e94-b878-0f0f3128931e", + "docType": "custom:fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e", + "modelId": "fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e", "pageRange": [ 1, 1 @@ -515,28 +485,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34fe23d4-7756-4e94-b878-0f0f3128931e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fe00a8fe-a50f-4c90-926c-a1bcc2a8d57e", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a3828ecf2b01e543a7be3bb7dd5c9fb0-ad6c27bfcf57a347-00", + "traceparent": "00-eaa15ee2db193f4fa5fb4d4c851b01e5-6c7dcac6f875af45-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2e2fabd6c76f21f0f3d9cf05a9c4eebd", + "x-ms-client-request-id": "7a8ef00d32c824eec49164e93e954131", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "d74e9273-7035-43ef-96c0-c47fab73cedf", + "apim-request-id": "cc1f026a-8acc-4b51-a26c-9335e2ef8be3", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:28:41 GMT", + "Date": "Fri, 30 Oct 2020 12:50:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-envoy-upstream-service-time": "146" }, "ResponseBody": [] } @@ -544,7 +514,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "651268351" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseBlankPageAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseBlankPageAsync.json index 68276406b4bb9..923c60e7d8bc1 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseBlankPageAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseBlankPageAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b13b21c70cd5534ebe1ee54b0aa7e9d0-dc9583add306424e-00", + "traceparent": "00-32e41f27034f7045b3de2c2e19b352ab-03796f90d0031e4d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "daa2e13da3cd17ec207df3b52476893a", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "a1b0bbc1-2ef4-43af-89ee-614b71343212", + "apim-request-id": "53088fa7-d9b9-49cd-aca3-7197331736dc", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:33:23 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22", + "Date": "Fri, 30 Oct 2020 12:56:56 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "246" + "x-envoy-upstream-service-time": "70" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5520161ee2286ca806b6fd4751e45bef", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1dd4b11-57fc-4832-b2ee-64b26d3e28f1", + "apim-request-id": "fcca1ef4-a223-4cbc-bf31-2848d720dff5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:23 GMT", + "Date": "Fri, 30 Oct 2020 12:56:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22", + "modelId": "1870e55a-1216-45b9-a5a1-f597d51d5e6a", "status": "creating", - "createdDateTime": "2020-09-09T22:33:24Z", - "lastUpdatedDateTime": "2020-09-09T22:33:24Z" + "createdDateTime": "2020-10-30T12:56:56Z", + "lastUpdatedDateTime": "2020-10-30T12:56:56Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8a0ff588e6e21462392872b3b4d8ac3f", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "135bc230-bc30-4284-a8f1-b63aea087738", + "apim-request-id": "5afc9b02-4f97-4e53-8ca5-7839f462fb7a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:24 GMT", + "Date": "Fri, 30 Oct 2020 12:56:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22", + "modelId": "1870e55a-1216-45b9-a5a1-f597d51d5e6a", "status": "creating", - "createdDateTime": "2020-09-09T22:33:24Z", - "lastUpdatedDateTime": "2020-09-09T22:33:24Z" + "createdDateTime": "2020-10-30T12:56:56Z", + "lastUpdatedDateTime": "2020-10-30T12:56:56Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3d9ba14b91f45beb3936d317a6a4c53b", "x-ms-return-client-request-id": "true" @@ -114,9 +114,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a95fd00e-1807-4a19-b0af-2c382d5040a6", + "apim-request-id": "cc4b7a6d-5942-48eb-b795-2d212b33b39c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:25 GMT", + "Date": "Fri, 30 Oct 2020 12:56:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -124,211 +124,13 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22", - "status": "creating", - "createdDateTime": "2020-09-09T22:33:24Z", - "lastUpdatedDateTime": "2020-09-09T22:33:24Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2e2c0421fe673857b30c1bff6ff5b72d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bed5bece-bd10-4d10-a973-889f394abea6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:26 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22", - "status": "creating", - "createdDateTime": "2020-09-09T22:33:24Z", - "lastUpdatedDateTime": "2020-09-09T22:33:24Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b0fcbd0a1e48f7fa0ab450ac124b6d94", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7c36a1a6-8c2a-422b-8ac7-2767aa955737", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22", - "status": "creating", - "createdDateTime": "2020-09-09T22:33:24Z", - "lastUpdatedDateTime": "2020-09-09T22:33:24Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b09136627dac4cd84a6389e875ebeb44", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a2ba8aad-b3fc-405b-a914-aaa0009ea916", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22", - "status": "creating", - "createdDateTime": "2020-09-09T22:33:24Z", - "lastUpdatedDateTime": "2020-09-09T22:33:24Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e80da67e15a803f30a3423b2aeaa2668", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "39a7027b-089a-4707-940e-4446b435eb4a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:31 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "97" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22", - "status": "creating", - "createdDateTime": "2020-09-09T22:33:24Z", - "lastUpdatedDateTime": "2020-09-09T22:33:24Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "389c869f07638c81e5b065e59412821f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3c7e454e-9d58-44ac-9244-3530e5ba2141", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22", - "status": "creating", - "createdDateTime": "2020-09-09T22:33:24Z", - "lastUpdatedDateTime": "2020-09-09T22:33:24Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "6b2d0cc8843e4dec438ea5775a259e9f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2cb359c5-6c8a-4f0e-9f91-9e757d66198b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:33 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22", + "modelId": "1870e55a-1216-45b9-a5a1-f597d51d5e6a", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:33:24Z", - "lastUpdatedDateTime": "2020-09-09T22:33:32Z" + "createdDateTime": "2020-10-30T12:56:56Z", + "lastUpdatedDateTime": "2020-10-30T12:56:58Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -426,212 +228,242 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "25662", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-203434fb75c2b94e8a6d304c142c5a30-73ce32f4e02d0342-00", + "traceparent": "00-44decf7f16411d418c8aabd3c3ea1ae2-4acd3036a48f224e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ee49203cb34e77e0258003f8af0e6ef8", + "x-ms-client-request-id": "2e2c0421fe673857b30c1bff6ff5b72d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "29c1f199-baea-495e-8c97-3efac8cbefa5", + "apim-request-id": "972252d7-6e07-4892-9779-e382d8cd1bab", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:33:33 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22/analyzeresults/bb886207-58e6-4003-a8f6-5c5f4a95222e", + "Date": "Fri, 30 Oct 2020 12:56:58 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a/analyzeresults/d5e2dd1f-411f-459e-a545-a45855bc0c95", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22/analyzeResults/bb886207-58e6-4003-a8f6-5c5f4a95222e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a/analyzeResults/d5e2dd1f-411f-459e-a545-a45855bc0c95", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a1ea04b2ba7d1a2a9a4ff4d5610932c0", + "x-ms-client-request-id": "b0fcbd0a1e48f7fa0ab450ac124b6d94", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "59d0fbb9-a811-4dcc-a1ed-ce33d6ea31a4", + "apim-request-id": "518848f7-5e38-4c51-ab4b-badad7dc539b", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:33 GMT", + "Date": "Fri, 30 Oct 2020 12:56:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:33:33Z", - "lastUpdatedDateTime": "2020-09-09T22:33:33Z" + "createdDateTime": "2020-10-30T12:56:59Z", + "lastUpdatedDateTime": "2020-10-30T12:56:59Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22/analyzeResults/bb886207-58e6-4003-a8f6-5c5f4a95222e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a/analyzeResults/d5e2dd1f-411f-459e-a545-a45855bc0c95", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "74a8c61293c815d12bb546bd81f49d35", + "x-ms-client-request-id": "b09136627dac4cd84a6389e875ebeb44", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "950de75c-f4ad-49d8-8b89-3a82fedf4047", + "apim-request-id": "45ce5c7a-2266-46d9-8362-2d638f7b4f56", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:34 GMT", + "Date": "Fri, 30 Oct 2020 12:57:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:33:33Z", - "lastUpdatedDateTime": "2020-09-09T22:33:33Z" + "createdDateTime": "2020-10-30T12:56:59Z", + "lastUpdatedDateTime": "2020-10-30T12:56:59Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22/analyzeResults/bb886207-58e6-4003-a8f6-5c5f4a95222e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a/analyzeResults/d5e2dd1f-411f-459e-a545-a45855bc0c95", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "55c4ad1ffc3a8221f52e54febe0b161b", + "x-ms-client-request-id": "e80da67e15a803f30a3423b2aeaa2668", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "106d9622-d566-47a3-8eaa-e35f52f9c1a2", + "apim-request-id": "07642db3-5696-4862-ade2-e2df665680ac", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:35 GMT", + "Date": "Fri, 30 Oct 2020 12:57:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:33:33Z", - "lastUpdatedDateTime": "2020-09-09T22:33:33Z" + "createdDateTime": "2020-10-30T12:56:59Z", + "lastUpdatedDateTime": "2020-10-30T12:56:59Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22/analyzeResults/bb886207-58e6-4003-a8f6-5c5f4a95222e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a/analyzeResults/d5e2dd1f-411f-459e-a545-a45855bc0c95", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e9e5424ef9651f2f33d575c7736d98a6", + "x-ms-client-request-id": "389c869f07638c81e5b065e59412821f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8bc748d-e109-4dd8-adfa-5eee89e77191", + "apim-request-id": "cbdbbc3b-a53c-4550-a108-5a5e75a66ade", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:36 GMT", + "Date": "Fri, 30 Oct 2020 12:57:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T12:56:59Z", + "lastUpdatedDateTime": "2020-10-30T12:57:03Z" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a/analyzeResults/d5e2dd1f-411f-459e-a545-a45855bc0c95", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6b2d0cc8843e4dec438ea5775a259e9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "db986eca-7bff-430a-a8a0-95cc22113411", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 12:57:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:33:33Z", - "lastUpdatedDateTime": "2020-09-09T22:33:33Z" + "createdDateTime": "2020-10-30T12:56:59Z", + "lastUpdatedDateTime": "2020-10-30T12:57:03Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22/analyzeResults/bb886207-58e6-4003-a8f6-5c5f4a95222e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a/analyzeResults/d5e2dd1f-411f-459e-a545-a45855bc0c95", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b3b5bfb2dc441585a4257e993fd25620", + "x-ms-client-request-id": "ee49203cb34e77e0258003f8af0e6ef8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3686302c-3dce-4a76-b6a0-57db35450d7b", + "apim-request-id": "fc7a9472-6194-468c-ba0b-297e692b365f", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:37 GMT", + "Date": "Fri, 30 Oct 2020 12:57:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:33:33Z", - "lastUpdatedDateTime": "2020-09-09T22:33:36Z" + "createdDateTime": "2020-10-30T12:56:59Z", + "lastUpdatedDateTime": "2020-10-30T12:57:03Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22/analyzeResults/bb886207-58e6-4003-a8f6-5c5f4a95222e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a/analyzeResults/d5e2dd1f-411f-459e-a545-a45855bc0c95", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3f6e2a9fb40e25cf7ea52265875a0e87", + "x-ms-client-request-id": "a1ea04b2ba7d1a2a9a4ff4d5610932c0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bedefd46-1c2a-4b56-b825-87632c863d9f", + "apim-request-id": "2dba7009-e68f-450f-a8a6-b3e5e3f1ed7d", "Content-Length": "732", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:43 GMT", + "Date": "Fri, 30 Oct 2020 12:57:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5053" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:33:33Z", - "lastUpdatedDateTime": "2020-09-09T22:33:39Z", + "createdDateTime": "2020-10-30T12:56:59Z", + "lastUpdatedDateTime": "2020-10-30T12:57:06Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -652,8 +484,8 @@ ], "documentResults": [ { - "docType": "custom:2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22", - "modelId": "2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22", + "docType": "custom:1870e55a-1216-45b9-a5a1-f597d51d5e6a", + "modelId": "1870e55a-1216-45b9-a5a1-f597d51d5e6a", "pageRange": [ 1, 1 @@ -683,28 +515,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a2ff14d-a6ba-4a8f-b1c7-a9390a998d22", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/1870e55a-1216-45b9-a5a1-f597d51d5e6a", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-86a28a3be22e684f856c2da84d7e841d-0701b5a8a5e9024d-00", + "traceparent": "00-158b542f9963bf478190dc05ea9119c1-8a48ebc2f9772d4d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "fe4bad96625671d7bcd044407b95df60", + "x-ms-client-request-id": "74a8c61293c815d12bb546bd81f49d35", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "230100bd-bbfb-49ee-a801-d33095221547", + "apim-request-id": "16db8428-71b3-47d6-912e-f24c3ded3c20", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:33:43 GMT", + "Date": "Fri, 30 Oct 2020 12:57:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": [] } @@ -712,7 +544,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1410966940" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseDifferentTypeOfForm.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseDifferentTypeOfForm.json index 9fe4edf1820f0..80370c08e0792 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseDifferentTypeOfForm.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseDifferentTypeOfForm.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c5c4efc76b4e204c9ea1e244dfdd865d-81b7b789bb2fd543-00", + "traceparent": "00-2e82e151860dc64982d2352a6bee32da-5355c25ee1bec04e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a1298fa55ac31405377f260ca9705b95", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "22f6ad37-e315-49b2-949d-72a900c2cad0", + "apim-request-id": "3576d5e7-9274-4474-a0a8-9d541eca4518", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:28:42 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa", + "Date": "Fri, 30 Oct 2020 12:50:55 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/51e94b9f-27e0-4781-9b67-16411373648c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "311" + "x-envoy-upstream-service-time": "183" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/51e94b9f-27e0-4781-9b67-16411373648c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70e8c89cb2c2ffe4bacabe2a7d84f6e3", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "054a7651-152d-4aa1-ae4e-fa154b485d7b", + "apim-request-id": "7b4c6764-f949-4988-89a1-bc8fa1e56e19", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:42 GMT", + "Date": "Fri, 30 Oct 2020 12:50:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "92" }, "ResponseBody": { "modelInfo": { - "modelId": "17342abd-c1a1-471c-97b4-509743fec8fa", + "modelId": "51e94b9f-27e0-4781-9b67-16411373648c", "status": "creating", - "createdDateTime": "2020-09-09T22:28:42Z", - "lastUpdatedDateTime": "2020-09-09T22:28:42Z" + "createdDateTime": "2020-10-30T12:50:55Z", + "lastUpdatedDateTime": "2020-10-30T12:50:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/51e94b9f-27e0-4781-9b67-16411373648c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0d28b2ea1e320cdd30fa66ecfebe8766", "x-ms-return-client-request-id": "true" @@ -81,89 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ff7733e-5cef-43ea-890a-257adb2ae35c", + "apim-request-id": "a858c763-6fb9-4e46-b345-934ed5c48a74", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:43 GMT", + "Date": "Fri, 30 Oct 2020 12:50:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "137" }, "ResponseBody": { "modelInfo": { - "modelId": "17342abd-c1a1-471c-97b4-509743fec8fa", - "status": "creating", - "createdDateTime": "2020-09-09T22:28:42Z", - "lastUpdatedDateTime": "2020-09-09T22:28:42Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "0413c0083ac8f219ab2ae6f99cda97b2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d1794945-cb54-4348-8143-7e506f46f3b7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:44 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "71" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "17342abd-c1a1-471c-97b4-509743fec8fa", - "status": "creating", - "createdDateTime": "2020-09-09T22:28:42Z", - "lastUpdatedDateTime": "2020-09-09T22:28:42Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f62143884e477d62ebdb3fc84cf800fc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "54babc50-83da-4803-bf8c-a0c3b79b9a0a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:45 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "112" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "17342abd-c1a1-471c-97b4-509743fec8fa", + "modelId": "51e94b9f-27e0-4781-9b67-16411373648c", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:28:42Z", - "lastUpdatedDateTime": "2020-09-09T22:28:44Z" + "createdDateTime": "2020-10-30T12:50:55Z", + "lastUpdatedDateTime": "2020-10-30T12:50:57Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -261,242 +195,212 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/51e94b9f-27e0-4781-9b67-16411373648c/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "147362", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eb0c8a52b6f8b24ab61256853bb52ff7-aeee6bfa87df6241-00", + "traceparent": "00-5e98c30341708148ae9d8f24691b9e83-716c085db4a86b41-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "bd225742f271af1a9936620838e47056", + "x-ms-client-request-id": "0413c0083ac8f219ab2ae6f99cda97b2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "9f5bd0f3-0164-4f51-bbc5-b20d571c1656", + "apim-request-id": "0a3fb44e-5fc3-4031-933a-26346b0a27ea", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:28:46 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa/analyzeresults/8c64d062-d7ab-4b3b-b77a-e4a459f1ff3e", + "Date": "Fri, 30 Oct 2020 12:50:57 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/51e94b9f-27e0-4781-9b67-16411373648c/analyzeresults/2a75478c-5af4-492d-a72d-e5e3e40381d2", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "231" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa/analyzeResults/8c64d062-d7ab-4b3b-b77a-e4a459f1ff3e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ba63b462919cba1f5d9519ecfb50a5b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c74259ba-2a62-40d3-894a-e3534476df90", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:46 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:28:46Z", - "lastUpdatedDateTime": "2020-09-09T22:28:46Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa/analyzeResults/8c64d062-d7ab-4b3b-b77a-e4a459f1ff3e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/51e94b9f-27e0-4781-9b67-16411373648c/analyzeResults/2a75478c-5af4-492d-a72d-e5e3e40381d2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "45b7e929dab7964128725d10ec5a4507", + "x-ms-client-request-id": "f62143884e477d62ebdb3fc84cf800fc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a215e69-a709-4e4e-90a3-045c7a7393c9", + "apim-request-id": "868a9bf0-b9d9-4b27-9215-c9294c1f4b36", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:47 GMT", + "Date": "Fri, 30 Oct 2020 12:50:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:28:46Z", - "lastUpdatedDateTime": "2020-09-09T22:28:46Z" + "createdDateTime": "2020-10-30T12:50:58Z", + "lastUpdatedDateTime": "2020-10-30T12:50:58Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa/analyzeResults/8c64d062-d7ab-4b3b-b77a-e4a459f1ff3e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/51e94b9f-27e0-4781-9b67-16411373648c/analyzeResults/2a75478c-5af4-492d-a72d-e5e3e40381d2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9865e96b4694b05f386860dcd92eb449", + "x-ms-client-request-id": "bd225742f271af1a9936620838e47056", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb8290f5-ac85-4267-a5f3-5d1ff2b33da6", + "apim-request-id": "4ee8a82e-fbb4-41d9-a8bc-6d64c14ce4b9", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:48 GMT", + "Date": "Fri, 30 Oct 2020 12:50:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "132" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:28:46Z", - "lastUpdatedDateTime": "2020-09-09T22:28:46Z" + "createdDateTime": "2020-10-30T12:50:58Z", + "lastUpdatedDateTime": "2020-10-30T12:50:58Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa/analyzeResults/8c64d062-d7ab-4b3b-b77a-e4a459f1ff3e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/51e94b9f-27e0-4781-9b67-16411373648c/analyzeResults/2a75478c-5af4-492d-a72d-e5e3e40381d2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4edeae912b2d889e73cd922a340ecd02", + "x-ms-client-request-id": "ba63b462919cba1f5d9519ecfb50a5b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8ad3641-99a1-4b1b-9b3f-13a7ee8b28e3", + "apim-request-id": "68bfe50b-da65-420c-8cda-69dea6fffe8e", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:49 GMT", + "Date": "Fri, 30 Oct 2020 12:51:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "191" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:28:46Z", - "lastUpdatedDateTime": "2020-09-09T22:28:46Z" + "createdDateTime": "2020-10-30T12:50:58Z", + "lastUpdatedDateTime": "2020-10-30T12:50:58Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa/analyzeResults/8c64d062-d7ab-4b3b-b77a-e4a459f1ff3e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/51e94b9f-27e0-4781-9b67-16411373648c/analyzeResults/2a75478c-5af4-492d-a72d-e5e3e40381d2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1181124f0deae31e8a060c4f7a64bdfa", + "x-ms-client-request-id": "45b7e929dab7964128725d10ec5a4507", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d0fdcf02-c55c-482e-9d1d-39a7f6674f71", + "apim-request-id": "4fd1ce0c-a373-4075-a311-edbc2d4f4c07", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:50 GMT", + "Date": "Fri, 30 Oct 2020 12:51:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "144" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:28:46Z", - "lastUpdatedDateTime": "2020-09-09T22:28:49Z" + "createdDateTime": "2020-10-30T12:50:58Z", + "lastUpdatedDateTime": "2020-10-30T12:51:01Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa/analyzeResults/8c64d062-d7ab-4b3b-b77a-e4a459f1ff3e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/51e94b9f-27e0-4781-9b67-16411373648c/analyzeResults/2a75478c-5af4-492d-a72d-e5e3e40381d2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3d7f13bdf67b3fda4add25c7b4357c29", + "x-ms-client-request-id": "9865e96b4694b05f386860dcd92eb449", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c0938c3-2627-43d5-94b9-ec566e04f5c5", + "apim-request-id": "ccbc4e6a-5c9a-4b88-88bb-04206f43e015", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:51 GMT", + "Date": "Fri, 30 Oct 2020 12:51:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "71" + "x-envoy-upstream-service-time": "149" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:28:46Z", - "lastUpdatedDateTime": "2020-09-09T22:28:49Z" + "createdDateTime": "2020-10-30T12:50:58Z", + "lastUpdatedDateTime": "2020-10-30T12:51:01Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa/analyzeResults/8c64d062-d7ab-4b3b-b77a-e4a459f1ff3e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/51e94b9f-27e0-4781-9b67-16411373648c/analyzeResults/2a75478c-5af4-492d-a72d-e5e3e40381d2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c68c5d9aa2ad835e90fbc4261e4e0e0e", + "x-ms-client-request-id": "4edeae912b2d889e73cd922a340ecd02", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe3769b0-30a6-4c58-88cd-a7366d4863f7", + "apim-request-id": "0fceeeeb-8eea-46b5-90e5-c0a166e65836", "Content-Length": "3213", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:57 GMT", + "Date": "Fri, 30 Oct 2020 12:51:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5053" + "x-envoy-upstream-service-time": "99" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:28:46Z", - "lastUpdatedDateTime": "2020-09-09T22:28:52Z", + "createdDateTime": "2020-10-30T12:50:58Z", + "lastUpdatedDateTime": "2020-10-30T12:51:04Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -718,29 +622,29 @@ ], "documentResults": [ { - "docType": "custom:17342abd-c1a1-471c-97b4-509743fec8fa", - "modelId": "17342abd-c1a1-471c-97b4-509743fec8fa", + "docType": "custom:51e94b9f-27e0-4781-9b67-16411373648c", + "modelId": "51e94b9f-27e0-4781-9b67-16411373648c", "pageRange": [ 1, 1 ], "fields": { - "CompanyAddress": { + "Merchant": { "type": "string", - "valueString": "1 Redmond way Suite 6000 Redmond, WA", - "text": "1 Redmond way Suite 6000 Redmond, WA", + "valueString": "Invoice For:", + "text": "Invoice For:", "page": 1, "boundingBox": [ - 0.8, - 1.705, - 2.145, - 1.705, - 2.145, - 2.015, - 0.8, - 2.015 + 4.405, + 1.515, + 5.1, + 1.515, + 5.1, + 1.615, + 4.405, + 1.615 ], - "confidence": 0.258 + "confidence": 0.116 }, "VendorName": { "type": "string", @@ -759,39 +663,39 @@ ], "confidence": 0.145 }, - "Merchant": { + "CompanyPhoneNumber": { "type": "string", - "valueString": "Invoice For:", - "text": "Invoice For:", + "valueString": "$56,651.49", + "text": "$56,651.49", "page": 1, "boundingBox": [ - 4.405, - 1.515, - 5.1, - 1.515, - 5.1, - 1.615, - 4.405, - 1.615 + 5.385, + 3.405, + 6.07, + 3.405, + 6.07, + 3.53, + 5.385, + 3.53 ], - "confidence": 0.116 + "confidence": 0.249 }, - "Website": { + "CompanyAddress": { "type": "string", - "valueString": "99243", - "text": "99243", + "valueString": "1 Redmond way Suite 6000 Redmond, WA", + "text": "1 Redmond way Suite 6000 Redmond, WA", "page": 1, "boundingBox": [ 0.8, - 2.09, - 1.175, - 2.09, - 1.175, - 2.19, + 1.705, + 2.145, + 1.705, + 2.145, + 2.015, 0.8, - 2.19 + 2.015 ], - "confidence": 0.114 + "confidence": 0.258 }, "CompanyName": { "type": "string", @@ -810,22 +714,22 @@ ], "confidence": 0.245 }, - "CompanyPhoneNumber": { + "Website": { "type": "string", - "valueString": "$56,651.49", - "text": "$56,651.49", + "valueString": "99243", + "text": "99243", "page": 1, "boundingBox": [ - 5.385, - 3.405, - 6.07, - 3.405, - 6.07, - 3.53, - 5.385, - 3.53 + 0.8, + 2.09, + 1.175, + 2.09, + 1.175, + 2.19, + 0.8, + 2.19 ], - "confidence": 0.249 + "confidence": 0.114 }, "DatedAs": null, "Email": null, @@ -845,28 +749,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17342abd-c1a1-471c-97b4-509743fec8fa", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/51e94b9f-27e0-4781-9b67-16411373648c", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-73dd800291f8834093ef93130a2eff04-f08f8c22df96784b-00", + "traceparent": "00-e77ea783d0fc294cbeb93b05c4e7d0a2-00ecf4bd34f18f48-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "206c970f908f58863841c70de8562f54", + "x-ms-client-request-id": "1181124f0deae31e8a060c4f7a64bdfa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "1443ffcc-1683-4dcf-85ea-2cf27ef820e1", + "apim-request-id": "eb466e56-161b-4ea9-b600-82d33c4a099d", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:28:57 GMT", + "Date": "Fri, 30 Oct 2020 12:51:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-envoy-upstream-service-time": "147" }, "ResponseBody": [] } @@ -874,7 +778,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1059968756" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseDifferentTypeOfFormAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseDifferentTypeOfFormAsync.json index e96e5eb8c085f..0d5b077cc856b 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseDifferentTypeOfFormAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseDifferentTypeOfFormAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-803bb1431b06df428b8542daab66b3d6-418e367f73bdb341-00", + "traceparent": "00-d6d01989f9712a48b560c16b793de8b1-81d1bab6e169b647-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3667d0c2ade31c17847ec925bcc53541", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "f0515b8a-bd06-4164-b661-21243910bf35", + "apim-request-id": "99e8ed8b-9c57-430a-b25d-589e68b988dd", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:33:43 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/583f3bbc-e9e8-4a1a-8ae7-db104bf7497e", + "Date": "Fri, 30 Oct 2020 12:57:07 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "256" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/583f3bbc-e9e8-4a1a-8ae7-db104bf7497e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4d2ba277ea7061f614f32e8879092315", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7afe2ae4-4ed9-48e0-b92f-b25a3d37b8e0", + "apim-request-id": "6729e182-5edf-4ae3-9ba9-846f2f4782a1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:44 GMT", + "Date": "Fri, 30 Oct 2020 12:57:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "182" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "583f3bbc-e9e8-4a1a-8ae7-db104bf7497e", + "modelId": "42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9", "status": "creating", - "createdDateTime": "2020-09-09T22:33:44Z", - "lastUpdatedDateTime": "2020-09-09T22:33:44Z" + "createdDateTime": "2020-10-30T12:57:07Z", + "lastUpdatedDateTime": "2020-10-30T12:57:07Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/583f3bbc-e9e8-4a1a-8ae7-db104bf7497e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "46b105208982632bd981026a53781120", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4d48908-fecc-44dd-8abe-4754eeded111", + "apim-request-id": "eb86036a-0fb8-4120-ad0d-4d5aa9d792ac", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:45 GMT", + "Date": "Fri, 30 Oct 2020 12:57:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "583f3bbc-e9e8-4a1a-8ae7-db104bf7497e", + "modelId": "42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9", "status": "creating", - "createdDateTime": "2020-09-09T22:33:44Z", - "lastUpdatedDateTime": "2020-09-09T22:33:44Z" + "createdDateTime": "2020-10-30T12:57:07Z", + "lastUpdatedDateTime": "2020-10-30T12:57:07Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/583f3bbc-e9e8-4a1a-8ae7-db104bf7497e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9acccedb8a2cd874d90521ef7f8ea27a", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "24af0e47-2a29-4b23-96d5-61339720b522", + "apim-request-id": "cf964d4a-de9c-4671-9e1c-e8b11a11f65a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:46 GMT", + "Date": "Fri, 30 Oct 2020 12:57:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "583f3bbc-e9e8-4a1a-8ae7-db104bf7497e", + "modelId": "42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:33:44Z", - "lastUpdatedDateTime": "2020-09-09T22:33:46Z" + "createdDateTime": "2020-10-30T12:57:07Z", + "lastUpdatedDateTime": "2020-10-30T12:57:09Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,17 +228,17 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/583f3bbc-e9e8-4a1a-8ae7-db104bf7497e/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "147362", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-140181974f4da34d9e7e462dfe19cf34-fd65c0286763254e-00", + "traceparent": "00-86c7351539b2ff449b9a3549279970ef-a5b305b50778bd44-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b605b45bef14edbf76c773eee78c0e9c", "x-ms-return-client-request-id": "true" @@ -246,25 +246,25 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "55458fc8-ca27-4376-b312-2042b4d28859", + "apim-request-id": "6bfe5f8f-f45e-49c0-9dad-357f0b4c5e91", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:33:46 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/583f3bbc-e9e8-4a1a-8ae7-db104bf7497e/analyzeresults/4598564b-bfae-4939-81c1-f9675615f947", + "Date": "Fri, 30 Oct 2020 12:57:11 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9/analyzeresults/43ae417c-a840-4ab8-9f4d-57f1992ff7bc", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/583f3bbc-e9e8-4a1a-8ae7-db104bf7497e/analyzeResults/4598564b-bfae-4939-81c1-f9675615f947", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9/analyzeResults/43ae417c-a840-4ab8-9f4d-57f1992ff7bc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aaac0de1883c95e890d86d7c673be44b", "x-ms-return-client-request-id": "true" @@ -272,29 +272,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f3d2b229-ae00-4eb7-9a33-f40a21b9ba6d", + "apim-request-id": "e198958f-01b3-4a3a-9306-1bf7fa600933", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:46 GMT", + "Date": "Fri, 30 Oct 2020 12:57:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:33:47Z", - "lastUpdatedDateTime": "2020-09-09T22:33:47Z" + "createdDateTime": "2020-10-30T12:57:11Z", + "lastUpdatedDateTime": "2020-10-30T12:57:11Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/583f3bbc-e9e8-4a1a-8ae7-db104bf7497e/analyzeResults/4598564b-bfae-4939-81c1-f9675615f947", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9/analyzeResults/43ae417c-a840-4ab8-9f4d-57f1992ff7bc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9e0f87de5a72ec0c0fde24641686f04d", "x-ms-return-client-request-id": "true" @@ -302,29 +302,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "52e9aab8-5541-4ae0-9b7f-177335496ba2", + "apim-request-id": "397e6c70-5b42-44b5-8eba-7b0c4ed93176", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:47 GMT", + "Date": "Fri, 30 Oct 2020 12:57:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:33:47Z", - "lastUpdatedDateTime": "2020-09-09T22:33:47Z" + "createdDateTime": "2020-10-30T12:57:11Z", + "lastUpdatedDateTime": "2020-10-30T12:57:11Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/583f3bbc-e9e8-4a1a-8ae7-db104bf7497e/analyzeResults/4598564b-bfae-4939-81c1-f9675615f947", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9/analyzeResults/43ae417c-a840-4ab8-9f4d-57f1992ff7bc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "710e85f7f8e1d23ecc6f263b8142863a", "x-ms-return-client-request-id": "true" @@ -332,29 +332,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ceae8d04-375c-4ad5-9a37-6fd7fcb47ff0", + "apim-request-id": "50117cc3-f1c8-484f-8a61-c4e33368f737", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:53 GMT", + "Date": "Fri, 30 Oct 2020 12:57:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5049" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:33:47Z", - "lastUpdatedDateTime": "2020-09-09T22:33:47Z" + "createdDateTime": "2020-10-30T12:57:11Z", + "lastUpdatedDateTime": "2020-10-30T12:57:11Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/583f3bbc-e9e8-4a1a-8ae7-db104bf7497e/analyzeResults/4598564b-bfae-4939-81c1-f9675615f947", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9/analyzeResults/43ae417c-a840-4ab8-9f4d-57f1992ff7bc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "600f28e36f7c872901c09b5d64837e0a", "x-ms-return-client-request-id": "true" @@ -362,29 +362,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "234291b8-b351-47db-bcd0-1a9192e8648d", + "apim-request-id": "a7c93367-9610-465e-ad2e-adc7d159dfea", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:54 GMT", + "Date": "Fri, 30 Oct 2020 12:57:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:33:47Z", - "lastUpdatedDateTime": "2020-09-09T22:33:47Z" + "createdDateTime": "2020-10-30T12:57:11Z", + "lastUpdatedDateTime": "2020-10-30T12:57:15Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/583f3bbc-e9e8-4a1a-8ae7-db104bf7497e/analyzeResults/4598564b-bfae-4939-81c1-f9675615f947", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9/analyzeResults/43ae417c-a840-4ab8-9f4d-57f1992ff7bc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e2851fe8722de669493cd20234d06acc", "x-ms-return-client-request-id": "true" @@ -392,18 +392,48 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7bfbbae-04c6-41a5-b96a-fc63a27ed418", + "apim-request-id": "68dc4c94-bc44-4cdc-a974-8aab604b6f28", + "Content-Length": "109", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 12:57:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T12:57:11Z", + "lastUpdatedDateTime": "2020-10-30T12:57:15Z" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9/analyzeResults/43ae417c-a840-4ab8-9f4d-57f1992ff7bc", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ed81e958907688d05b8770215de06d48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fcec8397-7018-4bf9-a884-2409d2beae60", "Content-Length": "3213", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:56 GMT", + "Date": "Fri, 30 Oct 2020 12:57:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:33:47Z", - "lastUpdatedDateTime": "2020-09-09T22:33:55Z", + "createdDateTime": "2020-10-30T12:57:11Z", + "lastUpdatedDateTime": "2020-10-30T12:57:18Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -625,8 +655,8 @@ ], "documentResults": [ { - "docType": "custom:583f3bbc-e9e8-4a1a-8ae7-db104bf7497e", - "modelId": "583f3bbc-e9e8-4a1a-8ae7-db104bf7497e", + "docType": "custom:42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9", + "modelId": "42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9", "pageRange": [ 1, 1 @@ -666,22 +696,22 @@ ], "confidence": 0.114 }, - "Merchant": { + "VendorName": { "type": "string", - "valueString": "Invoice For:", - "text": "Invoice For:", + "valueString": "Charges", + "text": "Charges", "page": 1, "boundingBox": [ - 4.405, - 1.515, - 5.1, - 1.515, - 5.1, - 1.615, - 4.405, - 1.615 + 4.745, + 2.87, + 5.29, + 2.87, + 5.29, + 3.005, + 4.745, + 3.005 ], - "confidence": 0.116 + "confidence": 0.145 }, "CompanyName": { "type": "string", @@ -700,22 +730,22 @@ ], "confidence": 0.245 }, - "VendorName": { + "Merchant": { "type": "string", - "valueString": "Charges", - "text": "Charges", + "valueString": "Invoice For:", + "text": "Invoice For:", "page": 1, "boundingBox": [ - 4.745, - 2.87, - 5.29, - 2.87, - 5.29, - 3.005, - 4.745, - 3.005 + 4.405, + 1.515, + 5.1, + 1.515, + 5.1, + 1.615, + 4.405, + 1.615 ], - "confidence": 0.145 + "confidence": 0.116 }, "CompanyPhoneNumber": { "type": "string", @@ -752,28 +782,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/583f3bbc-e9e8-4a1a-8ae7-db104bf7497e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/42ff3400-ac64-4f73-8a8e-fc5eec6fcbc9", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f66dd202da7ed245ac8790e5f7634b8d-489c0f34f04ede4d-00", + "traceparent": "00-15e3af3f1c18b740bdcb839a8b77d02a-7f8de95e68505549-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ed81e958907688d05b8770215de06d48", + "x-ms-client-request-id": "62531cf1a3bd700dbf29163f9d275330", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "0e5c2d3d-e7de-4660-916b-62ac1122827a", + "apim-request-id": "98b68519-c74b-4e45-b495-29ec6c0abf97", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:33:56 GMT", + "Date": "Fri, 30 Oct 2020 12:57:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": [] } @@ -781,7 +811,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1908054441" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(False).json index 1b24b4b9d3958..7b37ee7e9b162 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-96bdf82ca55ebf468004a4107d0408ad-b005a7ba1afa8446-00", + "traceparent": "00-12dbbf114d2a0443b891bdb100c093dd-46ef21ec7867c84d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "20a9efd71143ca39ea975f4dd213c03b", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "7b5d5a4f-512c-48ba-8d1c-ece0d9cff020", + "apim-request-id": "4c6e0f17-48c8-4358-ae09-85ec1d711019", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:31:05 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078", + "Date": "Fri, 30 Oct 2020 12:53:40 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/78587410-9600-48fd-b4a3-d05533035b44", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "244" + "x-envoy-upstream-service-time": "220" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/78587410-9600-48fd-b4a3-d05533035b44?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9605b91498bb34d00b9d79f6287b9bb1", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e1d90f9f-5619-4449-9747-f0ef5c99ebb6", + "apim-request-id": "04453f89-f0ab-4a23-a082-9bfea4b129b4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:05 GMT", + "Date": "Fri, 30 Oct 2020 12:53:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "4279fa29-3a06-4741-8e25-4b9809380078", + "modelId": "78587410-9600-48fd-b4a3-d05533035b44", "status": "creating", - "createdDateTime": "2020-09-09T22:31:06Z", - "lastUpdatedDateTime": "2020-09-09T22:31:06Z" + "createdDateTime": "2020-10-30T12:53:40Z", + "lastUpdatedDateTime": "2020-10-30T12:53:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/78587410-9600-48fd-b4a3-d05533035b44?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d60dc4f1b373d6ffeea573da8a4d9bf5", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aa0bb4c0-e87d-4b9a-a85e-3aeeb8c8032d", + "apim-request-id": "025766c0-48c5-40cf-909d-e12b55ffaa0b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:06 GMT", + "Date": "Fri, 30 Oct 2020 12:53:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "4279fa29-3a06-4741-8e25-4b9809380078", + "modelId": "78587410-9600-48fd-b4a3-d05533035b44", "status": "creating", - "createdDateTime": "2020-09-09T22:31:06Z", - "lastUpdatedDateTime": "2020-09-09T22:31:06Z" + "createdDateTime": "2020-10-30T12:53:40Z", + "lastUpdatedDateTime": "2020-10-30T12:53:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/78587410-9600-48fd-b4a3-d05533035b44?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6b2a74144bde3ffa1f7414a59743a16f", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "992c606d-643b-4976-9efc-1d6ac66f1cca", + "apim-request-id": "d9cbaa60-7320-4ea0-8f50-673cc31b746f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:07 GMT", + "Date": "Fri, 30 Oct 2020 12:53:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "4279fa29-3a06-4741-8e25-4b9809380078", + "modelId": "78587410-9600-48fd-b4a3-d05533035b44", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:31:06Z", - "lastUpdatedDateTime": "2020-09-09T22:31:07Z" + "createdDateTime": "2020-10-30T12:53:40Z", + "lastUpdatedDateTime": "2020-10-30T12:53:42Z" }, "trainResult": { "averageModelAccuracy": 0.971, @@ -196,17 +196,17 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/78587410-9600-48fd-b4a3-d05533035b44/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-be430c36b1cec347a24fdaa2bea9103d-1c696e229053914c-00", + "traceparent": "00-6cbfbdeca7c2784fb52b8500e08f59aa-d72e2c4c724a5346-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0e5badfce90660c7ba2ea81625f5aabd", "x-ms-return-client-request-id": "true" @@ -216,25 +216,25 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ef98f3b0-755d-45c9-90a9-0d5f80d25405", + "apim-request-id": "9108278a-5caf-4fe8-a76c-a3c342c1ed68", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:31:07 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078/analyzeresults/db062ddc-505c-43a0-9b7e-449e47306422", + "Date": "Fri, 30 Oct 2020 12:53:42 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/78587410-9600-48fd-b4a3-d05533035b44/analyzeresults/09ccb374-bc01-4ba5-99fa-0a83a5350ef0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078/analyzeResults/db062ddc-505c-43a0-9b7e-449e47306422", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/78587410-9600-48fd-b4a3-d05533035b44/analyzeResults/09ccb374-bc01-4ba5-99fa-0a83a5350ef0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b4e284023051a6d2c9ceb7fe9f593fab", "x-ms-return-client-request-id": "true" @@ -242,29 +242,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "64bdc5c3-27c0-4745-b53d-2a620d58840a", + "apim-request-id": "dcb32722-5278-4071-902b-8d9144aab7c4", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:07 GMT", + "Date": "Fri, 30 Oct 2020 12:53:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:08Z", - "lastUpdatedDateTime": "2020-09-09T22:31:08Z" + "createdDateTime": "2020-10-30T12:53:43Z", + "lastUpdatedDateTime": "2020-10-30T12:53:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078/analyzeResults/db062ddc-505c-43a0-9b7e-449e47306422", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/78587410-9600-48fd-b4a3-d05533035b44/analyzeResults/09ccb374-bc01-4ba5-99fa-0a83a5350ef0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dcde03038cf12aefacc9b1b0a2e41a29", "x-ms-return-client-request-id": "true" @@ -272,29 +272,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61afbf69-fc29-4594-9a48-f5788a21d170", + "apim-request-id": "943dbcb1-fc57-47a0-921c-40cc20d84f10", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:08 GMT", + "Date": "Fri, 30 Oct 2020 12:53:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:08Z", - "lastUpdatedDateTime": "2020-09-09T22:31:08Z" + "createdDateTime": "2020-10-30T12:53:43Z", + "lastUpdatedDateTime": "2020-10-30T12:53:44Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078/analyzeResults/db062ddc-505c-43a0-9b7e-449e47306422", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/78587410-9600-48fd-b4a3-d05533035b44/analyzeResults/09ccb374-bc01-4ba5-99fa-0a83a5350ef0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "13a357c9ed60cc1ddbb5453832c8c160", "x-ms-return-client-request-id": "true" @@ -302,29 +302,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "235a09f5-1c77-400e-91c7-9a5ae27e365b", + "apim-request-id": "4d7c658d-3564-4778-ae4a-0d810bd91b94", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:09 GMT", + "Date": "Fri, 30 Oct 2020 12:53:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:08Z", - "lastUpdatedDateTime": "2020-09-09T22:31:08Z" + "createdDateTime": "2020-10-30T12:53:43Z", + "lastUpdatedDateTime": "2020-10-30T12:53:44Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078/analyzeResults/db062ddc-505c-43a0-9b7e-449e47306422", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/78587410-9600-48fd-b4a3-d05533035b44/analyzeResults/09ccb374-bc01-4ba5-99fa-0a83a5350ef0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2113fdeece1775cc94b807877e2203e4", "x-ms-return-client-request-id": "true" @@ -332,29 +332,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "860e5e3a-05e1-4569-9c86-c3bda605860b", + "apim-request-id": "db97ab1f-e635-45ef-9c92-1f0efcfccbc4", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:10 GMT", + "Date": "Fri, 30 Oct 2020 12:53:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:08Z", - "lastUpdatedDateTime": "2020-09-09T22:31:08Z" + "createdDateTime": "2020-10-30T12:53:43Z", + "lastUpdatedDateTime": "2020-10-30T12:53:47Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078/analyzeResults/db062ddc-505c-43a0-9b7e-449e47306422", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/78587410-9600-48fd-b4a3-d05533035b44/analyzeResults/09ccb374-bc01-4ba5-99fa-0a83a5350ef0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "47358db32cb6154ae612013c47b7f7e4", "x-ms-return-client-request-id": "true" @@ -362,29 +362,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f52829b2-0576-4f30-a780-0cc40c7b8914", + "apim-request-id": "b463a236-f5ee-49b8-b006-811c49b02777", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:11 GMT", + "Date": "Fri, 30 Oct 2020 12:53:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:08Z", - "lastUpdatedDateTime": "2020-09-09T22:31:11Z" + "createdDateTime": "2020-10-30T12:53:43Z", + "lastUpdatedDateTime": "2020-10-30T12:53:47Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078/analyzeResults/db062ddc-505c-43a0-9b7e-449e47306422", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/78587410-9600-48fd-b4a3-d05533035b44/analyzeResults/09ccb374-bc01-4ba5-99fa-0a83a5350ef0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a5c15008f9d0fb128a2d7ea8e6954db8", "x-ms-return-client-request-id": "true" @@ -392,29 +392,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe35cc5b-a76f-4ec8-8224-e4cc3cf49f0e", + "apim-request-id": "a7637fb1-1b82-476e-b39d-558ff74761e4", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:12 GMT", + "Date": "Fri, 30 Oct 2020 12:53:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:08Z", - "lastUpdatedDateTime": "2020-09-09T22:31:11Z" + "createdDateTime": "2020-10-30T12:53:43Z", + "lastUpdatedDateTime": "2020-10-30T12:53:47Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078/analyzeResults/db062ddc-505c-43a0-9b7e-449e47306422", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/78587410-9600-48fd-b4a3-d05533035b44/analyzeResults/09ccb374-bc01-4ba5-99fa-0a83a5350ef0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a48460b17993c2a9b3fd3a04cd8f2edc", "x-ms-return-client-request-id": "true" @@ -422,76 +422,46 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "665b21b7-1045-4549-bf8c-4df444bdbac7", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:08Z", - "lastUpdatedDateTime": "2020-09-09T22:31:11Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078/analyzeResults/db062ddc-505c-43a0-9b7e-449e47306422", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2d7f23c05e60ba147b39bd88ada12f50", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "df002023-f683-438d-960a-bbd2905e3d42", + "apim-request-id": "6e245041-89fd-42d7-97e6-cdbe0771e0f1", "Content-Length": "34822", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:15 GMT", + "Date": "Fri, 30 Oct 2020 12:53:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "32" }, - "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-09-09T22:31:08Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-09-09T22:31:15Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0,10.2725,1.0372,10.2725,1.0372,10.9925,0,10.9925],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0,10.6019,1.5095,10.6019,1.5095,10.9983,0,10.9983],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[2.9381,6.9634,3.0388,6.9634,3.0388,7.0736,2.9381,7.0736],\u0022confidence\u0022:0.553,\u0022state\u0022:\u0022unselected\u0022}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0.0024,9.869,1.0826,9.869,1.0826,10.9955,0.0024,10.9955],\u0022confidence\u0022:0.833,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[7.6562,1.0157,8.5,1.0157,8.5,2.8293,7.6562,2.8293],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0.0008,10.4758,1.8164,10.4758,1.8164,10.9978,0.0008,10.9978],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:20,\u0022columns\u0022:3,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[1.0033,4.6517,2.625,4.6517,2.625,4.8617,1.0033,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.625,4.6517,5.75,4.6517,5.75,4.8617,2.625,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.75,4.6517,7.4967,4.6517,7.4967,4.8617,5.75,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,4.8617,2.625,4.8617,2.625,5.0833,1.0033,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,4.8617,5.75,4.8617,5.75,5.0833,2.625,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022,\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.75,4.8617,7.4967,4.8617,7.4967,5.0833,5.75,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Pre-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,5.0833,5.75,5.0833,5.75,5.3056,2.625,5.3056],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,5.3056,5.75,5.3056,5.75,5.5139,2.625,5.5139],\u0022elements\u0022:[\u0022#/readResults/0/lines/19/words/0\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,5.5139,5.75,5.5139,5.75,5.7361,2.625,5.7361],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.625,5.7361,5.75,5.7361,5.75,5.93,2.625,5.93],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,5.93,2.625,5.93,2.625,6.1528,1.0033,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,5.93,5.75,5.93,5.75,6.1528,2.625,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.75,5.93,7.4967,5.93,7.4967,6.1528,5.75,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Post-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,6.1528,5.75,6.1528,5.75,6.375,2.625,6.375],\u0022elements\u0022:[\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,6.375,5.75,6.375,5.75,6.5833,2.625,6.5833],\u0022elements\u0022:[\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Half page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,6.5833,5.75,6.5833,5.75,6.7867,2.625,6.7867],\u0022elements\u0022:[\u0022#/readResults/0/lines/32/words/0\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,6.7867,2.625,6.7867,2.625,7.0139,1.0033,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,6.7867,5.75,6.7867,5.75,7.0139,2.625,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022,\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.75,6.7867,7.4967,6.7867,7.4967,7.0139,5.75,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,7.0139,5.75,7.0139,5.75,7.2222,2.625,7.2222],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022]},{\u0022rowIndex\u0022:12,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.2222,5.75,7.2222,5.75,7.4306,2.625,7.4306],\u0022elements\u0022:[\u0022#/readResults/0/lines/40/words/0\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022]},{\u0022rowIndex\u0022:13,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,7.4306,5.75,7.4306,5.75,7.635,2.625,7.635],\u0022elements\u0022:[\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[1.0033,7.635,2.625,7.635,2.625,7.8611,1.0033,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,7.635,5.75,7.635,5.75,7.8611,2.625,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.75,7.635,7.4967,7.635,7.4967,7.8611,5.75,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:15,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.8611,5.75,7.8611,5.75,8.0694,2.625,8.0694],\u0022elements\u0022:[\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022]},{\u0022rowIndex\u0022:16,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.0694,5.75,8.0694,5.75,8.27,2.625,8.27],\u0022elements\u0022:[\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[1.0033,8.27,2.625,8.27,2.625,8.4861,1.0033,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,8.27,5.75,8.27,5.75,8.4861,2.625,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.75,8.27,7.4967,8.27,7.4967,8.4861,5.75,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},{\u0022rowIndex\u0022:18,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 25% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,8.4861,5.75,8.4861,5.75,8.7083,2.625,8.7083],\u0022elements\u0022:[\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022]},{\u0022rowIndex\u0022:19,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.7083,5.75,8.7083,5.75,8.905,2.625,8.905],\u0022elements\u0022:[\u0022#/readResults/0/lines/56/words/0\u0022]}]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}],\u0022documentResults\u0022:[{\u0022docType\u0022:\u0022custom:4279fa29-3a06-4741-8e25-4b9809380078\u0022,\u0022modelId\u0022:\u00224279fa29-3a06-4741-8e25-4b9809380078\u0022,\u0022pageRange\u0022:[1,2],\u0022fields\u0022:{\u0022Gold\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,500\u0022,\u0022text\u0022:\u0022$1,500\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,4.9,6.285,4.9,6.285,5.045,5.835,5.045],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},\u0022CompanyName\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Southridge Video\u0022,\u0022text\u0022:\u0022Southridge Video\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[2.19,2.77,3.35,2.77,3.35,2.915,2.19,2.915],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/2/words/2\u0022,\u0022#/readResults/1/lines/2/words/3\u0022]},\u0022Half\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$350\u0022,\u0022text\u0022:\u0022$350\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,8.305,6.16,8.305,6.16,8.45,5.835,8.45],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},\u0022Silver\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,200\u0022,\u0022text\u0022:\u0022$1,200\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,5.97,6.285,5.97,6.285,6.115,5.835,6.115],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},\u0022Full\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$600\u0022,\u0022text\u0022:\u0022$600\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,7.67,6.16,7.67,6.16,7.815,5.835,7.815],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},\u0022Contact\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[1.62,3.1,3.575,3.1,3.575,3.245,1.62,3.245],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/3/words/1\u0022]},\u0022Bronze\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,000\u0022,\u0022text\u0022:\u0022$1,000\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,6.825,6.285,6.825,6.285,6.97,5.835,6.97],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]}},\u0022docTypeConfidence\u0022:1.0}],\u0022errors\u0022:[]}}" + "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-10-30T12:53:43Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-10-30T12:53:50Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0,10.2725,1.0372,10.2725,1.0372,10.9925,0,10.9925],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0,10.6019,1.5095,10.6019,1.5095,10.9983,0,10.9983],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[2.9381,6.9634,3.0388,6.9634,3.0388,7.0736,2.9381,7.0736],\u0022confidence\u0022:0.553,\u0022state\u0022:\u0022unselected\u0022}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0.0024,9.869,1.0826,9.869,1.0826,10.9955,0.0024,10.9955],\u0022confidence\u0022:0.833,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[7.6562,1.0157,8.5,1.0157,8.5,2.8293,7.6562,2.8293],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0.0008,10.4758,1.8164,10.4758,1.8164,10.9978,0.0008,10.9978],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:20,\u0022columns\u0022:3,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[1.0033,4.6517,2.625,4.6517,2.625,4.8617,1.0033,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.625,4.6517,5.75,4.6517,5.75,4.8617,2.625,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.75,4.6517,7.4967,4.6517,7.4967,4.8617,5.75,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,4.8617,2.625,4.8617,2.625,5.0833,1.0033,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,4.8617,5.75,4.8617,5.75,5.0833,2.625,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022,\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.75,4.8617,7.4967,4.8617,7.4967,5.0833,5.75,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Pre-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,5.0833,5.75,5.0833,5.75,5.3056,2.625,5.3056],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,5.3056,5.75,5.3056,5.75,5.5139,2.625,5.5139],\u0022elements\u0022:[\u0022#/readResults/0/lines/19/words/0\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,5.5139,5.75,5.5139,5.75,5.7361,2.625,5.7361],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.625,5.7361,5.75,5.7361,5.75,5.93,2.625,5.93],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,5.93,2.625,5.93,2.625,6.1528,1.0033,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,5.93,5.75,5.93,5.75,6.1528,2.625,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.75,5.93,7.4967,5.93,7.4967,6.1528,5.75,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Post-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,6.1528,5.75,6.1528,5.75,6.375,2.625,6.375],\u0022elements\u0022:[\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,6.375,5.75,6.375,5.75,6.5833,2.625,6.5833],\u0022elements\u0022:[\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Half page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,6.5833,5.75,6.5833,5.75,6.7867,2.625,6.7867],\u0022elements\u0022:[\u0022#/readResults/0/lines/32/words/0\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,6.7867,2.625,6.7867,2.625,7.0139,1.0033,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,6.7867,5.75,6.7867,5.75,7.0139,2.625,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022,\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.75,6.7867,7.4967,6.7867,7.4967,7.0139,5.75,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,7.0139,5.75,7.0139,5.75,7.2222,2.625,7.2222],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022]},{\u0022rowIndex\u0022:12,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.2222,5.75,7.2222,5.75,7.4306,2.625,7.4306],\u0022elements\u0022:[\u0022#/readResults/0/lines/40/words/0\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022]},{\u0022rowIndex\u0022:13,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,7.4306,5.75,7.4306,5.75,7.635,2.625,7.635],\u0022elements\u0022:[\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[1.0033,7.635,2.625,7.635,2.625,7.8611,1.0033,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,7.635,5.75,7.635,5.75,7.8611,2.625,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.75,7.635,7.4967,7.635,7.4967,7.8611,5.75,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:15,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.8611,5.75,7.8611,5.75,8.0694,2.625,8.0694],\u0022elements\u0022:[\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022]},{\u0022rowIndex\u0022:16,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.0694,5.75,8.0694,5.75,8.27,2.625,8.27],\u0022elements\u0022:[\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[1.0033,8.27,2.625,8.27,2.625,8.4861,1.0033,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,8.27,5.75,8.27,5.75,8.4861,2.625,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.75,8.27,7.4967,8.27,7.4967,8.4861,5.75,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},{\u0022rowIndex\u0022:18,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 25% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,8.4861,5.75,8.4861,5.75,8.7083,2.625,8.7083],\u0022elements\u0022:[\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022]},{\u0022rowIndex\u0022:19,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.7083,5.75,8.7083,5.75,8.905,2.625,8.905],\u0022elements\u0022:[\u0022#/readResults/0/lines/56/words/0\u0022]}]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}],\u0022documentResults\u0022:[{\u0022docType\u0022:\u0022custom:78587410-9600-48fd-b4a3-d05533035b44\u0022,\u0022modelId\u0022:\u002278587410-9600-48fd-b4a3-d05533035b44\u0022,\u0022pageRange\u0022:[1,2],\u0022fields\u0022:{\u0022Half\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$350\u0022,\u0022text\u0022:\u0022$350\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,8.305,6.16,8.305,6.16,8.45,5.835,8.45],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},\u0022Silver\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,200\u0022,\u0022text\u0022:\u0022$1,200\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,5.97,6.285,5.97,6.285,6.115,5.835,6.115],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},\u0022CompanyName\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Southridge Video\u0022,\u0022text\u0022:\u0022Southridge Video\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[2.19,2.77,3.35,2.77,3.35,2.915,2.19,2.915],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/2/words/2\u0022,\u0022#/readResults/1/lines/2/words/3\u0022]},\u0022Contact\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[1.62,3.1,3.575,3.1,3.575,3.245,1.62,3.245],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/3/words/1\u0022]},\u0022Bronze\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,000\u0022,\u0022text\u0022:\u0022$1,000\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,6.825,6.285,6.825,6.285,6.97,5.835,6.97],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},\u0022Full\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$600\u0022,\u0022text\u0022:\u0022$600\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,7.67,6.16,7.67,6.16,7.815,5.835,7.815],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},\u0022Gold\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,500\u0022,\u0022text\u0022:\u0022$1,500\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,4.9,6.285,4.9,6.285,5.045,5.835,5.045],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]}},\u0022docTypeConfidence\u0022:1.0}],\u0022errors\u0022:[]}}" }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4279fa29-3a06-4741-8e25-4b9809380078", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/78587410-9600-48fd-b4a3-d05533035b44", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7439b6cd422a0142af21fca8d42f2d73-2272bdc873d9284f-00", + "traceparent": "00-7ef694a513e5134b9292fa7b70797a53-15241a5582196340-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e68a48c453338f50a7fef2d3be0d2efa", + "x-ms-client-request-id": "2d7f23c05e60ba147b39bd88ada12f50", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "b5f3f908-9ce0-4559-bb68-5d16f1ddf31e", + "apim-request-id": "d75985e1-9b4e-413d-9d71-4bcd286c83f2", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:31:15 GMT", + "Date": "Fri, 30 Oct 2020 12:53:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": [] } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_MULTIPAGE_BLOB_CONTAINER_SAS_URL": "https://azuresdktrainingdata.blob.core.windows.net/multipage-vendor-forms?sp=rl\u0026st=2020-06-25T04:55:22Z\u0026se=2021-06-26T04:55:00Z\u0026sv=2019-10-10\u0026sr=c\u0026sig=Z25JFTIsP3tbxDjHP2CK05HxIS9uz1E%2FDaRfjeEUyaU%3D", "RandomSeed": "1541823604" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(False)Async.json index 9a398e74374d0..cc405667131b1 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ba8c579e1f0dc0458b5b72777780caa2-42519e3985e17b4d-00", + "traceparent": "00-fb5617a3c053554aa3607486420f4858-e6c880d3a3979745-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c810a32692c891372d4fed3920427f99", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "da94a68b-6632-45f9-9190-47b6d226e837", + "apim-request-id": "d09ac500-8c23-4544-b6fb-0a50d32c6ec5", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:36:31 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e", + "Date": "Fri, 30 Oct 2020 12:59:57 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "227" + "x-envoy-upstream-service-time": "113" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "64ecbfd8b463f90da0cc966441c925e7", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ab9ee007-7e0e-460c-b5ac-bc34e0d57e2c", + "apim-request-id": "d930318d-a180-41d4-a44c-f8903adc9449", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:31 GMT", + "Date": "Fri, 30 Oct 2020 12:59:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "e4e0fc18-3069-462b-9599-81d682ec7c1e", + "modelId": "cdbbc0c9-3be5-4828-bbf0-de997361d45e", "status": "creating", - "createdDateTime": "2020-09-09T22:36:32Z", - "lastUpdatedDateTime": "2020-09-09T22:36:32Z" + "createdDateTime": "2020-10-30T12:59:57Z", + "lastUpdatedDateTime": "2020-10-30T12:59:57Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "62f6346a37f26727d30211205bdcc030", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30aeca3e-57e0-4d04-9800-7b5993757997", + "apim-request-id": "70778c59-f043-45b2-909b-44d93a5b3f20", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:32 GMT", + "Date": "Fri, 30 Oct 2020 12:59:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "modelInfo": { - "modelId": "e4e0fc18-3069-462b-9599-81d682ec7c1e", + "modelId": "cdbbc0c9-3be5-4828-bbf0-de997361d45e", "status": "creating", - "createdDateTime": "2020-09-09T22:36:32Z", - "lastUpdatedDateTime": "2020-09-09T22:36:32Z" + "createdDateTime": "2020-10-30T12:59:57Z", + "lastUpdatedDateTime": "2020-10-30T12:59:57Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eea1a9a801e87255961728fcfcd25064", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "658d968a-452a-4bb3-9abd-21a588f1ea78", + "apim-request-id": "303bdcfe-f7e8-40eb-aa70-019f71d7cc95", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:33 GMT", + "Date": "Fri, 30 Oct 2020 12:59:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "e4e0fc18-3069-462b-9599-81d682ec7c1e", + "modelId": "cdbbc0c9-3be5-4828-bbf0-de997361d45e", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:36:32Z", - "lastUpdatedDateTime": "2020-09-09T22:36:33Z" + "createdDateTime": "2020-10-30T12:59:57Z", + "lastUpdatedDateTime": "2020-10-30T12:59:59Z" }, "trainResult": { "averageModelAccuracy": 0.971, @@ -196,17 +196,17 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b2e3629b101fe54da5c443b8fb1a7b08-ac8c70f5b546bf44-00", + "traceparent": "00-4e7de99aa431ec49b28f726fe9f630fe-11fbdc979e998e46-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ebcf052a1d4ca0a697859161a3ed9ec4", "x-ms-return-client-request-id": "true" @@ -216,25 +216,25 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fb27a3cb-2098-4456-b5c4-ec6be9c1dbd0", + "apim-request-id": "0419441f-29bd-4e61-ae7c-e10c142cb969", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:36:33 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e/analyzeresults/5e70aec7-36fe-4b61-947b-87610f115668", + "Date": "Fri, 30 Oct 2020 12:59:59 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e/analyzeresults/04f2033b-2a4b-4cde-808f-91c361f986c5", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e/analyzeResults/5e70aec7-36fe-4b61-947b-87610f115668", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e/analyzeResults/04f2033b-2a4b-4cde-808f-91c361f986c5", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "98bc650b362768ffdf83ccda0f2b6b00", "x-ms-return-client-request-id": "true" @@ -242,29 +242,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "841fe760-b405-4367-974f-3b2827c61d17", + "apim-request-id": "dbf38a54-c646-4ff7-b5ab-7c6286d115c4", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:33 GMT", + "Date": "Fri, 30 Oct 2020 13:00:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:34Z", - "lastUpdatedDateTime": "2020-09-09T22:36:34Z" + "createdDateTime": "2020-10-30T13:00:00Z", + "lastUpdatedDateTime": "2020-10-30T13:00:00Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e/analyzeResults/5e70aec7-36fe-4b61-947b-87610f115668", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e/analyzeResults/04f2033b-2a4b-4cde-808f-91c361f986c5", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "56f6adb2d40d8be40200576370f4cfa8", "x-ms-return-client-request-id": "true" @@ -272,29 +272,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "460b5ce0-1599-4ba9-8ce6-dca6d67736d7", + "apim-request-id": "10ab5dbe-22c6-4bc4-aed9-99a49103d16e", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:35 GMT", + "Date": "Fri, 30 Oct 2020 13:00:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:34Z", - "lastUpdatedDateTime": "2020-09-09T22:36:35Z" + "createdDateTime": "2020-10-30T13:00:00Z", + "lastUpdatedDateTime": "2020-10-30T13:00:01Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e/analyzeResults/5e70aec7-36fe-4b61-947b-87610f115668", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e/analyzeResults/04f2033b-2a4b-4cde-808f-91c361f986c5", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "96f06379b716f33c06660cc850cb916c", "x-ms-return-client-request-id": "true" @@ -302,29 +302,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4bc2052b-da79-4757-beab-2c705b55fe02", + "apim-request-id": "37c56421-bafa-4565-a39f-b7deed9b91a6", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:36 GMT", + "Date": "Fri, 30 Oct 2020 13:00:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:34Z", - "lastUpdatedDateTime": "2020-09-09T22:36:35Z" + "createdDateTime": "2020-10-30T13:00:00Z", + "lastUpdatedDateTime": "2020-10-30T13:00:01Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e/analyzeResults/5e70aec7-36fe-4b61-947b-87610f115668", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e/analyzeResults/04f2033b-2a4b-4cde-808f-91c361f986c5", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f6af901948f736b681319626df9bf8eb", "x-ms-return-client-request-id": "true" @@ -332,29 +332,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "09100b29-af11-4193-9cc2-d8c887179974", + "apim-request-id": "3e6157a1-4185-48b4-85d5-de12933197cd", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:37 GMT", + "Date": "Fri, 30 Oct 2020 13:00:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:34Z", - "lastUpdatedDateTime": "2020-09-09T22:36:35Z" + "createdDateTime": "2020-10-30T13:00:00Z", + "lastUpdatedDateTime": "2020-10-30T13:00:01Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e/analyzeResults/5e70aec7-36fe-4b61-947b-87610f115668", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e/analyzeResults/04f2033b-2a4b-4cde-808f-91c361f986c5", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ab6123b4d43afaea70024fa6c81c3a36", "x-ms-return-client-request-id": "true" @@ -362,29 +362,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43fe1664-8536-44e1-abd1-c0659e7593ec", + "apim-request-id": "ae68d445-3a1c-402b-9dd3-621f47a65ed0", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:38 GMT", + "Date": "Fri, 30 Oct 2020 13:00:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:34Z", - "lastUpdatedDateTime": "2020-09-09T22:36:38Z" + "createdDateTime": "2020-10-30T13:00:00Z", + "lastUpdatedDateTime": "2020-10-30T13:00:04Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e/analyzeResults/5e70aec7-36fe-4b61-947b-87610f115668", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e/analyzeResults/04f2033b-2a4b-4cde-808f-91c361f986c5", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "df49eb6fd84430b1adba14e52015146a", "x-ms-return-client-request-id": "true" @@ -392,29 +392,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0274eabc-1d18-415b-8174-25dd3faae085", + "apim-request-id": "797c7788-5400-4adb-b7c5-492ebb4d8b41", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:39 GMT", + "Date": "Fri, 30 Oct 2020 13:00:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:34Z", - "lastUpdatedDateTime": "2020-09-09T22:36:38Z" + "createdDateTime": "2020-10-30T13:00:00Z", + "lastUpdatedDateTime": "2020-10-30T13:00:04Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e/analyzeResults/5e70aec7-36fe-4b61-947b-87610f115668", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e/analyzeResults/04f2033b-2a4b-4cde-808f-91c361f986c5", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2d13216ee56a4431a6b485f4f8106e65", "x-ms-return-client-request-id": "true" @@ -422,76 +422,46 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "833a3548-c404-4bbd-91c5-90bf85c15c75", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:34Z", - "lastUpdatedDateTime": "2020-09-09T22:36:38Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e/analyzeResults/5e70aec7-36fe-4b61-947b-87610f115668", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f4b760f71851dca67230fe80bf04da5a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8bdc5166-bcaa-4d9f-a738-4e082c2e8b6a", + "apim-request-id": "e6601a83-0daa-480e-a926-7db80373f7a0", "Content-Length": "34822", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:41 GMT", + "Date": "Fri, 30 Oct 2020 13:00:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "31" }, - "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-09-09T22:36:34Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-09-09T22:36:41Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0,10.2725,1.0372,10.2725,1.0372,10.9925,0,10.9925],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0,10.6019,1.5095,10.6019,1.5095,10.9983,0,10.9983],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[2.9381,6.9634,3.0388,6.9634,3.0388,7.0736,2.9381,7.0736],\u0022confidence\u0022:0.553,\u0022state\u0022:\u0022unselected\u0022}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0.0024,9.869,1.0826,9.869,1.0826,10.9955,0.0024,10.9955],\u0022confidence\u0022:0.833,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[7.6562,1.0157,8.5,1.0157,8.5,2.8293,7.6562,2.8293],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0.0008,10.4758,1.8164,10.4758,1.8164,10.9978,0.0008,10.9978],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:20,\u0022columns\u0022:3,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[1.0033,4.6517,2.625,4.6517,2.625,4.8617,1.0033,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.625,4.6517,5.75,4.6517,5.75,4.8617,2.625,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.75,4.6517,7.4967,4.6517,7.4967,4.8617,5.75,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,4.8617,2.625,4.8617,2.625,5.0833,1.0033,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,4.8617,5.75,4.8617,5.75,5.0833,2.625,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022,\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.75,4.8617,7.4967,4.8617,7.4967,5.0833,5.75,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Pre-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,5.0833,5.75,5.0833,5.75,5.3056,2.625,5.3056],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,5.3056,5.75,5.3056,5.75,5.5139,2.625,5.5139],\u0022elements\u0022:[\u0022#/readResults/0/lines/19/words/0\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,5.5139,5.75,5.5139,5.75,5.7361,2.625,5.7361],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.625,5.7361,5.75,5.7361,5.75,5.93,2.625,5.93],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,5.93,2.625,5.93,2.625,6.1528,1.0033,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,5.93,5.75,5.93,5.75,6.1528,2.625,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.75,5.93,7.4967,5.93,7.4967,6.1528,5.75,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Post-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,6.1528,5.75,6.1528,5.75,6.375,2.625,6.375],\u0022elements\u0022:[\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,6.375,5.75,6.375,5.75,6.5833,2.625,6.5833],\u0022elements\u0022:[\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Half page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,6.5833,5.75,6.5833,5.75,6.7867,2.625,6.7867],\u0022elements\u0022:[\u0022#/readResults/0/lines/32/words/0\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,6.7867,2.625,6.7867,2.625,7.0139,1.0033,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,6.7867,5.75,6.7867,5.75,7.0139,2.625,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022,\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.75,6.7867,7.4967,6.7867,7.4967,7.0139,5.75,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,7.0139,5.75,7.0139,5.75,7.2222,2.625,7.2222],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022]},{\u0022rowIndex\u0022:12,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.2222,5.75,7.2222,5.75,7.4306,2.625,7.4306],\u0022elements\u0022:[\u0022#/readResults/0/lines/40/words/0\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022]},{\u0022rowIndex\u0022:13,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,7.4306,5.75,7.4306,5.75,7.635,2.625,7.635],\u0022elements\u0022:[\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[1.0033,7.635,2.625,7.635,2.625,7.8611,1.0033,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,7.635,5.75,7.635,5.75,7.8611,2.625,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.75,7.635,7.4967,7.635,7.4967,7.8611,5.75,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:15,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.8611,5.75,7.8611,5.75,8.0694,2.625,8.0694],\u0022elements\u0022:[\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022]},{\u0022rowIndex\u0022:16,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.0694,5.75,8.0694,5.75,8.27,2.625,8.27],\u0022elements\u0022:[\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[1.0033,8.27,2.625,8.27,2.625,8.4861,1.0033,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,8.27,5.75,8.27,5.75,8.4861,2.625,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.75,8.27,7.4967,8.27,7.4967,8.4861,5.75,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},{\u0022rowIndex\u0022:18,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 25% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,8.4861,5.75,8.4861,5.75,8.7083,2.625,8.7083],\u0022elements\u0022:[\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022]},{\u0022rowIndex\u0022:19,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.7083,5.75,8.7083,5.75,8.905,2.625,8.905],\u0022elements\u0022:[\u0022#/readResults/0/lines/56/words/0\u0022]}]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}],\u0022documentResults\u0022:[{\u0022docType\u0022:\u0022custom:e4e0fc18-3069-462b-9599-81d682ec7c1e\u0022,\u0022modelId\u0022:\u0022e4e0fc18-3069-462b-9599-81d682ec7c1e\u0022,\u0022pageRange\u0022:[1,2],\u0022fields\u0022:{\u0022Gold\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,500\u0022,\u0022text\u0022:\u0022$1,500\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,4.9,6.285,4.9,6.285,5.045,5.835,5.045],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},\u0022Half\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$350\u0022,\u0022text\u0022:\u0022$350\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,8.305,6.16,8.305,6.16,8.45,5.835,8.45],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},\u0022CompanyName\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Southridge Video\u0022,\u0022text\u0022:\u0022Southridge Video\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[2.19,2.77,3.35,2.77,3.35,2.915,2.19,2.915],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/2/words/2\u0022,\u0022#/readResults/1/lines/2/words/3\u0022]},\u0022Full\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$600\u0022,\u0022text\u0022:\u0022$600\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,7.67,6.16,7.67,6.16,7.815,5.835,7.815],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},\u0022Bronze\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,000\u0022,\u0022text\u0022:\u0022$1,000\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,6.825,6.285,6.825,6.285,6.97,5.835,6.97],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},\u0022Silver\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,200\u0022,\u0022text\u0022:\u0022$1,200\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,5.97,6.285,5.97,6.285,6.115,5.835,6.115],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},\u0022Contact\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[1.62,3.1,3.575,3.1,3.575,3.245,1.62,3.245],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/3/words/1\u0022]}},\u0022docTypeConfidence\u0022:1.0}],\u0022errors\u0022:[]}}" + "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-10-30T13:00:00Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-10-30T13:00:08Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0,10.2725,1.0372,10.2725,1.0372,10.9925,0,10.9925],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0,10.6019,1.5095,10.6019,1.5095,10.9983,0,10.9983],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[2.9381,6.9634,3.0388,6.9634,3.0388,7.0736,2.9381,7.0736],\u0022confidence\u0022:0.553,\u0022state\u0022:\u0022unselected\u0022}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0.0024,9.869,1.0826,9.869,1.0826,10.9955,0.0024,10.9955],\u0022confidence\u0022:0.833,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[7.6562,1.0157,8.5,1.0157,8.5,2.8293,7.6562,2.8293],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0.0008,10.4758,1.8164,10.4758,1.8164,10.9978,0.0008,10.9978],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:20,\u0022columns\u0022:3,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[1.0033,4.6517,2.625,4.6517,2.625,4.8617,1.0033,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.625,4.6517,5.75,4.6517,5.75,4.8617,2.625,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.75,4.6517,7.4967,4.6517,7.4967,4.8617,5.75,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,4.8617,2.625,4.8617,2.625,5.0833,1.0033,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,4.8617,5.75,4.8617,5.75,5.0833,2.625,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022,\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.75,4.8617,7.4967,4.8617,7.4967,5.0833,5.75,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Pre-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,5.0833,5.75,5.0833,5.75,5.3056,2.625,5.3056],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,5.3056,5.75,5.3056,5.75,5.5139,2.625,5.5139],\u0022elements\u0022:[\u0022#/readResults/0/lines/19/words/0\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,5.5139,5.75,5.5139,5.75,5.7361,2.625,5.7361],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.625,5.7361,5.75,5.7361,5.75,5.93,2.625,5.93],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,5.93,2.625,5.93,2.625,6.1528,1.0033,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,5.93,5.75,5.93,5.75,6.1528,2.625,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.75,5.93,7.4967,5.93,7.4967,6.1528,5.75,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Post-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,6.1528,5.75,6.1528,5.75,6.375,2.625,6.375],\u0022elements\u0022:[\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,6.375,5.75,6.375,5.75,6.5833,2.625,6.5833],\u0022elements\u0022:[\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Half page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,6.5833,5.75,6.5833,5.75,6.7867,2.625,6.7867],\u0022elements\u0022:[\u0022#/readResults/0/lines/32/words/0\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,6.7867,2.625,6.7867,2.625,7.0139,1.0033,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,6.7867,5.75,6.7867,5.75,7.0139,2.625,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022,\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.75,6.7867,7.4967,6.7867,7.4967,7.0139,5.75,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,7.0139,5.75,7.0139,5.75,7.2222,2.625,7.2222],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022]},{\u0022rowIndex\u0022:12,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.2222,5.75,7.2222,5.75,7.4306,2.625,7.4306],\u0022elements\u0022:[\u0022#/readResults/0/lines/40/words/0\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022]},{\u0022rowIndex\u0022:13,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,7.4306,5.75,7.4306,5.75,7.635,2.625,7.635],\u0022elements\u0022:[\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[1.0033,7.635,2.625,7.635,2.625,7.8611,1.0033,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,7.635,5.75,7.635,5.75,7.8611,2.625,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.75,7.635,7.4967,7.635,7.4967,7.8611,5.75,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:15,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.8611,5.75,7.8611,5.75,8.0694,2.625,8.0694],\u0022elements\u0022:[\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022]},{\u0022rowIndex\u0022:16,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.0694,5.75,8.0694,5.75,8.27,2.625,8.27],\u0022elements\u0022:[\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[1.0033,8.27,2.625,8.27,2.625,8.4861,1.0033,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,8.27,5.75,8.27,5.75,8.4861,2.625,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.75,8.27,7.4967,8.27,7.4967,8.4861,5.75,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},{\u0022rowIndex\u0022:18,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 25% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,8.4861,5.75,8.4861,5.75,8.7083,2.625,8.7083],\u0022elements\u0022:[\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022]},{\u0022rowIndex\u0022:19,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.7083,5.75,8.7083,5.75,8.905,2.625,8.905],\u0022elements\u0022:[\u0022#/readResults/0/lines/56/words/0\u0022]}]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}],\u0022documentResults\u0022:[{\u0022docType\u0022:\u0022custom:cdbbc0c9-3be5-4828-bbf0-de997361d45e\u0022,\u0022modelId\u0022:\u0022cdbbc0c9-3be5-4828-bbf0-de997361d45e\u0022,\u0022pageRange\u0022:[1,2],\u0022fields\u0022:{\u0022Bronze\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,000\u0022,\u0022text\u0022:\u0022$1,000\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,6.825,6.285,6.825,6.285,6.97,5.835,6.97],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},\u0022Silver\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,200\u0022,\u0022text\u0022:\u0022$1,200\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,5.97,6.285,5.97,6.285,6.115,5.835,6.115],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},\u0022CompanyName\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Southridge Video\u0022,\u0022text\u0022:\u0022Southridge Video\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[2.19,2.77,3.35,2.77,3.35,2.915,2.19,2.915],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/2/words/2\u0022,\u0022#/readResults/1/lines/2/words/3\u0022]},\u0022Contact\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[1.62,3.1,3.575,3.1,3.575,3.245,1.62,3.245],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/3/words/1\u0022]},\u0022Gold\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,500\u0022,\u0022text\u0022:\u0022$1,500\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,4.9,6.285,4.9,6.285,5.045,5.835,5.045],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},\u0022Full\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$600\u0022,\u0022text\u0022:\u0022$600\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,7.67,6.16,7.67,6.16,7.815,5.835,7.815],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},\u0022Half\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$350\u0022,\u0022text\u0022:\u0022$350\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,8.305,6.16,8.305,6.16,8.45,5.835,8.45],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]}},\u0022docTypeConfidence\u0022:1.0}],\u0022errors\u0022:[]}}" }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4e0fc18-3069-462b-9599-81d682ec7c1e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cdbbc0c9-3be5-4828-bbf0-de997361d45e", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aabf4ce64d9ddc4bbcd2b7b4bd1dfe9e-0a638705e3555c42-00", + "traceparent": "00-00a3fee819197f409ced33619cc81d67-23eba4afab96a54e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a638e5ee0c0889cbb905399052bd389d", + "x-ms-client-request-id": "f4b760f71851dca67230fe80bf04da5a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "e32211ec-3996-4c17-8d28-83b512af2bd0", + "apim-request-id": "63642708-d75f-4969-b6a3-ceb81643400b", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:36:42 GMT", + "Date": "Fri, 30 Oct 2020 13:00:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": [] } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_MULTIPAGE_BLOB_CONTAINER_SAS_URL": "https://azuresdktrainingdata.blob.core.windows.net/multipage-vendor-forms?sp=rl\u0026st=2020-06-25T04:55:22Z\u0026se=2021-06-26T04:55:00Z\u0026sv=2019-10-10\u0026sr=c\u0026sig=Z25JFTIsP3tbxDjHP2CK05HxIS9uz1E%2FDaRfjeEUyaU%3D", "RandomSeed": "473842376" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(True).json index b05665ccdd6d9..8aec0202f93a7 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-31697d2007da5d41b45e646f76e8d7fa-b4d46957610f3a47-00", + "traceparent": "00-4a07e96c86801949bf2e28d46bfe5fb2-fa9c85e7f91fe746-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1410bbdd588790916bdcf209574fa663", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "aa355a85-4b1e-4ab2-9e8e-9123827563c6", + "apim-request-id": "4005a03e-86a0-4e63-9ac2-2a111ba9d9c7", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:54 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23", + "Date": "Fri, 30 Oct 2020 12:53:29 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/015d74a5-880a-497f-b3a7-daf0414912ea", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "269" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/015d74a5-880a-497f-b3a7-daf0414912ea?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b166a42523e8acd167d94e6d1428ed5e", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97895846-3a8c-4886-8d0a-a05201805e0f", + "apim-request-id": "a3d12ff3-1fad-4413-b2f4-f05c2b07c781", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:54 GMT", + "Date": "Fri, 30 Oct 2020 12:53:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "modelInfo": { - "modelId": "389a00e0-71fa-4d9e-a8bb-821e56f60c23", + "modelId": "015d74a5-880a-497f-b3a7-daf0414912ea", "status": "creating", - "createdDateTime": "2020-09-09T22:30:55Z", - "lastUpdatedDateTime": "2020-09-09T22:30:55Z" + "createdDateTime": "2020-10-30T12:53:30Z", + "lastUpdatedDateTime": "2020-10-30T12:53:30Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/015d74a5-880a-497f-b3a7-daf0414912ea?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "428a216a8f81740453882ee6b2b39a81", "x-ms-return-client-request-id": "true" @@ -81,56 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4eccb2a-dc64-44fb-9fdb-d9bec6faf820", + "apim-request-id": "c9beb8f5-6505-4400-8bfe-2a1aaf3d30dd", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:55 GMT", + "Date": "Fri, 30 Oct 2020 12:53:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "389a00e0-71fa-4d9e-a8bb-821e56f60c23", - "status": "creating", - "createdDateTime": "2020-09-09T22:30:55Z", - "lastUpdatedDateTime": "2020-09-09T22:30:55Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "28c0562ce73db922ea64acad09237b43", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7eddbd33-7530-4d23-9b80-59fa23d061b9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "389a00e0-71fa-4d9e-a8bb-821e56f60c23", + "modelId": "015d74a5-880a-497f-b3a7-daf0414912ea", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:30:55Z", - "lastUpdatedDateTime": "2020-09-09T22:30:56Z" + "createdDateTime": "2020-10-30T12:53:30Z", + "lastUpdatedDateTime": "2020-10-30T12:53:31Z" }, "trainResult": { "averageModelAccuracy": 0.971, @@ -196,300 +163,270 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/015d74a5-880a-497f-b3a7-daf0414912ea/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "711607", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-088c831ee9ab4c49a2e1170ca50c4ad5-5050ad3a30884c4b-00", + "traceparent": "00-9fd13570a163ac479bd8953035f29b78-d36efc834d501a48-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "359e94ee64c596e19ff15e60f5eaf9b3", + "x-ms-client-request-id": "28c0562ce73db922ea64acad09237b43", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "861e2228-a9d3-487c-a52a-3f962ba683a8", + "apim-request-id": "53fe4947-6107-478b-b763-81e2f5bf4e70", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:30:57 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23/analyzeresults/a8efa200-c5a9-4ea6-90b4-7e109f6d1e3b", + "Date": "Fri, 30 Oct 2020 12:53:31 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/015d74a5-880a-497f-b3a7-daf0414912ea/analyzeresults/02dd8bf2-4145-4471-9dd8-48d2c6a30b30", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "211" + "x-envoy-upstream-service-time": "174" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23/analyzeResults/a8efa200-c5a9-4ea6-90b4-7e109f6d1e3b", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "bd41cd3fc4678320ffd0571de3566b2f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fdcfd313-bb42-43ef-9c5f-740c24077a96", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:30:58Z", - "lastUpdatedDateTime": "2020-09-09T22:30:58Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23/analyzeResults/a8efa200-c5a9-4ea6-90b4-7e109f6d1e3b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/015d74a5-880a-497f-b3a7-daf0414912ea/analyzeResults/02dd8bf2-4145-4471-9dd8-48d2c6a30b30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1ef7ea0c6515c8bb752a884b88c2c400", + "x-ms-client-request-id": "359e94ee64c596e19ff15e60f5eaf9b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6114d45-e1c7-42c9-bcf3-f6470b011056", + "apim-request-id": "88219351-a3dc-4d3d-8399-8ade542f00a1", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:58 GMT", + "Date": "Fri, 30 Oct 2020 12:53:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:30:58Z", - "lastUpdatedDateTime": "2020-09-09T22:30:58Z" + "createdDateTime": "2020-10-30T12:53:32Z", + "lastUpdatedDateTime": "2020-10-30T12:53:33Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23/analyzeResults/a8efa200-c5a9-4ea6-90b4-7e109f6d1e3b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/015d74a5-880a-497f-b3a7-daf0414912ea/analyzeResults/02dd8bf2-4145-4471-9dd8-48d2c6a30b30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3b6ef86abde22adb731b36f40cc4b348", + "x-ms-client-request-id": "bd41cd3fc4678320ffd0571de3566b2f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "170acfae-9d29-41cd-8dc4-532543aa07d4", + "apim-request-id": "a2fed59a-f591-4f8d-aef2-554f8efb699a", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:30:59 GMT", + "Date": "Fri, 30 Oct 2020 12:53:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:30:58Z", - "lastUpdatedDateTime": "2020-09-09T22:30:58Z" + "createdDateTime": "2020-10-30T12:53:32Z", + "lastUpdatedDateTime": "2020-10-30T12:53:33Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23/analyzeResults/a8efa200-c5a9-4ea6-90b4-7e109f6d1e3b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/015d74a5-880a-497f-b3a7-daf0414912ea/analyzeResults/02dd8bf2-4145-4471-9dd8-48d2c6a30b30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0a532f86daf2da9e1178483d3bd5fa3c", + "x-ms-client-request-id": "1ef7ea0c6515c8bb752a884b88c2c400", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eba42a9f-b05c-43e3-94ae-58d5749dbcf6", + "apim-request-id": "307ec215-5192-49b3-bf7a-25335a05120b", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:00 GMT", + "Date": "Fri, 30 Oct 2020 12:53:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:30:58Z", - "lastUpdatedDateTime": "2020-09-09T22:30:58Z" + "createdDateTime": "2020-10-30T12:53:32Z", + "lastUpdatedDateTime": "2020-10-30T12:53:33Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23/analyzeResults/a8efa200-c5a9-4ea6-90b4-7e109f6d1e3b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/015d74a5-880a-497f-b3a7-daf0414912ea/analyzeResults/02dd8bf2-4145-4471-9dd8-48d2c6a30b30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "eab2560c2fe84f4c0fcdabf92fc7bbb1", + "x-ms-client-request-id": "3b6ef86abde22adb731b36f40cc4b348", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e81fd77-1219-42f1-aef1-913c2da56b70", + "apim-request-id": "8885ccac-932b-48c0-9ce2-156c49c12630", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:01 GMT", + "Date": "Fri, 30 Oct 2020 12:53:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:30:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:02Z" + "createdDateTime": "2020-10-30T12:53:32Z", + "lastUpdatedDateTime": "2020-10-30T12:53:36Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23/analyzeResults/a8efa200-c5a9-4ea6-90b4-7e109f6d1e3b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/015d74a5-880a-497f-b3a7-daf0414912ea/analyzeResults/02dd8bf2-4145-4471-9dd8-48d2c6a30b30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "59c53f76ba6f8f0d59942969749eee9e", + "x-ms-client-request-id": "0a532f86daf2da9e1178483d3bd5fa3c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8fa2fb8a-cab2-4efe-beac-67806a5ca6e9", + "apim-request-id": "bd69ad05-275c-43b6-8220-c79524e30ff4", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:02 GMT", + "Date": "Fri, 30 Oct 2020 12:53:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:30:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:02Z" + "createdDateTime": "2020-10-30T12:53:32Z", + "lastUpdatedDateTime": "2020-10-30T12:53:36Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23/analyzeResults/a8efa200-c5a9-4ea6-90b4-7e109f6d1e3b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/015d74a5-880a-497f-b3a7-daf0414912ea/analyzeResults/02dd8bf2-4145-4471-9dd8-48d2c6a30b30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b5e8f920c8115660e203fb242fa5ab4a", + "x-ms-client-request-id": "eab2560c2fe84f4c0fcdabf92fc7bbb1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "755311d0-f7ec-4702-830f-e400dfa965fd", + "apim-request-id": "04780090-b46b-46f2-b5a6-f41237b40c4a", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:03 GMT", + "Date": "Fri, 30 Oct 2020 12:53:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:30:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:02Z" + "createdDateTime": "2020-10-30T12:53:32Z", + "lastUpdatedDateTime": "2020-10-30T12:53:36Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23/analyzeResults/a8efa200-c5a9-4ea6-90b4-7e109f6d1e3b", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/015d74a5-880a-497f-b3a7-daf0414912ea/analyzeResults/02dd8bf2-4145-4471-9dd8-48d2c6a30b30", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "fbc697bda10f52cd4923915405e3da70", + "x-ms-client-request-id": "59c53f76ba6f8f0d59942969749eee9e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd0d2eaf-4564-4227-b6f4-62787ab7597a", + "apim-request-id": "d5b267f6-85ef-4d45-9bf4-4a2aeb49422f", "Content-Length": "34822", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:04 GMT", + "Date": "Fri, 30 Oct 2020 12:53:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "33" }, - "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-09-09T22:30:58Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-09-09T22:31:05Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0,10.2725,1.0372,10.2725,1.0372,10.9925,0,10.9925],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0,10.6019,1.5095,10.6019,1.5095,10.9983,0,10.9983],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[2.9381,6.9634,3.0388,6.9634,3.0388,7.0736,2.9381,7.0736],\u0022confidence\u0022:0.553,\u0022state\u0022:\u0022unselected\u0022}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0.0024,9.869,1.0826,9.869,1.0826,10.9955,0.0024,10.9955],\u0022confidence\u0022:0.833,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[7.6562,1.0157,8.5,1.0157,8.5,2.8293,7.6562,2.8293],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0.0008,10.4758,1.8164,10.4758,1.8164,10.9978,0.0008,10.9978],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:20,\u0022columns\u0022:3,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[1.0033,4.6517,2.625,4.6517,2.625,4.8617,1.0033,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.625,4.6517,5.75,4.6517,5.75,4.8617,2.625,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.75,4.6517,7.4967,4.6517,7.4967,4.8617,5.75,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,4.8617,2.625,4.8617,2.625,5.0833,1.0033,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,4.8617,5.75,4.8617,5.75,5.0833,2.625,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022,\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.75,4.8617,7.4967,4.8617,7.4967,5.0833,5.75,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Pre-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,5.0833,5.75,5.0833,5.75,5.3056,2.625,5.3056],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,5.3056,5.75,5.3056,5.75,5.5139,2.625,5.5139],\u0022elements\u0022:[\u0022#/readResults/0/lines/19/words/0\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,5.5139,5.75,5.5139,5.75,5.7361,2.625,5.7361],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.625,5.7361,5.75,5.7361,5.75,5.93,2.625,5.93],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,5.93,2.625,5.93,2.625,6.1528,1.0033,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,5.93,5.75,5.93,5.75,6.1528,2.625,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.75,5.93,7.4967,5.93,7.4967,6.1528,5.75,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Post-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,6.1528,5.75,6.1528,5.75,6.375,2.625,6.375],\u0022elements\u0022:[\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,6.375,5.75,6.375,5.75,6.5833,2.625,6.5833],\u0022elements\u0022:[\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Half page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,6.5833,5.75,6.5833,5.75,6.7867,2.625,6.7867],\u0022elements\u0022:[\u0022#/readResults/0/lines/32/words/0\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,6.7867,2.625,6.7867,2.625,7.0139,1.0033,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,6.7867,5.75,6.7867,5.75,7.0139,2.625,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022,\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.75,6.7867,7.4967,6.7867,7.4967,7.0139,5.75,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,7.0139,5.75,7.0139,5.75,7.2222,2.625,7.2222],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022]},{\u0022rowIndex\u0022:12,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.2222,5.75,7.2222,5.75,7.4306,2.625,7.4306],\u0022elements\u0022:[\u0022#/readResults/0/lines/40/words/0\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022]},{\u0022rowIndex\u0022:13,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,7.4306,5.75,7.4306,5.75,7.635,2.625,7.635],\u0022elements\u0022:[\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[1.0033,7.635,2.625,7.635,2.625,7.8611,1.0033,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,7.635,5.75,7.635,5.75,7.8611,2.625,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.75,7.635,7.4967,7.635,7.4967,7.8611,5.75,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:15,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.8611,5.75,7.8611,5.75,8.0694,2.625,8.0694],\u0022elements\u0022:[\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022]},{\u0022rowIndex\u0022:16,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.0694,5.75,8.0694,5.75,8.27,2.625,8.27],\u0022elements\u0022:[\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[1.0033,8.27,2.625,8.27,2.625,8.4861,1.0033,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,8.27,5.75,8.27,5.75,8.4861,2.625,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.75,8.27,7.4967,8.27,7.4967,8.4861,5.75,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},{\u0022rowIndex\u0022:18,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 25% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,8.4861,5.75,8.4861,5.75,8.7083,2.625,8.7083],\u0022elements\u0022:[\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022]},{\u0022rowIndex\u0022:19,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.7083,5.75,8.7083,5.75,8.905,2.625,8.905],\u0022elements\u0022:[\u0022#/readResults/0/lines/56/words/0\u0022]}]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}],\u0022documentResults\u0022:[{\u0022docType\u0022:\u0022custom:389a00e0-71fa-4d9e-a8bb-821e56f60c23\u0022,\u0022modelId\u0022:\u0022389a00e0-71fa-4d9e-a8bb-821e56f60c23\u0022,\u0022pageRange\u0022:[1,2],\u0022fields\u0022:{\u0022Silver\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,200\u0022,\u0022text\u0022:\u0022$1,200\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,5.97,6.285,5.97,6.285,6.115,5.835,6.115],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},\u0022Bronze\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,000\u0022,\u0022text\u0022:\u0022$1,000\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,6.825,6.285,6.825,6.285,6.97,5.835,6.97],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},\u0022CompanyName\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Southridge Video\u0022,\u0022text\u0022:\u0022Southridge Video\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[2.19,2.77,3.35,2.77,3.35,2.915,2.19,2.915],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/2/words/2\u0022,\u0022#/readResults/1/lines/2/words/3\u0022]},\u0022Gold\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,500\u0022,\u0022text\u0022:\u0022$1,500\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,4.9,6.285,4.9,6.285,5.045,5.835,5.045],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},\u0022Full\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$600\u0022,\u0022text\u0022:\u0022$600\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,7.67,6.16,7.67,6.16,7.815,5.835,7.815],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},\u0022Half\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$350\u0022,\u0022text\u0022:\u0022$350\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,8.305,6.16,8.305,6.16,8.45,5.835,8.45],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},\u0022Contact\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[1.62,3.1,3.575,3.1,3.575,3.245,1.62,3.245],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/3/words/1\u0022]}},\u0022docTypeConfidence\u0022:1.0}],\u0022errors\u0022:[]}}" + "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-10-30T12:53:32Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-10-30T12:53:39Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0,10.2725,1.0372,10.2725,1.0372,10.9925,0,10.9925],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0,10.6019,1.5095,10.6019,1.5095,10.9983,0,10.9983],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[2.9381,6.9634,3.0388,6.9634,3.0388,7.0736,2.9381,7.0736],\u0022confidence\u0022:0.553,\u0022state\u0022:\u0022unselected\u0022}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0.0024,9.869,1.0826,9.869,1.0826,10.9955,0.0024,10.9955],\u0022confidence\u0022:0.833,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[7.6562,1.0157,8.5,1.0157,8.5,2.8293,7.6562,2.8293],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0.0008,10.4758,1.8164,10.4758,1.8164,10.9978,0.0008,10.9978],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:20,\u0022columns\u0022:3,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[1.0033,4.6517,2.625,4.6517,2.625,4.8617,1.0033,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.625,4.6517,5.75,4.6517,5.75,4.8617,2.625,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.75,4.6517,7.4967,4.6517,7.4967,4.8617,5.75,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,4.8617,2.625,4.8617,2.625,5.0833,1.0033,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,4.8617,5.75,4.8617,5.75,5.0833,2.625,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022,\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.75,4.8617,7.4967,4.8617,7.4967,5.0833,5.75,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Pre-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,5.0833,5.75,5.0833,5.75,5.3056,2.625,5.3056],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,5.3056,5.75,5.3056,5.75,5.5139,2.625,5.5139],\u0022elements\u0022:[\u0022#/readResults/0/lines/19/words/0\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,5.5139,5.75,5.5139,5.75,5.7361,2.625,5.7361],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.625,5.7361,5.75,5.7361,5.75,5.93,2.625,5.93],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,5.93,2.625,5.93,2.625,6.1528,1.0033,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,5.93,5.75,5.93,5.75,6.1528,2.625,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.75,5.93,7.4967,5.93,7.4967,6.1528,5.75,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Post-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,6.1528,5.75,6.1528,5.75,6.375,2.625,6.375],\u0022elements\u0022:[\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,6.375,5.75,6.375,5.75,6.5833,2.625,6.5833],\u0022elements\u0022:[\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Half page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,6.5833,5.75,6.5833,5.75,6.7867,2.625,6.7867],\u0022elements\u0022:[\u0022#/readResults/0/lines/32/words/0\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,6.7867,2.625,6.7867,2.625,7.0139,1.0033,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,6.7867,5.75,6.7867,5.75,7.0139,2.625,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022,\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.75,6.7867,7.4967,6.7867,7.4967,7.0139,5.75,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,7.0139,5.75,7.0139,5.75,7.2222,2.625,7.2222],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022]},{\u0022rowIndex\u0022:12,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.2222,5.75,7.2222,5.75,7.4306,2.625,7.4306],\u0022elements\u0022:[\u0022#/readResults/0/lines/40/words/0\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022]},{\u0022rowIndex\u0022:13,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,7.4306,5.75,7.4306,5.75,7.635,2.625,7.635],\u0022elements\u0022:[\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[1.0033,7.635,2.625,7.635,2.625,7.8611,1.0033,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,7.635,5.75,7.635,5.75,7.8611,2.625,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.75,7.635,7.4967,7.635,7.4967,7.8611,5.75,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:15,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.8611,5.75,7.8611,5.75,8.0694,2.625,8.0694],\u0022elements\u0022:[\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022]},{\u0022rowIndex\u0022:16,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.0694,5.75,8.0694,5.75,8.27,2.625,8.27],\u0022elements\u0022:[\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[1.0033,8.27,2.625,8.27,2.625,8.4861,1.0033,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,8.27,5.75,8.27,5.75,8.4861,2.625,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.75,8.27,7.4967,8.27,7.4967,8.4861,5.75,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},{\u0022rowIndex\u0022:18,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 25% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,8.4861,5.75,8.4861,5.75,8.7083,2.625,8.7083],\u0022elements\u0022:[\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022]},{\u0022rowIndex\u0022:19,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.7083,5.75,8.7083,5.75,8.905,2.625,8.905],\u0022elements\u0022:[\u0022#/readResults/0/lines/56/words/0\u0022]}]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}],\u0022documentResults\u0022:[{\u0022docType\u0022:\u0022custom:015d74a5-880a-497f-b3a7-daf0414912ea\u0022,\u0022modelId\u0022:\u0022015d74a5-880a-497f-b3a7-daf0414912ea\u0022,\u0022pageRange\u0022:[1,2],\u0022fields\u0022:{\u0022Silver\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,200\u0022,\u0022text\u0022:\u0022$1,200\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,5.97,6.285,5.97,6.285,6.115,5.835,6.115],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},\u0022Bronze\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,000\u0022,\u0022text\u0022:\u0022$1,000\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,6.825,6.285,6.825,6.285,6.97,5.835,6.97],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},\u0022Gold\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,500\u0022,\u0022text\u0022:\u0022$1,500\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,4.9,6.285,4.9,6.285,5.045,5.835,5.045],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},\u0022CompanyName\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Southridge Video\u0022,\u0022text\u0022:\u0022Southridge Video\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[2.19,2.77,3.35,2.77,3.35,2.915,2.19,2.915],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/2/words/2\u0022,\u0022#/readResults/1/lines/2/words/3\u0022]},\u0022Contact\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[1.62,3.1,3.575,3.1,3.575,3.245,1.62,3.245],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/3/words/1\u0022]},\u0022Half\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$350\u0022,\u0022text\u0022:\u0022$350\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,8.305,6.16,8.305,6.16,8.45,5.835,8.45],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},\u0022Full\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$600\u0022,\u0022text\u0022:\u0022$600\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,7.67,6.16,7.67,6.16,7.815,5.835,7.815],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]}},\u0022docTypeConfidence\u0022:1.0}],\u0022errors\u0022:[]}}" }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/389a00e0-71fa-4d9e-a8bb-821e56f60c23", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/015d74a5-880a-497f-b3a7-daf0414912ea", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d40758c7d7b8e1459fabab2f1c0f5625-dafc98f56a666a44-00", + "traceparent": "00-c29f7c42491ef84bada58065c2aea7bc-34acdb874e60ed46-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "35d80cdf05dfada0df6f766bbee960b4", + "x-ms-client-request-id": "b5e8f920c8115660e203fb242fa5ab4a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "0fa9c91d-b0f8-4dfd-9e8f-a7f3cd3d583f", + "apim-request-id": "b3e2ff31-dd49-4b39-abe8-002099798daa", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:31:05 GMT", + "Date": "Fri, 30 Oct 2020 12:53:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": [] } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_MULTIPAGE_BLOB_CONTAINER_SAS_URL": "https://azuresdktrainingdata.blob.core.windows.net/multipage-vendor-forms?sp=rl\u0026st=2020-06-25T04:55:22Z\u0026se=2021-06-26T04:55:00Z\u0026sv=2019-10-10\u0026sr=c\u0026sig=Z25JFTIsP3tbxDjHP2CK05HxIS9uz1E%2FDaRfjeEUyaU%3D", "RandomSeed": "697771995" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(True)Async.json index 1e688156bf908..b724f9b6a1e24 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageForm(True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-544d659cbb9c1e409201ab18e7857802-108d92b016529b4d-00", + "traceparent": "00-f54f3c5cce12bc4181bef2e545525050-6964c0c5f805924f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3dab3dfb9023a4c657e3e434ce6e62c8", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "f0489774-e456-42bb-90c7-a1cf055096d0", + "apim-request-id": "08cb05a0-a723-4e23-9a61-2b7d715860a5", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:36:03 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10", + "Date": "Fri, 30 Oct 2020 12:59:43 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f88b2271f7250f014801cb7242a3b420", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bfa2e132-ee10-4dc6-a600-eda5db95614b", + "apim-request-id": "347d360f-6097-4b6e-b766-d66e55479d1e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:03 GMT", + "Date": "Fri, 30 Oct 2020 12:59:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "modelInfo": { - "modelId": "588c1f7e-ec05-45dc-90cf-da133fb7ed10", + "modelId": "2bc78fbd-8f5c-40e4-82a4-9d4d44316050", "status": "creating", - "createdDateTime": "2020-09-09T22:36:04Z", - "lastUpdatedDateTime": "2020-09-09T22:36:04Z" + "createdDateTime": "2020-10-30T12:59:44Z", + "lastUpdatedDateTime": "2020-10-30T12:59:44Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "85e94adcc610b485552fc7ba87df7c16", "x-ms-return-client-request-id": "true" @@ -81,306 +81,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92736852-abd6-404f-bcb9-13fa10c18e49", + "apim-request-id": "3a41f13c-6580-46bd-bda3-3a79b79c3d7b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "588c1f7e-ec05-45dc-90cf-da133fb7ed10", - "status": "creating", - "createdDateTime": "2020-09-09T22:36:04Z", - "lastUpdatedDateTime": "2020-09-09T22:36:04Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1fc46a8673a803fd3c9bf422c55362b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7bca8ff8-c9b8-4643-9091-056091710be8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:06 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "588c1f7e-ec05-45dc-90cf-da133fb7ed10", - "status": "creating", - "createdDateTime": "2020-09-09T22:36:04Z", - "lastUpdatedDateTime": "2020-09-09T22:36:04Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "8358c42fdd85abb79cd6a3f62f468869", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "86c6b7c7-1443-48bc-9baf-921e36e4cee7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:07 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "588c1f7e-ec05-45dc-90cf-da133fb7ed10", - "status": "creating", - "createdDateTime": "2020-09-09T22:36:04Z", - "lastUpdatedDateTime": "2020-09-09T22:36:04Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d7ecb48494df68774ce54875d163ef01", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d487223d-d4aa-431f-adc2-3ba2c1bd6c47", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:08 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "588c1f7e-ec05-45dc-90cf-da133fb7ed10", - "status": "creating", - "createdDateTime": "2020-09-09T22:36:04Z", - "lastUpdatedDateTime": "2020-09-09T22:36:04Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c28b14ccf887a891b31982d2d007d3f5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a04a12fe-a7f5-4b46-b8f6-09fcfbf4c153", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "588c1f7e-ec05-45dc-90cf-da133fb7ed10", - "status": "creating", - "createdDateTime": "2020-09-09T22:36:04Z", - "lastUpdatedDateTime": "2020-09-09T22:36:04Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "109d8b138b679bd44cef369f9442d939", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c7be51e1-f77d-44b7-91be-853612697576", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "588c1f7e-ec05-45dc-90cf-da133fb7ed10", - "status": "creating", - "createdDateTime": "2020-09-09T22:36:04Z", - "lastUpdatedDateTime": "2020-09-09T22:36:04Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1b29a1e6c5bb8be2234324c511a59845", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a6ae69d1-618f-494f-a22f-4f0df2b92172", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "588c1f7e-ec05-45dc-90cf-da133fb7ed10", - "status": "creating", - "createdDateTime": "2020-09-09T22:36:04Z", - "lastUpdatedDateTime": "2020-09-09T22:36:04Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "45625311dec541993ff07697c2f11470", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "12844cb4-9da6-42ce-a288-c352bbaeea6c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:13 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "588c1f7e-ec05-45dc-90cf-da133fb7ed10", - "status": "creating", - "createdDateTime": "2020-09-09T22:36:04Z", - "lastUpdatedDateTime": "2020-09-09T22:36:04Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2eeb493fb8de4d3aa912ed24670e89a6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ae40d118-daca-457e-89a2-cd7f1a9371c1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "588c1f7e-ec05-45dc-90cf-da133fb7ed10", - "status": "creating", - "createdDateTime": "2020-09-09T22:36:04Z", - "lastUpdatedDateTime": "2020-09-09T22:36:04Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "418ef15694e0087408e7dbcb4f4ac932", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "31afd9a2-7b67-414e-9ad3-46359d473a4b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:15 GMT", + "Date": "Fri, 30 Oct 2020 12:59:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -388,46 +91,46 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "588c1f7e-ec05-45dc-90cf-da133fb7ed10", + "modelId": "2bc78fbd-8f5c-40e4-82a4-9d4d44316050", "status": "creating", - "createdDateTime": "2020-09-09T22:36:04Z", - "lastUpdatedDateTime": "2020-09-09T22:36:04Z" + "createdDateTime": "2020-10-30T12:59:44Z", + "lastUpdatedDateTime": "2020-10-30T12:59:44Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c886b32e6aba596718149cb3f175da31", + "x-ms-client-request-id": "1fc46a8673a803fd3c9bf422c55362b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2928fafb-090d-48b6-a44c-8edc0dfbb211", + "apim-request-id": "4a1af663-f8d6-4fa4-9f54-db0f27a90893", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:16 GMT", + "Date": "Fri, 30 Oct 2020 12:59:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "588c1f7e-ec05-45dc-90cf-da133fb7ed10", + "modelId": "2bc78fbd-8f5c-40e4-82a4-9d4d44316050", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:36:04Z", - "lastUpdatedDateTime": "2020-09-09T22:36:16Z" + "createdDateTime": "2020-10-30T12:59:44Z", + "lastUpdatedDateTime": "2020-10-30T12:59:46Z" }, "trainResult": { "averageModelAccuracy": 0.971, @@ -493,510 +196,300 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "711607", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6c1ae13f9a43784484f5f583d2c34e7e-f2f028f1b5e9a24a-00", + "traceparent": "00-422519a244ba8242aab4fffe6e984756-e7706129283d754d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d041cf66d363ab90d4e326f6dc6ffd5e", + "x-ms-client-request-id": "8358c42fdd85abb79cd6a3f62f468869", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "49163638-2f3a-464c-a52e-b553abf05090", + "apim-request-id": "d0a42583-3d45-471c-b2f7-ac6bf958cda9", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:36:16 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeresults/25463559-eb54-479a-8f49-b86f79c402e8", + "Date": "Fri, 30 Oct 2020 12:59:48 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050/analyzeresults/2dbb14de-9416-4b87-af22-4b9b5a16bdea", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "269" + "x-envoy-upstream-service-time": "193" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b4f5bb48c188ecec893428cbf8c11692", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4aa34972-8c14-4fe4-a02e-eaf2a584867e", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:17Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7f64aa0df8095bcf22daf3d644707ca9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a388e29d-84d5-4d1a-b8e5-f6253a4bbf91", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:17Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "366a3d172680a5a8e254462eaac5b313", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "234b11ea-8497-4d3b-82ae-6dae868efd92", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:19 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:17Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "32e993cc7d0a4f55eb9991adcd16a818", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "75cc3c38-b4ad-414d-81b7-5c7cebd3f754", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:20 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:17Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "bab47fb8e056e61201bf9db4b1a0b05d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0a9e5d6b-60de-4da9-af36-dd8735540d62", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:17Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b00ae0274987999ee81a4ae694fad7cc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d573c827-f732-49f5-949f-d6e1570f3cba", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:22 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:17Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050/analyzeResults/2dbb14de-9416-4b87-af22-4b9b5a16bdea", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2b762eacf811ecbc8102314be0a19d4b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fdecb43d-86c8-4d6b-912b-f4afec100a10", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:22Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ec8634e9f70b6e91e11ad23b952c5106", + "x-ms-client-request-id": "d7ecb48494df68774ce54875d163ef01", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c01d47aa-cd67-425e-937f-1d96e24a5b49", + "apim-request-id": "32e78b48-7a72-4c2b-9d84-5e5d25269b98", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:24 GMT", + "Date": "Fri, 30 Oct 2020 12:59:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:22Z" + "createdDateTime": "2020-10-30T12:59:48Z", + "lastUpdatedDateTime": "2020-10-30T12:59:48Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050/analyzeResults/2dbb14de-9416-4b87-af22-4b9b5a16bdea", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8307d0e7852a2f4b241e2f841852b846", + "x-ms-client-request-id": "c28b14ccf887a891b31982d2d007d3f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1644360a-53bc-4e1c-9f13-dcc002dff0c3", + "apim-request-id": "46d65e33-8d07-4fd5-9b37-597107c27f3d", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:25 GMT", + "Date": "Fri, 30 Oct 2020 12:59:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:25Z" + "createdDateTime": "2020-10-30T12:59:48Z", + "lastUpdatedDateTime": "2020-10-30T12:59:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050/analyzeResults/2dbb14de-9416-4b87-af22-4b9b5a16bdea", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "60fdff7deb74b4c09c0849f625805654", + "x-ms-client-request-id": "109d8b138b679bd44cef369f9442d939", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e941f45-a9d1-499f-a89a-0eb7229cda76", + "apim-request-id": "f189fd37-15cd-4d84-88d6-6c7322dc1431", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:26 GMT", + "Date": "Fri, 30 Oct 2020 12:59:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:25Z" + "createdDateTime": "2020-10-30T12:59:48Z", + "lastUpdatedDateTime": "2020-10-30T12:59:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050/analyzeResults/2dbb14de-9416-4b87-af22-4b9b5a16bdea", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "10632ab11a996321e856c8edc80d558e", + "x-ms-client-request-id": "1b29a1e6c5bb8be2234324c511a59845", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3cb5a5a1-fd41-4e3f-9d91-237ddcfd52e2", + "apim-request-id": "0325d313-ad68-4c40-bc0f-6175f9474d2d", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:27 GMT", + "Date": "Fri, 30 Oct 2020 12:59:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:25Z" + "createdDateTime": "2020-10-30T12:59:48Z", + "lastUpdatedDateTime": "2020-10-30T12:59:49Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050/analyzeResults/2dbb14de-9416-4b87-af22-4b9b5a16bdea", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "96be8b61f12ffc920f52e7213c5409a3", + "x-ms-client-request-id": "45625311dec541993ff07697c2f11470", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e4618de8-9f63-4863-86b8-d3a2c01cdca9", + "apim-request-id": "eec4a9b5-68ef-4832-b48a-c5321be849db", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:28 GMT", + "Date": "Fri, 30 Oct 2020 12:59:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:28Z" + "createdDateTime": "2020-10-30T12:59:48Z", + "lastUpdatedDateTime": "2020-10-30T12:59:52Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050/analyzeResults/2dbb14de-9416-4b87-af22-4b9b5a16bdea", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "eed3dac7a8ee63addd99771d22d3ec8f", + "x-ms-client-request-id": "2eeb493fb8de4d3aa912ed24670e89a6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c9e1487c-639a-4673-acfb-2158a97f7167", + "apim-request-id": "259a8bcc-033b-48ac-b181-51a541971c7e", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:29 GMT", + "Date": "Fri, 30 Oct 2020 12:59:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:28Z" + "createdDateTime": "2020-10-30T12:59:48Z", + "lastUpdatedDateTime": "2020-10-30T12:59:52Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050/analyzeResults/2dbb14de-9416-4b87-af22-4b9b5a16bdea", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9a94bab2bfc2bf259867014632ff2794", + "x-ms-client-request-id": "418ef15694e0087408e7dbcb4f4ac932", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ab0c667-22b7-4df7-985e-020d82efc021", + "apim-request-id": "39813e56-344a-4976-af74-656b8cfe701d", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:30 GMT", + "Date": "Fri, 30 Oct 2020 12:59:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:17Z", - "lastUpdatedDateTime": "2020-09-09T22:36:28Z" + "createdDateTime": "2020-10-30T12:59:48Z", + "lastUpdatedDateTime": "2020-10-30T12:59:52Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10/analyzeResults/25463559-eb54-479a-8f49-b86f79c402e8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050/analyzeResults/2dbb14de-9416-4b87-af22-4b9b5a16bdea", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ed26244d6739b99fdd5bb8957a74d93c", + "x-ms-client-request-id": "c886b32e6aba596718149cb3f175da31", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a543138a-1af3-4f21-bd3c-7a3dc831f699", + "apim-request-id": "cddfb9dd-6854-49f3-8845-24ccddfe8126", "Content-Length": "34822", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:31 GMT", + "Date": "Fri, 30 Oct 2020 12:59:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "31" }, - "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-09-09T22:36:17Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-09-09T22:36:31Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0,10.2725,1.0372,10.2725,1.0372,10.9925,0,10.9925],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0,10.6019,1.5095,10.6019,1.5095,10.9983,0,10.9983],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[2.9381,6.9634,3.0388,6.9634,3.0388,7.0736,2.9381,7.0736],\u0022confidence\u0022:0.553,\u0022state\u0022:\u0022unselected\u0022}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0.0024,9.869,1.0826,9.869,1.0826,10.9955,0.0024,10.9955],\u0022confidence\u0022:0.833,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[7.6562,1.0157,8.5,1.0157,8.5,2.8293,7.6562,2.8293],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0.0008,10.4758,1.8164,10.4758,1.8164,10.9978,0.0008,10.9978],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:20,\u0022columns\u0022:3,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[1.0033,4.6517,2.625,4.6517,2.625,4.8617,1.0033,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.625,4.6517,5.75,4.6517,5.75,4.8617,2.625,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.75,4.6517,7.4967,4.6517,7.4967,4.8617,5.75,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,4.8617,2.625,4.8617,2.625,5.0833,1.0033,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,4.8617,5.75,4.8617,5.75,5.0833,2.625,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022,\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.75,4.8617,7.4967,4.8617,7.4967,5.0833,5.75,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Pre-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,5.0833,5.75,5.0833,5.75,5.3056,2.625,5.3056],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,5.3056,5.75,5.3056,5.75,5.5139,2.625,5.5139],\u0022elements\u0022:[\u0022#/readResults/0/lines/19/words/0\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,5.5139,5.75,5.5139,5.75,5.7361,2.625,5.7361],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.625,5.7361,5.75,5.7361,5.75,5.93,2.625,5.93],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,5.93,2.625,5.93,2.625,6.1528,1.0033,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,5.93,5.75,5.93,5.75,6.1528,2.625,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.75,5.93,7.4967,5.93,7.4967,6.1528,5.75,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Post-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,6.1528,5.75,6.1528,5.75,6.375,2.625,6.375],\u0022elements\u0022:[\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,6.375,5.75,6.375,5.75,6.5833,2.625,6.5833],\u0022elements\u0022:[\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Half page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,6.5833,5.75,6.5833,5.75,6.7867,2.625,6.7867],\u0022elements\u0022:[\u0022#/readResults/0/lines/32/words/0\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,6.7867,2.625,6.7867,2.625,7.0139,1.0033,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,6.7867,5.75,6.7867,5.75,7.0139,2.625,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022,\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.75,6.7867,7.4967,6.7867,7.4967,7.0139,5.75,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,7.0139,5.75,7.0139,5.75,7.2222,2.625,7.2222],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022]},{\u0022rowIndex\u0022:12,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.2222,5.75,7.2222,5.75,7.4306,2.625,7.4306],\u0022elements\u0022:[\u0022#/readResults/0/lines/40/words/0\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022]},{\u0022rowIndex\u0022:13,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,7.4306,5.75,7.4306,5.75,7.635,2.625,7.635],\u0022elements\u0022:[\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[1.0033,7.635,2.625,7.635,2.625,7.8611,1.0033,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,7.635,5.75,7.635,5.75,7.8611,2.625,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.75,7.635,7.4967,7.635,7.4967,7.8611,5.75,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:15,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.8611,5.75,7.8611,5.75,8.0694,2.625,8.0694],\u0022elements\u0022:[\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022]},{\u0022rowIndex\u0022:16,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.0694,5.75,8.0694,5.75,8.27,2.625,8.27],\u0022elements\u0022:[\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[1.0033,8.27,2.625,8.27,2.625,8.4861,1.0033,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,8.27,5.75,8.27,5.75,8.4861,2.625,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.75,8.27,7.4967,8.27,7.4967,8.4861,5.75,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},{\u0022rowIndex\u0022:18,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 25% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,8.4861,5.75,8.4861,5.75,8.7083,2.625,8.7083],\u0022elements\u0022:[\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022]},{\u0022rowIndex\u0022:19,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.7083,5.75,8.7083,5.75,8.905,2.625,8.905],\u0022elements\u0022:[\u0022#/readResults/0/lines/56/words/0\u0022]}]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}],\u0022documentResults\u0022:[{\u0022docType\u0022:\u0022custom:588c1f7e-ec05-45dc-90cf-da133fb7ed10\u0022,\u0022modelId\u0022:\u0022588c1f7e-ec05-45dc-90cf-da133fb7ed10\u0022,\u0022pageRange\u0022:[1,2],\u0022fields\u0022:{\u0022CompanyName\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Southridge Video\u0022,\u0022text\u0022:\u0022Southridge Video\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[2.19,2.77,3.35,2.77,3.35,2.915,2.19,2.915],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/2/words/2\u0022,\u0022#/readResults/1/lines/2/words/3\u0022]},\u0022Bronze\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,000\u0022,\u0022text\u0022:\u0022$1,000\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,6.825,6.285,6.825,6.285,6.97,5.835,6.97],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},\u0022Full\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$600\u0022,\u0022text\u0022:\u0022$600\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,7.67,6.16,7.67,6.16,7.815,5.835,7.815],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},\u0022Half\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$350\u0022,\u0022text\u0022:\u0022$350\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,8.305,6.16,8.305,6.16,8.45,5.835,8.45],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},\u0022Silver\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,200\u0022,\u0022text\u0022:\u0022$1,200\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,5.97,6.285,5.97,6.285,6.115,5.835,6.115],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},\u0022Contact\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[1.62,3.1,3.575,3.1,3.575,3.245,1.62,3.245],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/3/words/1\u0022]},\u0022Gold\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,500\u0022,\u0022text\u0022:\u0022$1,500\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,4.9,6.285,4.9,6.285,5.045,5.835,5.045],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]}},\u0022docTypeConfidence\u0022:1.0}],\u0022errors\u0022:[]}}" + "ResponseBody": "{\u0022status\u0022:\u0022succeeded\u0022,\u0022createdDateTime\u0022:\u00222020-10-30T12:59:48Z\u0022,\u0022lastUpdatedDateTime\u0022:\u00222020-10-30T12:59:55Z\u0022,\u0022analyzeResult\u0022:{\u0022version\u0022:\u00222.1.0\u0022,\u0022readResults\u0022:[{\u0022page\u0022:1,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.2268,1.5733,6.2379,1.5733,6.2379,2.005,2.2268,2.005],\u0022text\u0022:\u0022Vendor Registration\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.2268,1.5733,3.703,1.5733,3.703,1.9207,2.2268,1.9207],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8661,1.5883,6.2379,1.5883,6.2379,2.005,3.8661,2.005],\u0022text\u0022:\u0022Registration\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,2.5846,7.0776,2.5846,7.0776,2.7293,1.0078,2.7293],\u0022text\u0022:\u0022Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,2.5919,1.5548,2.5919,1.5548,2.7013,1.0078,2.7013],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,2.5856,1.843,2.5856,1.843,2.7013,1.6125,2.7013],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8996,2.5846,2.6636,2.5846,2.6636,2.7013,1.8996,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.7122,2.5852,2.9307,2.5852,2.9307,2.7003,2.7122,2.7003],\u0022text\u0022:\u0022will\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9922,2.5852,3.1419,2.5852,3.1419,2.7013,2.9922,2.7013],\u0022text\u0022:\u0022be\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1987,2.5852,3.4704,2.5852,3.4704,2.7013,3.1987,2.7013],\u0022text\u0022:\u0022held\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.53,2.62,3.6846,2.62,3.6846,2.7013,3.53,2.7013],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7498,2.5934,4.0422,2.5934,4.0422,2.7293,3.7498,2.7293],\u0022text\u0022:\u0022May\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0877,2.5914,4.5042,2.5914,4.5042,2.7236,4.0877,2.7236],\u0022text\u0022:\u002228-29,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,2.5914,4.884,2.5914,4.884,2.7017,4.5586,2.7017],\u0022text\u0022:\u00222020\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.9351,2.6014,5.0577,2.6014,5.0577,2.7013,4.9351,2.7013],\u0022text\u0022:\u0022at\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.1033,2.5852,5.3202,2.5852,5.3202,2.7013,5.1033,2.7013],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.3787,2.5852,5.6051,2.5852,5.6051,2.7003,5.3787,2.7003],\u0022text\u0022:\u0022Elm\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6624,2.5846,6.4263,2.5846,6.4263,2.7013,5.6624,2.7013],\u0022text\u0022:\u0022Conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.4796,2.5919,6.9234,2.5919,6.9234,2.7013,6.4796,2.7013],\u0022text\u0022:\u0022Center\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9765,2.5905,7.0776,2.5905,7.0776,2.7003,6.9765,2.7003],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,2.8029,7.3457,2.8029,7.3457,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,2.8036,1.4242,2.8036,1.4242,2.9478,1.014,2.9478],\u0022text\u0022:\u0022Maple\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4763,2.8089,1.7576,2.8089,1.7576,2.9478,1.4763,2.9478],\u0022text\u0022:\u0022City,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.8195,2.8036,2.8383,2.8036,2.8383,2.9197,1.8195,2.9197],\u0022text\u0022:\u0022Massachusetts.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8883,2.8036,3.1326,2.8036,3.1326,2.9197,2.8883,2.9197],\u0022text\u0022:\u0022The\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.1842,2.8029,3.9301,2.8029,3.9301,2.9197,3.1842,2.9197],\u0022text\u0022:\u0022conference\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.9871,2.8036,4.2019,2.8036,4.2019,2.9197,3.9871,2.9197],\u0022text\u0022:\u0022has\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2529,2.8036,4.5104,2.8036,4.5104,2.9197,4.2529,2.9197],\u0022text\u0022:\u0022sold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5701,2.8197,4.7871,2.8197,4.7871,2.9197,4.5701,2.9197],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8373,2.8029,4.9701,2.8029,4.9701,2.9197,4.8373,2.9197],\u0022text\u0022:\u0022of\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.0169,2.8089,5.1601,2.8089,5.1601,2.9197,5.0169,2.9197],\u0022text\u0022:\u0022its\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.2167,2.81,5.5766,2.81,5.5766,2.9418,5.2167,2.9418],\u0022text\u0022:\u00221,500\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.6227,2.8036,6.0928,2.8036,6.0928,2.9418,5.6227,2.9418],\u0022text\u0022:\u0022tickets,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.1461,2.8036,6.4308,2.8036,6.4308,2.9195,6.1461,2.9195],\u0022text\u0022:\u0022with\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.488,2.8383,6.548,2.8383,6.548,2.9197,6.488,2.9197],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6016,2.81,6.8449,2.81,6.8449,2.9197,6.6016,2.9197],\u0022text\u0022:\u0022400\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.8998,2.8383,7.3457,2.8383,7.3457,2.9478,6.8998,2.9478],\u0022text\u0022:\u0022person\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0043,3.0229,7.2482,3.0229,7.2482,3.1678,1.0043,3.1678],\u0022text\u0022:\u0022waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0043,3.0236,1.5194,3.0236,1.5194,3.1397,1.0043,3.1397],\u0022text\u0022:\u0022waitlist.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5733,3.0239,2.0654,3.0239,2.0654,3.1397,1.5733,3.1397],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1132,3.0236,2.9143,3.0236,2.9143,3.1678,2.1132,3.1678],\u0022text\u0022:\u0022applications\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9675,3.0583,3.1726,3.0583,3.1726,3.1397,2.9675,3.1397],\u0022text\u0022:\u0022are\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2306,3.0236,3.5889,3.0236,3.5889,3.1678,3.2306,3.1678],\u0022text\u0022:\u0022being\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.6388,3.0239,4.2336,3.0239,4.2336,3.1678,3.6388,3.1678],\u0022text\u0022:\u0022accepted\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2862,3.0236,4.8127,3.0236,4.8127,3.1678,4.2862,3.1678],\u0022text\u0022:\u0022through\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8815,3.0236,5.1133,3.0236,5.1133,3.14,4.8815,3.14],\u0022text\u0022:\u0022Feb\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.163,3.0297,5.361,3.0297,5.361,3.162,5.163,3.162],\u0022text\u0022:\u002228,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.413,3.0297,5.7774,3.0297,5.7774,3.14,5.413,3.14],\u0022text\u0022:\u00222020.\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[5.8406,3.0236,6.2537,3.0236,6.2537,3.1397,5.8406,3.1397],\u0022text\u0022:\u0022Please\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.3022,3.0229,6.4539,3.0229,6.4539,3.1387,6.3022,3.1387],\u0022text\u0022:\u0022fill\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.5131,3.0289,6.6158,3.0289,6.6158,3.1387,6.5131,3.1387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.6673,3.0236,6.8842,3.0236,6.8842,3.1397,6.6673,3.1397],\u0022text\u0022:\u0022the\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9317,3.0229,7.2482,3.0229,7.2482,3.1397,6.9317,3.1397],\u0022text\u0022:\u0022form\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0125,3.2436,3.6599,3.2436,3.6599,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below, and attach a check made out to:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0125,3.2436,1.4459,3.2436,1.4459,3.3818,1.0125,3.3818],\u0022text\u0022:\u0022below,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5024,3.2439,1.7371,3.2439,1.7371,3.3597,1.5024,3.3597],\u0022text\u0022:\u0022and\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7968,3.2436,2.2047,3.2436,2.2047,3.3597,1.7968,3.3597],\u0022text\u0022:\u0022attach\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.2619,3.2783,2.3219,3.2783,2.3219,3.3597,2.2619,3.3597],\u0022text\u0022:\u0022a\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.379,3.2436,2.7529,3.2436,2.7529,3.3597,2.379,3.3597],\u0022text\u0022:\u0022check\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.8076,3.2439,3.17,3.2439,3.17,3.3597,2.8076,3.3597],\u0022text\u0022:\u0022made\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.2251,3.2597,3.4421,3.2597,3.4421,3.3597,3.2251,3.3597],\u0022text\u0022:\u0022out\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.4869,3.2597,3.6599,3.2597,3.6599,3.3597,3.4869,3.3597],\u0022text\u0022:\u0022to:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0078,3.5739,1.843,3.5739,1.843,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso Ltd.\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0078,3.5802,1.5548,3.5802,1.5548,3.6897,1.0078,3.6897],\u0022text\u0022:\u0022Contoso\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6125,3.5739,1.843,3.5739,1.843,3.6897,1.6125,3.6897],\u0022text\u0022:\u0022Ltd.\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0093,3.7939,2.3768,3.7939,2.3768,3.9378,1.0093,3.9378],\u0022text\u0022:\u00222345 Dogwood Lane\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0093,3.8,1.3297,3.8,1.3297,3.9097,1.0093,3.9097],\u0022text\u0022:\u00222345\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3899,3.7939,2.0149,3.7939,2.0149,3.9378,1.3899,3.9378],\u0022text\u0022:\u0022Dogwood\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.0788,3.8012,2.3768,3.8012,2.3768,3.9097,2.0788,3.9097],\u0022text\u0022:\u0022Lane\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.014,4.0136,2.3377,4.0136,2.3377,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch, Kansas 98123\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.014,4.0136,1.3745,4.0136,1.3745,4.1518,1.014,4.1518],\u0022text\u0022:\u0022Birch,\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4375,4.0212,1.8819,4.0212,1.8819,4.1297,1.4375,4.1297],\u0022text\u0022:\u0022Kansas\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.9318,4.02,2.3377,4.02,2.3377,4.1297,1.9318,4.1297],\u0022text\u0022:\u002298123\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0204,4.4248,1.5303,4.4248,1.5303,4.5682,1.0204,4.5682],\u0022text\u0022:\u0022Rates:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,4.6986,1.6232,4.6986,1.6232,4.8428,1.0923,4.8428],\u0022text\u0022:\u0022Package\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.713,4.6986,3.2707,4.6986,3.2707,4.8147,2.713,4.8147],\u0022text\u0022:\u0022Included\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.838,4.7039,6.1513,4.7039,6.1513,4.8147,5.838,4.8147],\u0022text\u0022:\u0022Price\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0857,4.9086,1.9831,4.9086,1.9831,5.0528,1.0857,5.0528],\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0857,4.9086,1.3842,4.9086,1.3842,5.0247,1.0857,5.0247],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4423,4.915,1.9831,4.915,1.9831,5.0528,1.4423,5.0528],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,4.954,3.018,4.954,3.018,5.0145,2.9586,5.0145],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,4.9169,3.8726,4.9169,3.8726,5.033,3.214,5.033],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,4.9169,3.4295,4.9169,3.4295,5.033,3.214,5.033],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,4.9169,3.8726,4.9169,3.8726,5.033,3.492,5.033],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,4.8977,6.2829,4.8977,6.2829,5.0468,5.8328,5.0468],\u0022text\u0022:\u0022$1,500\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.1673,3.018,5.1673,3.018,5.2279,2.9586,5.2279],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.1302,4.7267,5.1302,4.7267,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.1302,4.0183,5.1302,4.0183,5.2744,3.214,5.2744],\u0022text\u0022:\u0022Pre-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0665,5.1302,4.4475,5.1302,4.4475,5.2463,4.0665,5.2463],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.4903,5.165,4.7267,5.165,4.7267,5.2744,4.4903,5.2744],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.379,3.018,5.379,3.018,5.4395,2.9586,5.4395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.3495,4.2093,5.3495,4.2093,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.3495,3.5163,5.3495,3.5163,5.4861,3.214,5.4861],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,5.3767,3.7244,5.3767,3.7244,5.458,3.5686,5.458],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,5.358,4.2093,5.358,4.2093,5.4861,3.7888,5.4861],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.5923,3.018,5.5923,3.018,5.6529,2.9586,5.6529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.5552,5.201,5.5552,5.201,5.6994,3.214,5.6994],\u0022text\u0022:\u0022Full page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.5552,3.4295,5.5552,3.4295,5.6713,3.214,5.6713],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.59,3.7989,5.59,3.7989,5.6994,3.492,5.6994],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8519,5.5556,3.9991,5.5556,3.9991,5.6713,3.8519,5.6713],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0599,5.5605,4.1626,5.5605,4.1626,5.6703,4.0599,5.6703],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2248,5.59,4.7839,5.59,4.7839,5.6994,4.2248,5.6994],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8367,5.5556,5.201,5.5556,5.201,5.6994,4.8367,5.6994],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,5.804,3.018,5.804,3.018,5.8645,2.9586,5.8645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0842,5.9786,2.0339,5.9786,2.0339,6.1228,1.0842,6.1228],\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0842,5.9786,1.4443,5.9786,1.4443,6.0947,1.0842,6.0947],\u0022text\u0022:\u0022Silver\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4904,5.985,2.0339,5.985,2.0339,6.1228,1.4904,6.1228],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.024,3.018,6.024,3.018,6.0845,2.9586,6.0845],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,5.9869,3.8726,5.9869,3.8726,6.103,3.214,6.103],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,5.9869,3.4295,5.9869,3.4295,6.103,3.214,6.103],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,5.9869,3.8726,5.9869,3.8726,6.103,3.492,6.103],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,5.9677,6.2829,5.9677,6.2829,6.1168,5.8328,6.1168],\u0022text\u0022:\u0022$1,200\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.2356,3.018,6.2356,3.018,6.2962,2.9586,6.2962],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.1986,4.7938,6.1986,4.7938,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote thank you\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.1986,4.0878,6.1986,4.0878,6.3428,3.214,6.3428],\u0022text\u0022:\u0022Post-keynote\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1348,6.1986,4.5158,6.1986,4.5158,6.3147,4.1348,6.3147],\u0022text\u0022:\u0022thank\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.5586,6.2333,4.7938,6.2333,4.7938,6.3428,4.5586,6.3428],\u0022text\u0022:\u0022you\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.4473,3.018,6.4473,3.018,6.5079,2.9586,6.5079],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.4179,4.2093,6.4179,4.2093,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.4179,3.5163,6.4179,3.5163,6.5544,3.214,6.5544],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,6.445,3.7244,6.445,3.7244,6.5263,3.5686,6.5263],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,6.4264,4.2093,6.4264,4.2093,6.5544,3.7888,6.5544],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.6606,3.018,6.6606,3.018,6.7212,2.9586,6.7212],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.6229,5.2314,6.6229,5.2314,6.7678,3.214,6.7678],\u0022text\u0022:\u0022Half page ad in program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.6229,3.4739,6.6229,3.4739,6.7397,3.214,6.7397],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5224,6.6583,3.8326,6.6583,3.8326,6.7678,3.5224,6.7678],\u0022text\u0022:\u0022page\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.8843,6.6239,4.0315,6.6239,4.0315,6.7397,3.8843,6.7397],\u0022text\u0022:\u0022ad\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.0923,6.6289,4.195,6.6289,4.195,6.7387,4.0923,6.7387],\u0022text\u0022:\u0022in\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.2563,6.6583,4.8148,6.6583,4.8148,6.7678,4.2563,6.7678],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.8695,6.6239,5.2314,6.6239,5.2314,6.7678,4.8695,6.7678],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,6.84,2.1362,6.84,2.1362,6.9778,1.0923,6.9778],\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,6.8417,1.545,6.8417,1.545,6.9497,1.0923,6.9497],\u0022text\u0022:\u0022Bronze\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5951,6.84,2.1362,6.84,2.1362,6.9778,1.5951,6.9778],\u0022text\u0022:\u0022Sponsor\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,6.879,3.018,6.879,3.018,6.9395,2.9586,6.9395],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,6.8419,3.8726,6.8419,3.8726,6.958,3.214,6.958],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,6.8419,3.4295,6.8419,3.4295,6.958,3.214,6.958],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,6.8419,3.8726,6.8419,3.8726,6.958,3.492,6.958],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,6.8227,6.2829,6.8227,6.2829,6.9718,5.8328,6.9718],\u0022text\u0022:\u0022$1,000\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.0923,3.018,7.0923,3.018,7.1529,2.9586,7.1529],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.0629,4.2093,7.0629,4.2093,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo on poster\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.0629,3.5163,7.0629,3.5163,7.1994,3.214,7.1994],\u0022text\u0022:\u0022Logo\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.5686,7.09,3.7244,7.09,3.7244,7.1713,3.5686,7.1713],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.7888,7.0714,4.2093,7.0714,4.2093,7.1994,3.7888,7.1994],\u0022text\u0022:\u0022poster\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.304,3.018,7.304,3.018,7.3645,2.9586,7.3645],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.2672,5.3419,7.2672,5.3419,7.4111,3.2082,7.4111],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.2717,3.4817,7.2717,3.4817,7.3845,3.2082,7.3845],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.2672,4.1018,7.2672,4.1018,7.383,3.533,7.383],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.3017,4.307,7.3017,4.307,7.383,4.1512,7.383],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.3017,4.9253,7.3017,4.9253,7.4111,4.3682,7.4111],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.2672,5.3419,7.2672,5.3419,7.4111,4.981,7.4111],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,7.4706,4.2429,7.4706,4.2429,7.5863,3.2075,7.5863],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,7.6819,1.7537,7.6819,1.7537,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,7.6819,1.3079,7.6819,1.3079,7.798,1.0923,7.798],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.3718,7.6819,1.7537,7.6819,1.7537,7.798,1.3718,7.798],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.7273,3.018,7.7273,3.018,7.7879,2.9586,7.7879],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,7.6902,3.8726,7.6902,3.8726,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,7.6902,3.4295,7.6902,3.4295,7.8063,3.214,7.8063],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,7.6902,3.8726,7.6902,3.8726,7.8063,3.492,7.8063],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,7.6711,6.1586,7.6711,6.1586,7.8165,5.8328,7.8165],\u0022text\u0022:\u0022$600\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,7.939,3.018,7.939,3.018,7.9995,2.9586,7.9995],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2082,7.9022,5.3419,7.9022,5.3419,8.0461,3.2082,8.0461],\u0022text\u0022:\u002250% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2082,7.9067,3.4817,7.9067,3.4817,8.0195,3.2082,8.0195],\u0022text\u0022:\u002250%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,7.9022,4.1018,7.9022,4.1018,8.018,3.533,8.018],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,7.9367,4.307,7.9367,4.307,8.018,4.1512,8.018],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,7.9367,4.9253,7.9367,4.9253,8.0461,4.3682,8.0461],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,7.9022,5.3419,7.9022,5.3419,8.0461,4.981,8.0461],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.1056,4.2429,8.1056,4.2429,8.2213,3.2075,8.2213],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0923,8.3162,1.7854,8.3162,1.7854,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half Booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0923,8.3162,1.3522,8.3162,1.3522,8.433,1.0923,8.433],\u0022text\u0022:\u0022Half\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.4022,8.3169,1.7854,8.3169,1.7854,8.433,1.4022,8.433],\u0022text\u0022:\u0022Booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.3623,3.018,8.3623,3.018,8.4229,2.9586,8.4229],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.214,8.3252,3.8726,8.3252,3.8726,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full booth\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.214,8.3252,3.4295,8.3252,3.4295,8.4413,3.214,8.4413],\u0022text\u0022:\u0022Full\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.492,8.3252,3.8726,8.3252,3.8726,8.4413,3.492,8.4413],\u0022text\u0022:\u0022booth\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[5.8328,8.3061,6.1586,8.3061,6.1586,8.4515,5.8328,8.4515],\u0022text\u0022:\u0022$350\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[2.9586,8.574,3.018,8.574,3.018,8.6345,2.9586,8.6345],\u0022text\u0022:\u0022\uF0B7\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2093,8.5372,5.3419,8.5372,5.3419,8.6811,3.2093,8.6811],\u0022text\u0022:\u002225% discount on program guide\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2093,8.5417,3.4817,8.5417,3.4817,8.6545,3.2093,8.6545],\u0022text\u0022:\u002225%\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[3.533,8.5372,4.1018,8.5372,4.1018,8.653,3.533,8.653],\u0022text\u0022:\u0022discount\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.1512,8.5717,4.307,8.5717,4.307,8.653,4.1512,8.653],\u0022text\u0022:\u0022on\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.3682,8.5717,4.9253,8.5717,4.9253,8.6811,4.3682,8.6811],\u0022text\u0022:\u0022program\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[4.981,8.5372,5.3419,8.5372,5.3419,8.6811,4.981,8.6811],\u0022text\u0022:\u0022guide\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[3.2075,8.7406,4.2429,8.7406,4.2429,8.8563,3.2075,8.8563],\u0022text\u0022:\u0022advertisements\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0,10.2725,1.0372,10.2725,1.0372,10.9925,0,10.9925],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0,10.6019,1.5095,10.6019,1.5095,10.9983,0,10.9983],\u0022confidence\u0022:0.69,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[2.9381,6.9634,3.0388,6.9634,3.0388,7.0736,2.9381,7.0736],\u0022confidence\u0022:0.553,\u0022state\u0022:\u0022unselected\u0022}]},{\u0022page\u0022:2,\u0022angle\u0022:0,\u0022width\u0022:8.5,\u0022height\u0022:11,\u0022unit\u0022:\u0022inch\u0022,\u0022lines\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,7.4833,1.0667,7.4833,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor #:121\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[6.1276,1.0667,6.8657,1.0667,6.8657,1.2403,6.1276,1.2403],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[6.9307,1.0759,7.4833,1.0759,7.4833,1.2391,6.9307,1.2391],\u0022text\u0022:\u0022#:121\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0044,2.1771,2.35,2.1771,2.35,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor Details:\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0044,2.1778,1.6496,2.1778,1.6496,2.3315,1.0044,2.3315],\u0022text\u0022:\u0022Vendor\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7239,2.1771,2.35,2.1771,2.35,2.3315,1.7239,2.3315],\u0022text\u0022:\u0022Details:\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,2.7686,3.3477,2.7686,3.3477,2.9128,1.0065,2.9128],\u0022text\u0022:\u0022Company Name: Southridge Video\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,2.7749,1.651,2.7749,1.651,2.9126,1.0065,2.9126],\u0022text\u0022:\u0022Company\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7019,2.7764,2.1376,2.7764,2.1376,2.885,1.7019,2.885],\u0022text\u0022:\u0022Name:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.1925,2.7686,2.9184,2.7686,2.9184,2.9128,2.1925,2.9128],\u0022text\u0022:\u0022Southridge\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.9691,2.7689,3.3477,2.7689,3.3477,2.8847,2.9691,2.8847],\u0022text\u0022:\u0022Video\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0065,3.0986,3.5766,3.0986,3.5766,3.2428,1.0065,3.2428],\u0022text\u0022:\u0022Contact: Jamie@southridgevideo.com\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0065,3.1049,1.5706,3.1049,1.5706,3.215,1.0065,3.215],\u0022text\u0022:\u0022Contact:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.6205,3.0986,3.5766,3.0986,3.5766,3.2428,1.6205,3.2428],\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0115,3.4296,2.6542,3.4296,2.6542,3.5744,1.0115,3.5744],\u0022text\u0022:\u0022Preferred Package: Gold\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0115,3.4296,1.6499,3.4296,1.6499,3.5467,1.0115,3.5467],\u0022text\u0022:\u0022Preferred\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.7092,3.4302,2.2978,3.4302,2.2978,3.5744,1.7092,3.5744],\u0022text\u0022:\u0022Package:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.3557,3.4302,2.6542,3.4302,2.6542,3.5463,2.3557,3.5463],\u0022text\u0022:\u0022Gold\u0022,\u0022confidence\u0022:1}]},{\u0022boundingBox\u0022:[1.0052,3.7537,2.4783,3.7537,2.4783,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special Requests: N/a\u0022,\u0022words\u0022:[{\u0022boundingBox\u0022:[1.0052,3.7602,1.475,3.7602,1.475,3.9043,1.0052,3.9043],\u0022text\u0022:\u0022Special\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[1.5342,3.7684,2.1899,3.7684,2.1899,3.9043,1.5342,3.9043],\u0022text\u0022:\u0022Requests:\u0022,\u0022confidence\u0022:1},{\u0022boundingBox\u0022:[2.254,3.7537,2.4783,3.7537,2.4783,3.8976,2.254,3.8976],\u0022text\u0022:\u0022N/a\u0022,\u0022confidence\u0022:1}]}],\u0022selectionMarks\u0022:[{\u0022boundingBox\u0022:[0.0024,9.869,1.0826,9.869,1.0826,10.9955,0.0024,10.9955],\u0022confidence\u0022:0.833,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[7.6562,1.0157,8.5,1.0157,8.5,2.8293,7.6562,2.8293],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022},{\u0022boundingBox\u0022:[0.0008,10.4758,1.8164,10.4758,1.8164,10.9978,0.0008,10.9978],\u0022confidence\u0022:0.6,\u0022state\u0022:\u0022unselected\u0022}]}],\u0022pageResults\u0022:[{\u0022page\u0022:1,\u0022tables\u0022:[{\u0022rows\u0022:20,\u0022columns\u0022:3,\u0022cells\u0022:[{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Package\u0022,\u0022boundingBox\u0022:[1.0033,4.6517,2.625,4.6517,2.625,4.8617,1.0033,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/10/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022Included\u0022,\u0022boundingBox\u0022:[2.625,4.6517,5.75,4.6517,5.75,4.8617,2.625,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/11/words/0\u0022]},{\u0022rowIndex\u0022:0,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022Price\u0022,\u0022boundingBox\u0022:[5.75,4.6517,7.4967,4.6517,7.4967,4.8617,5.75,4.8617],\u0022elements\u0022:[\u0022#/readResults/0/lines/12/words/0\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Gold Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,4.8617,2.625,4.8617,2.625,5.0833,1.0033,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/13/words/0\u0022,\u0022#/readResults/0/lines/13/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,4.8617,5.75,4.8617,5.75,5.0833,2.625,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/14/words/0\u0022,\u0022#/readResults/0/lines/15/words/0\u0022,\u0022#/readResults/0/lines/15/words/1\u0022]},{\u0022rowIndex\u0022:1,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,500\u0022,\u0022boundingBox\u0022:[5.75,4.8617,7.4967,4.8617,7.4967,5.0833,5.75,5.0833],\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},{\u0022rowIndex\u0022:2,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Pre-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,5.0833,5.75,5.0833,5.75,5.3056,2.625,5.3056],\u0022elements\u0022:[\u0022#/readResults/0/lines/17/words/0\u0022,\u0022#/readResults/0/lines/18/words/0\u0022,\u0022#/readResults/0/lines/18/words/1\u0022,\u0022#/readResults/0/lines/18/words/2\u0022]},{\u0022rowIndex\u0022:3,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,5.3056,5.75,5.3056,5.75,5.5139,2.625,5.5139],\u0022elements\u0022:[\u0022#/readResults/0/lines/19/words/0\u0022,\u0022#/readResults/0/lines/20/words/0\u0022,\u0022#/readResults/0/lines/20/words/1\u0022,\u0022#/readResults/0/lines/20/words/2\u0022]},{\u0022rowIndex\u0022:4,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,5.5139,5.75,5.5139,5.75,5.7361,2.625,5.7361],\u0022elements\u0022:[\u0022#/readResults/0/lines/21/words/0\u0022,\u0022#/readResults/0/lines/22/words/0\u0022,\u0022#/readResults/0/lines/22/words/1\u0022,\u0022#/readResults/0/lines/22/words/2\u0022,\u0022#/readResults/0/lines/22/words/3\u0022,\u0022#/readResults/0/lines/22/words/4\u0022,\u0022#/readResults/0/lines/22/words/5\u0022]},{\u0022rowIndex\u0022:5,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7\u0022,\u0022boundingBox\u0022:[2.625,5.7361,5.75,5.7361,5.75,5.93,2.625,5.93],\u0022elements\u0022:[\u0022#/readResults/0/lines/23/words/0\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Silver Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,5.93,2.625,5.93,2.625,6.1528,1.0033,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/24/words/0\u0022,\u0022#/readResults/0/lines/24/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,5.93,5.75,5.93,5.75,6.1528,2.625,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/25/words/0\u0022,\u0022#/readResults/0/lines/26/words/0\u0022,\u0022#/readResults/0/lines/26/words/1\u0022]},{\u0022rowIndex\u0022:6,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,200\u0022,\u0022boundingBox\u0022:[5.75,5.93,7.4967,5.93,7.4967,6.1528,5.75,6.1528],\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},{\u0022rowIndex\u0022:7,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Post-keynote thank you\u0022,\u0022boundingBox\u0022:[2.625,6.1528,5.75,6.1528,5.75,6.375,2.625,6.375],\u0022elements\u0022:[\u0022#/readResults/0/lines/28/words/0\u0022,\u0022#/readResults/0/lines/29/words/0\u0022,\u0022#/readResults/0/lines/29/words/1\u0022,\u0022#/readResults/0/lines/29/words/2\u0022]},{\u0022rowIndex\u0022:8,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,6.375,5.75,6.375,5.75,6.5833,2.625,6.5833],\u0022elements\u0022:[\u0022#/readResults/0/lines/30/words/0\u0022,\u0022#/readResults/0/lines/31/words/0\u0022,\u0022#/readResults/0/lines/31/words/1\u0022,\u0022#/readResults/0/lines/31/words/2\u0022]},{\u0022rowIndex\u0022:9,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Half page ad in program guide\u0022,\u0022boundingBox\u0022:[2.625,6.5833,5.75,6.5833,5.75,6.7867,2.625,6.7867],\u0022elements\u0022:[\u0022#/readResults/0/lines/32/words/0\u0022,\u0022#/readResults/0/lines/33/words/0\u0022,\u0022#/readResults/0/lines/33/words/1\u0022,\u0022#/readResults/0/lines/33/words/2\u0022,\u0022#/readResults/0/lines/33/words/3\u0022,\u0022#/readResults/0/lines/33/words/4\u0022,\u0022#/readResults/0/lines/33/words/5\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Bronze Sponsor\u0022,\u0022boundingBox\u0022:[1.0033,6.7867,2.625,6.7867,2.625,7.0139,1.0033,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/34/words/0\u0022,\u0022#/readResults/0/lines/34/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,6.7867,5.75,6.7867,5.75,7.0139,2.625,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/35/words/0\u0022,\u0022#/readResults/0/lines/36/words/0\u0022,\u0022#/readResults/0/lines/36/words/1\u0022]},{\u0022rowIndex\u0022:10,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$1,000\u0022,\u0022boundingBox\u0022:[5.75,6.7867,7.4967,6.7867,7.4967,7.0139,5.75,7.0139],\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},{\u0022rowIndex\u0022:11,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Logo on poster\u0022,\u0022boundingBox\u0022:[2.625,7.0139,5.75,7.0139,5.75,7.2222,2.625,7.2222],\u0022elements\u0022:[\u0022#/readResults/0/lines/38/words/0\u0022,\u0022#/readResults/0/lines/39/words/0\u0022,\u0022#/readResults/0/lines/39/words/1\u0022,\u0022#/readResults/0/lines/39/words/2\u0022]},{\u0022rowIndex\u0022:12,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.2222,5.75,7.2222,5.75,7.4306,2.625,7.4306],\u0022elements\u0022:[\u0022#/readResults/0/lines/40/words/0\u0022,\u0022#/readResults/0/lines/41/words/0\u0022,\u0022#/readResults/0/lines/41/words/1\u0022,\u0022#/readResults/0/lines/41/words/2\u0022,\u0022#/readResults/0/lines/41/words/3\u0022,\u0022#/readResults/0/lines/41/words/4\u0022]},{\u0022rowIndex\u0022:13,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,7.4306,5.75,7.4306,5.75,7.635,2.625,7.635],\u0022elements\u0022:[\u0022#/readResults/0/lines/42/words/0\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Full Booth\u0022,\u0022boundingBox\u0022:[1.0033,7.635,2.625,7.635,2.625,7.8611,1.0033,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/43/words/0\u0022,\u0022#/readResults/0/lines/43/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,7.635,5.75,7.635,5.75,7.8611,2.625,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/44/words/0\u0022,\u0022#/readResults/0/lines/45/words/0\u0022,\u0022#/readResults/0/lines/45/words/1\u0022]},{\u0022rowIndex\u0022:14,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$600\u0022,\u0022boundingBox\u0022:[5.75,7.635,7.4967,7.635,7.4967,7.8611,5.75,7.8611],\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},{\u0022rowIndex\u0022:15,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 50% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,7.8611,5.75,7.8611,5.75,8.0694,2.625,8.0694],\u0022elements\u0022:[\u0022#/readResults/0/lines/47/words/0\u0022,\u0022#/readResults/0/lines/48/words/0\u0022,\u0022#/readResults/0/lines/48/words/1\u0022,\u0022#/readResults/0/lines/48/words/2\u0022,\u0022#/readResults/0/lines/48/words/3\u0022,\u0022#/readResults/0/lines/48/words/4\u0022]},{\u0022rowIndex\u0022:16,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.0694,5.75,8.0694,5.75,8.27,2.625,8.27],\u0022elements\u0022:[\u0022#/readResults/0/lines/49/words/0\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:0,\u0022text\u0022:\u0022Half Booth\u0022,\u0022boundingBox\u0022:[1.0033,8.27,2.625,8.27,2.625,8.4861,1.0033,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/50/words/0\u0022,\u0022#/readResults/0/lines/50/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 Full booth\u0022,\u0022boundingBox\u0022:[2.625,8.27,5.75,8.27,5.75,8.4861,2.625,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/51/words/0\u0022,\u0022#/readResults/0/lines/52/words/0\u0022,\u0022#/readResults/0/lines/52/words/1\u0022]},{\u0022rowIndex\u0022:17,\u0022columnIndex\u0022:2,\u0022text\u0022:\u0022$350\u0022,\u0022boundingBox\u0022:[5.75,8.27,7.4967,8.27,7.4967,8.4861,5.75,8.4861],\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},{\u0022rowIndex\u0022:18,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022\uF0B7 25% discount on program guide\u0022,\u0022boundingBox\u0022:[2.625,8.4861,5.75,8.4861,5.75,8.7083,2.625,8.7083],\u0022elements\u0022:[\u0022#/readResults/0/lines/54/words/0\u0022,\u0022#/readResults/0/lines/55/words/0\u0022,\u0022#/readResults/0/lines/55/words/1\u0022,\u0022#/readResults/0/lines/55/words/2\u0022,\u0022#/readResults/0/lines/55/words/3\u0022,\u0022#/readResults/0/lines/55/words/4\u0022]},{\u0022rowIndex\u0022:19,\u0022columnIndex\u0022:1,\u0022text\u0022:\u0022advertisements\u0022,\u0022boundingBox\u0022:[2.625,8.7083,5.75,8.7083,5.75,8.905,2.625,8.905],\u0022elements\u0022:[\u0022#/readResults/0/lines/56/words/0\u0022]}]}]},{\u0022page\u0022:2,\u0022tables\u0022:[]}],\u0022documentResults\u0022:[{\u0022docType\u0022:\u0022custom:2bc78fbd-8f5c-40e4-82a4-9d4d44316050\u0022,\u0022modelId\u0022:\u00222bc78fbd-8f5c-40e4-82a4-9d4d44316050\u0022,\u0022pageRange\u0022:[1,2],\u0022fields\u0022:{\u0022CompanyName\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Southridge Video\u0022,\u0022text\u0022:\u0022Southridge Video\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[2.19,2.77,3.35,2.77,3.35,2.915,2.19,2.915],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/2/words/2\u0022,\u0022#/readResults/1/lines/2/words/3\u0022]},\u0022Half\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$350\u0022,\u0022text\u0022:\u0022$350\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,8.305,6.16,8.305,6.16,8.45,5.835,8.45],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/53/words/0\u0022]},\u0022Bronze\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,000\u0022,\u0022text\u0022:\u0022$1,000\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,6.825,6.285,6.825,6.285,6.97,5.835,6.97],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/37/words/0\u0022]},\u0022Gold\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,500\u0022,\u0022text\u0022:\u0022$1,500\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,4.9,6.285,4.9,6.285,5.045,5.835,5.045],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/16/words/0\u0022]},\u0022Full\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$600\u0022,\u0022text\u0022:\u0022$600\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,7.67,6.16,7.67,6.16,7.815,5.835,7.815],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/46/words/0\u0022]},\u0022Silver\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022$1,200\u0022,\u0022text\u0022:\u0022$1,200\u0022,\u0022page\u0022:1,\u0022boundingBox\u0022:[5.835,5.97,6.285,5.97,6.285,6.115,5.835,6.115],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/0/lines/27/words/0\u0022]},\u0022Contact\u0022:{\u0022type\u0022:\u0022string\u0022,\u0022valueString\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022text\u0022:\u0022Jamie@southridgevideo.com\u0022,\u0022page\u0022:2,\u0022boundingBox\u0022:[1.62,3.1,3.575,3.1,3.575,3.245,1.62,3.245],\u0022confidence\u0022:1.0,\u0022elements\u0022:[\u0022#/readResults/1/lines/3/words/1\u0022]}},\u0022docTypeConfidence\u0022:1.0}],\u0022errors\u0022:[]}}" }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/588c1f7e-ec05-45dc-90cf-da133fb7ed10", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2bc78fbd-8f5c-40e4-82a4-9d4d44316050", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dc7340672e1444499c592ecc153b7067-e5af2efeb38d134a-00", + "traceparent": "00-40b3bfcceb53ff49a14ab53a4f57145c-64bc1f8cea46ac4a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "816e57666fbf08e1b5145687a66730de", + "x-ms-client-request-id": "d041cf66d363ab90d4e326f6dc6ffd5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "c8efd5de-29aa-4dd2-b0fa-d9ea8adc139a", + "apim-request-id": "c84f8775-1b29-474a-b748-755cf2dd7352", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:36:31 GMT", + "Date": "Fri, 30 Oct 2020 12:59:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": [] } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_MULTIPAGE_BLOB_CONTAINER_SAS_URL": "https://azuresdktrainingdata.blob.core.windows.net/multipage-vendor-forms?sp=rl\u0026st=2020-06-25T04:55:22Z\u0026se=2021-06-26T04:55:00Z\u0026sv=2019-10-10\u0026sr=c\u0026sig=Z25JFTIsP3tbxDjHP2CK05HxIS9uz1E%2FDaRfjeEUyaU%3D", "RandomSeed": "1101840301" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(False).json index a9d7fc33b7ade..c46b2cc7c08f0 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b737d12ad1b6ab4b89bc1700bd7bc4e0-43da2e62dbedd444-00", + "traceparent": "00-cd0525795b8be14c85dc4c0a54ad6d22-871dd4d3e3b4bb4b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "80161b84cf3a2c46e4bde6cd52de6834", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "a7faa7f3-4ab2-4e92-8ccf-51897da577f0", + "apim-request-id": "ff84cce3-f527-4ebd-9dc8-77fef41d5108", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:31:26 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648", + "Date": "Fri, 30 Oct 2020 12:54:02 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cbe4fa1b-9e50-49b1-b469-da1f85764674", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "255" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cbe4fa1b-9e50-49b1-b469-da1f85764674?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "07d63e81b52617bbc701c4ee9eb7fde9", "x-ms-return-client-request-id": "true" @@ -48,9 +48,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50c319c4-b686-4686-b9f5-9ee7d7e2e880", + "apim-request-id": "ce624964-bb83-4028-918d-6f96b02ee09e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:26 GMT", + "Date": "Fri, 30 Oct 2020 12:54:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,22 +58,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "4a918c49-5b19-4267-873a-9bcf95f06648", + "modelId": "cbe4fa1b-9e50-49b1-b469-da1f85764674", "status": "creating", - "createdDateTime": "2020-09-09T22:31:26Z", - "lastUpdatedDateTime": "2020-09-09T22:31:26Z" + "createdDateTime": "2020-10-30T12:54:02Z", + "lastUpdatedDateTime": "2020-10-30T12:54:02Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cbe4fa1b-9e50-49b1-b469-da1f85764674?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7c8b6b42f9b3a01b195b4a92de899361", "x-ms-return-client-request-id": "true" @@ -81,56 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b08cb862-0a06-4489-95c9-b1ab6ba6d3e7", + "apim-request-id": "8589e2f5-a5bb-4ffb-9dc2-076168529593", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:27 GMT", + "Date": "Fri, 30 Oct 2020 12:54:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "modelInfo": { - "modelId": "4a918c49-5b19-4267-873a-9bcf95f06648", - "status": "creating", - "createdDateTime": "2020-09-09T22:31:26Z", - "lastUpdatedDateTime": "2020-09-09T22:31:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3191a1c36c80cfda5ffeb8380a588e2d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "48d7cc15-35ac-4777-942c-494617b8d85d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "4a918c49-5b19-4267-873a-9bcf95f06648", + "modelId": "cbe4fa1b-9e50-49b1-b469-da1f85764674", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:31:26Z", - "lastUpdatedDateTime": "2020-09-09T22:31:28Z" + "createdDateTime": "2020-10-30T12:54:02Z", + "lastUpdatedDateTime": "2020-10-30T12:54:04Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,19 +195,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cbe4fa1b-9e50-49b1-b469-da1f85764674/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f7d9fc8b60b88943af4f68ab027e929b-8bce87ef63f72d43-00", + "traceparent": "00-efa60ee0d9fc06438ecc6477f88f0429-f5999c3ad91e4348-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e68bfcc0eb5388802235edcb6b29393e", + "x-ms-client-request-id": "3191a1c36c80cfda5ffeb8380a588e2d", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -248,254 +215,224 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "01d40022-5dd6-4cd6-afb9-c15437ffc635", + "apim-request-id": "01c918d2-ac20-405a-85fb-25dd33f0e585", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:31:28 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648/analyzeresults/a23bef33-f898-4f13-9a62-87f6e43f1431", + "Date": "Fri, 30 Oct 2020 12:54:03 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/cbe4fa1b-9e50-49b1-b469-da1f85764674/analyzeresults/33d9b3a9-1780-45f6-a59a-2ba999af8350", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "71" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648/analyzeResults/a23bef33-f898-4f13-9a62-87f6e43f1431", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cbe4fa1b-9e50-49b1-b469-da1f85764674/analyzeResults/33d9b3a9-1780-45f6-a59a-2ba999af8350", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "fc2b626ecc25d56990bc1cb440e295c1", + "x-ms-client-request-id": "e68bfcc0eb5388802235edcb6b29393e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5ccf055d-0719-42e2-8cad-4c4a4c672806", + "apim-request-id": "614dbd94-8e00-4b35-8db7-e496da4b1012", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:28 GMT", + "Date": "Fri, 30 Oct 2020 12:54:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:28Z", - "lastUpdatedDateTime": "2020-09-09T22:31:28Z" + "createdDateTime": "2020-10-30T12:54:04Z", + "lastUpdatedDateTime": "2020-10-30T12:54:04Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648/analyzeResults/a23bef33-f898-4f13-9a62-87f6e43f1431", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cbe4fa1b-9e50-49b1-b469-da1f85764674/analyzeResults/33d9b3a9-1780-45f6-a59a-2ba999af8350", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e1d21cccacfed70e20090e4a7f0f6336", + "x-ms-client-request-id": "fc2b626ecc25d56990bc1cb440e295c1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8716b10f-e68a-46d5-b844-45779fd8bf90", + "apim-request-id": "51822bd3-210f-4d3b-9b1c-2e2c7faf1d91", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:29 GMT", + "Date": "Fri, 30 Oct 2020 12:54:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:28Z", - "lastUpdatedDateTime": "2020-09-09T22:31:29Z" + "createdDateTime": "2020-10-30T12:54:04Z", + "lastUpdatedDateTime": "2020-10-30T12:54:05Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648/analyzeResults/a23bef33-f898-4f13-9a62-87f6e43f1431", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cbe4fa1b-9e50-49b1-b469-da1f85764674/analyzeResults/33d9b3a9-1780-45f6-a59a-2ba999af8350", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a8c97ac5912df40893b55696cfcb4740", + "x-ms-client-request-id": "e1d21cccacfed70e20090e4a7f0f6336", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c61332b6-9521-4432-aebe-a80ffd0c619c", + "apim-request-id": "fb1b1da1-3a1f-495f-bec1-022bf88398c1", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:30 GMT", + "Date": "Fri, 30 Oct 2020 12:54:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:28Z", - "lastUpdatedDateTime": "2020-09-09T22:31:29Z" + "createdDateTime": "2020-10-30T12:54:04Z", + "lastUpdatedDateTime": "2020-10-30T12:54:05Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648/analyzeResults/a23bef33-f898-4f13-9a62-87f6e43f1431", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cbe4fa1b-9e50-49b1-b469-da1f85764674/analyzeResults/33d9b3a9-1780-45f6-a59a-2ba999af8350", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4efe2b9f5757c23f5453dc1bbd1e5681", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f0293b9b-4b8a-4184-8ef9-68cde56c4d5e", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:31 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:28Z", - "lastUpdatedDateTime": "2020-09-09T22:31:29Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648/analyzeResults/a23bef33-f898-4f13-9a62-87f6e43f1431", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c6efe658ed193a9314dd4e4955780754", + "x-ms-client-request-id": "a8c97ac5912df40893b55696cfcb4740", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c5b5805f-5656-48e3-aaae-e784106705e9", + "apim-request-id": "d3c7fe68-5e05-4f32-97b6-b03405149539", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:32 GMT", + "Date": "Fri, 30 Oct 2020 12:54:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:28Z", - "lastUpdatedDateTime": "2020-09-09T22:31:32Z" + "createdDateTime": "2020-10-30T12:54:04Z", + "lastUpdatedDateTime": "2020-10-30T12:54:08Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648/analyzeResults/a23bef33-f898-4f13-9a62-87f6e43f1431", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cbe4fa1b-9e50-49b1-b469-da1f85764674/analyzeResults/33d9b3a9-1780-45f6-a59a-2ba999af8350", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "53aacec215106ddf3a0753d9b5ec3674", + "x-ms-client-request-id": "4efe2b9f5757c23f5453dc1bbd1e5681", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bd834c1a-6aef-452f-916d-41029fd2a8ae", + "apim-request-id": "1aa0e064-e7a8-4016-b372-972148622578", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:33 GMT", + "Date": "Fri, 30 Oct 2020 12:54:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:28Z", - "lastUpdatedDateTime": "2020-09-09T22:31:32Z" + "createdDateTime": "2020-10-30T12:54:04Z", + "lastUpdatedDateTime": "2020-10-30T12:54:08Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648/analyzeResults/a23bef33-f898-4f13-9a62-87f6e43f1431", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cbe4fa1b-9e50-49b1-b469-da1f85764674/analyzeResults/33d9b3a9-1780-45f6-a59a-2ba999af8350", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e93dd55e81dcb22698c43a7909f66cdc", + "x-ms-client-request-id": "c6efe658ed193a9314dd4e4955780754", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "98c92c52-fed4-4766-91f9-387bc675822d", + "apim-request-id": "1cef7dca-09b7-4a14-81f0-e39604d99592", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:34 GMT", + "Date": "Fri, 30 Oct 2020 12:54:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:28Z", - "lastUpdatedDateTime": "2020-09-09T22:31:32Z" + "createdDateTime": "2020-10-30T12:54:04Z", + "lastUpdatedDateTime": "2020-10-30T12:54:08Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648/analyzeResults/a23bef33-f898-4f13-9a62-87f6e43f1431", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cbe4fa1b-9e50-49b1-b469-da1f85764674/analyzeResults/33d9b3a9-1780-45f6-a59a-2ba999af8350", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ef59874b0274437007818b1199ba8527", + "x-ms-client-request-id": "53aacec215106ddf3a0753d9b5ec3674", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e1e1d0c-1e27-47ea-9e1b-917ca65276c3", + "apim-request-id": "ca641a13-b6e3-4c4e-a5ae-c2c5cc9a9b0f", "Content-Length": "30845", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:35 GMT", + "Date": "Fri, 30 Oct 2020 12:54:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:31:28Z", - "lastUpdatedDateTime": "2020-09-09T22:31:35Z", + "createdDateTime": "2020-10-30T12:54:04Z", + "lastUpdatedDateTime": "2020-10-30T12:54:11Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -4260,13 +4197,54 @@ ], "documentResults": [ { - "docType": "custom:4a918c49-5b19-4267-873a-9bcf95f06648", - "modelId": "4a918c49-5b19-4267-873a-9bcf95f06648", + "docType": "custom:cbe4fa1b-9e50-49b1-b469-da1f85764674", + "modelId": "cbe4fa1b-9e50-49b1-b469-da1f85764674", "pageRange": [ 1, 3 ], "fields": { + "CompanyAddress": { + "type": "string", + "valueString": "G", + "text": "G", + "page": 1, + "boundingBox": [ + 1.09, + 4.475, + 1.175, + 4.475, + 1.175, + 4.585, + 1.09, + 4.585 + ], + "confidence": 0.297, + "elements": [ + "#/readResults/0/lines/31/words/0" + ] + }, + "Merchant": { + "type": "string", + "valueString": "Invoice For:", + "text": "Invoice For:", + "page": 1, + "boundingBox": [ + 6.02, + 1.065, + 7.035, + 1.065, + 7.035, + 1.21, + 6.02, + 1.21 + ], + "confidence": 0.16, + "elements": [ + "#/readResults/0/lines/1/words/0", + "#/readResults/0/lines/1/words/1" + ] + }, "PurchaseOrderNumber": { "type": "string", "valueString": "100.99", @@ -4287,26 +4265,6 @@ "#/readResults/2/lines/15/words/0" ] }, - "CompanyPhoneNumber": { - "type": "string", - "valueString": "22.00", - "text": "22.00", - "page": 1, - "boundingBox": [ - 5.42, - 4.475, - 5.78, - 4.475, - 5.78, - 4.585, - 5.42, - 4.585 - ], - "confidence": 0.296, - "elements": [ - "#/readResults/0/lines/33/words/0" - ] - }, "Signature": { "type": "string", "valueString": "Signature:", @@ -4327,68 +4285,24 @@ "#/readResults/0/lines/38/words/0" ] }, - "Email": { - "type": "string", - "valueString": "Company A Invoice", - "text": "Company A Invoice", - "page": 1, - "boundingBox": [ - 0.885, - 1.12, - 2.38, - 1.12, - 2.38, - 1.28, - 0.885, - 1.28 - ], - "confidence": 0.138, - "elements": [ - "#/readResults/0/lines/0/words/0", - "#/readResults/0/lines/0/words/1", - "#/readResults/0/lines/0/words/2" - ] - }, - "CompanyName": { - "type": "string", - "valueString": "Bilbo Baggins", - "text": "Bilbo Baggins", - "page": 1, - "boundingBox": [ - 2.05, - 6.655, - 3.04, - 6.655, - 3.04, - 6.8, - 2.05, - 6.8 - ], - "confidence": 0.198, - "elements": [ - "#/readResults/0/lines/38/words/1", - "#/readResults/0/lines/38/words/2" - ] - }, - "Merchant": { + "CompanyPhoneNumber": { "type": "string", - "valueString": "Invoice For:", - "text": "Invoice For:", + "valueString": "22.00", + "text": "22.00", "page": 1, "boundingBox": [ - 6.02, - 1.065, - 7.035, - 1.065, - 7.035, - 1.21, - 6.02, - 1.21 + 5.42, + 4.475, + 5.78, + 4.475, + 5.78, + 4.585, + 5.42, + 4.585 ], - "confidence": 0.16, + "confidence": 0.296, "elements": [ - "#/readResults/0/lines/1/words/0", - "#/readResults/0/lines/1/words/1" + "#/readResults/0/lines/33/words/0" ] }, "Website": { @@ -4411,24 +4325,26 @@ "#/readResults/0/lines/9/words/0" ] }, - "CompanyAddress": { + "Email": { "type": "string", - "valueString": "G", - "text": "G", + "valueString": "Company A Invoice", + "text": "Company A Invoice", "page": 1, "boundingBox": [ - 1.09, - 4.475, - 1.175, - 4.475, - 1.175, - 4.585, - 1.09, - 4.585 + 0.885, + 1.12, + 2.38, + 1.12, + 2.38, + 1.28, + 0.885, + 1.28 ], - "confidence": 0.297, + "confidence": 0.138, "elements": [ - "#/readResults/0/lines/31/words/0" + "#/readResults/0/lines/0/words/0", + "#/readResults/0/lines/0/words/1", + "#/readResults/0/lines/0/words/2" ] }, "VendorName": { @@ -4451,6 +4367,27 @@ "#/readResults/0/lines/16/words/0" ] }, + "CompanyName": { + "type": "string", + "valueString": "Bilbo Baggins", + "text": "Bilbo Baggins", + "page": 1, + "boundingBox": [ + 2.05, + 6.655, + 3.04, + 6.655, + 3.04, + 6.8, + 2.05, + 6.8 + ], + "confidence": 0.198, + "elements": [ + "#/readResults/0/lines/38/words/1", + "#/readResults/0/lines/38/words/2" + ] + }, "DatedAs": null, "PhoneNumber": null, "Quantity": null, @@ -4466,28 +4403,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4a918c49-5b19-4267-873a-9bcf95f06648", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cbe4fa1b-9e50-49b1-b469-da1f85764674", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c11143b47afddc438543758f794161a3-bfacba881ad3864a-00", + "traceparent": "00-19f7734567bc8d4e8a08761e3b435544-c1415fad1a6ba849-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "80eadaa71e3a4078a7f8bb4cdb656444", + "x-ms-client-request-id": "e93dd55e81dcb22698c43a7909f66cdc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "48e54474-26c3-45ea-bd58-b3c56964a335", + "apim-request-id": "98f1489b-66be-440e-a04a-167be975f839", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:31:35 GMT", + "Date": "Fri, 30 Oct 2020 12:54:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "165" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": [] } @@ -4495,7 +4432,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1253358472" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(False)Async.json index b699a5e3760d3..2e85bb9f30534 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e21bf1f06c9ad34cb0e7d2385cd9f7cf-898770852e6a5b41-00", + "traceparent": "00-c1de0d860e30c1498263128d3d398f37-73f3bee0c2956543-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1c73297b76f14bbe8547f6b93efca427", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "abc398a2-f32c-43fd-862e-b41b63be290c", + "apim-request-id": "75ec5616-dfee-448d-940a-65cf739a5b7a", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:36:54 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009", + "Date": "Fri, 30 Oct 2020 13:00:20 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4e1678ae-7344-4142-af19-cfd9cafb0a07", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "220" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4e1678ae-7344-4142-af19-cfd9cafb0a07?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c1406b49f914fcb2e509baefc95d6f35", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "18b92b21-aa2a-4a35-af49-9969c8e9b609", + "apim-request-id": "6fd28bbd-206e-498a-92b7-ddc8cf5ec1f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:54 GMT", + "Date": "Fri, 30 Oct 2020 13:00:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "737b93ce-4abb-4d84-b508-87298bba6009", + "modelId": "4e1678ae-7344-4142-af19-cfd9cafb0a07", "status": "creating", - "createdDateTime": "2020-09-09T22:36:55Z", - "lastUpdatedDateTime": "2020-09-09T22:36:55Z" + "createdDateTime": "2020-10-30T13:00:21Z", + "lastUpdatedDateTime": "2020-10-30T13:00:21Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4e1678ae-7344-4142-af19-cfd9cafb0a07?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d396cb49d6f16d641edf837df0c544bf", "x-ms-return-client-request-id": "true" @@ -81,56 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "22eb6b56-b766-4fee-9f9d-928485e79e18", + "apim-request-id": "de4e9e35-cec2-4cdf-b9a3-f994e3aecb55", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:56 GMT", + "Date": "Fri, 30 Oct 2020 13:00:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "modelInfo": { - "modelId": "737b93ce-4abb-4d84-b508-87298bba6009", - "status": "creating", - "createdDateTime": "2020-09-09T22:36:55Z", - "lastUpdatedDateTime": "2020-09-09T22:36:55Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ae4ec08751e88266777736e7bbce8128", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2e048fd1-f9a6-46e6-82f1-0e689cff1623", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "737b93ce-4abb-4d84-b508-87298bba6009", + "modelId": "4e1678ae-7344-4142-af19-cfd9cafb0a07", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:36:55Z", - "lastUpdatedDateTime": "2020-09-09T22:36:56Z" + "createdDateTime": "2020-10-30T13:00:21Z", + "lastUpdatedDateTime": "2020-10-30T13:00:22Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,19 +195,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4e1678ae-7344-4142-af19-cfd9cafb0a07/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2b622ec70002cf46bf790070b8bab34e-f87df842a0342c42-00", + "traceparent": "00-b51a46bd2104b24e9f125bc343ee4299-764d0b4e87a2b046-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "726fc1d7d066733606d3a33575350b20", + "x-ms-client-request-id": "ae4ec08751e88266777736e7bbce8128", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -248,254 +215,224 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b21cc2f2-4422-4a00-a074-41d98996f100", + "apim-request-id": "330d0e1d-b0bb-4197-bf06-59e42bf240bb", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:36:57 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009/analyzeresults/94dc8388-9425-459a-827b-0efaaafb77d0", + "Date": "Fri, 30 Oct 2020 13:00:22 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4e1678ae-7344-4142-af19-cfd9cafb0a07/analyzeresults/f0bdf1c2-fd39-4552-bd75-432199f4db42", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "110" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009/analyzeResults/94dc8388-9425-459a-827b-0efaaafb77d0", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4e1678ae-7344-4142-af19-cfd9cafb0a07/analyzeResults/f0bdf1c2-fd39-4552-bd75-432199f4db42", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0968fbc5c10ff84d64135c799f7cb14f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "930a0564-b24d-4f74-8b0a-dda03bd087dd", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:57Z", - "lastUpdatedDateTime": "2020-09-09T22:36:57Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009/analyzeResults/94dc8388-9425-459a-827b-0efaaafb77d0", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2fa55b5dd156b75889daa714ad310d42", + "x-ms-client-request-id": "726fc1d7d066733606d3a33575350b20", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5767888c-f633-4f08-b933-68f2e32dcd38", + "apim-request-id": "b6573b12-19bd-480d-aef7-c6c80415a686", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:58 GMT", + "Date": "Fri, 30 Oct 2020 13:00:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:57Z", - "lastUpdatedDateTime": "2020-09-09T22:36:57Z" + "createdDateTime": "2020-10-30T13:00:23Z", + "lastUpdatedDateTime": "2020-10-30T13:00:23Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009/analyzeResults/94dc8388-9425-459a-827b-0efaaafb77d0", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4e1678ae-7344-4142-af19-cfd9cafb0a07/analyzeResults/f0bdf1c2-fd39-4552-bd75-432199f4db42", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "bf22166c7866161974760e5374bdd38a", + "x-ms-client-request-id": "0968fbc5c10ff84d64135c799f7cb14f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "842177d3-740d-43e4-93f3-a9ed3e540bb3", + "apim-request-id": "49783eb8-65cc-4861-8c22-7bd38ffda463", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:59 GMT", + "Date": "Fri, 30 Oct 2020 13:00:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:57Z", - "lastUpdatedDateTime": "2020-09-09T22:36:57Z" + "createdDateTime": "2020-10-30T13:00:23Z", + "lastUpdatedDateTime": "2020-10-30T13:00:23Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009/analyzeResults/94dc8388-9425-459a-827b-0efaaafb77d0", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4e1678ae-7344-4142-af19-cfd9cafb0a07/analyzeResults/f0bdf1c2-fd39-4552-bd75-432199f4db42", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1ad85421dc8ff4c9a2b17f3419384a33", + "x-ms-client-request-id": "2fa55b5dd156b75889daa714ad310d42", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b4bbdac7-c26d-49cb-b60d-1a730e166167", + "apim-request-id": "109502cf-85ee-403a-8e16-38d3d8cf7214", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:00 GMT", + "Date": "Fri, 30 Oct 2020 13:00:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "198" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:57Z", - "lastUpdatedDateTime": "2020-09-09T22:36:57Z" + "createdDateTime": "2020-10-30T13:00:23Z", + "lastUpdatedDateTime": "2020-10-30T13:00:23Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009/analyzeResults/94dc8388-9425-459a-827b-0efaaafb77d0", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4e1678ae-7344-4142-af19-cfd9cafb0a07/analyzeResults/f0bdf1c2-fd39-4552-bd75-432199f4db42", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "890c1905f25ae4e8418ebadfc30542cc", + "x-ms-client-request-id": "bf22166c7866161974760e5374bdd38a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12ed20b1-9704-4558-b9d7-307370acdccc", + "apim-request-id": "4a2089c3-c78d-4f50-a748-568dc86881e0", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:01 GMT", + "Date": "Fri, 30 Oct 2020 13:00:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:57Z", - "lastUpdatedDateTime": "2020-09-09T22:37:00Z" + "createdDateTime": "2020-10-30T13:00:23Z", + "lastUpdatedDateTime": "2020-10-30T13:00:23Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009/analyzeResults/94dc8388-9425-459a-827b-0efaaafb77d0", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4e1678ae-7344-4142-af19-cfd9cafb0a07/analyzeResults/f0bdf1c2-fd39-4552-bd75-432199f4db42", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "59f31d07f35890b24c2e1db5f9e5fc3c", + "x-ms-client-request-id": "1ad85421dc8ff4c9a2b17f3419384a33", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce119d3d-553e-471e-b402-36bae901c526", + "apim-request-id": "b4050ddf-f610-487a-8e6d-02e9fd3347e1", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:02 GMT", + "Date": "Fri, 30 Oct 2020 13:00:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:57Z", - "lastUpdatedDateTime": "2020-09-09T22:37:00Z" + "createdDateTime": "2020-10-30T13:00:23Z", + "lastUpdatedDateTime": "2020-10-30T13:00:27Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009/analyzeResults/94dc8388-9425-459a-827b-0efaaafb77d0", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4e1678ae-7344-4142-af19-cfd9cafb0a07/analyzeResults/f0bdf1c2-fd39-4552-bd75-432199f4db42", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5a4eda2c49b02f2f6bf3d80021ea319d", + "x-ms-client-request-id": "890c1905f25ae4e8418ebadfc30542cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd3d0d0c-2ff2-4393-8dd0-db9c63cc90cc", + "apim-request-id": "fea374dd-1940-40b6-a0a4-8deb3f4cbed0", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:03 GMT", + "Date": "Fri, 30 Oct 2020 13:00:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:57Z", - "lastUpdatedDateTime": "2020-09-09T22:37:00Z" + "createdDateTime": "2020-10-30T13:00:23Z", + "lastUpdatedDateTime": "2020-10-30T13:00:27Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009/analyzeResults/94dc8388-9425-459a-827b-0efaaafb77d0", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4e1678ae-7344-4142-af19-cfd9cafb0a07/analyzeResults/f0bdf1c2-fd39-4552-bd75-432199f4db42", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "fc2cb26ef14411da677c3c2cd532eb5b", + "x-ms-client-request-id": "59f31d07f35890b24c2e1db5f9e5fc3c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "468bb4c7-c8b7-4da2-9db9-522da661ffe1", + "apim-request-id": "a21819dd-5c52-464c-8bfc-3f1ab0c3624c", "Content-Length": "30845", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:04 GMT", + "Date": "Fri, 30 Oct 2020 13:00:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:36:57Z", - "lastUpdatedDateTime": "2020-09-09T22:37:04Z", + "createdDateTime": "2020-10-30T13:00:23Z", + "lastUpdatedDateTime": "2020-10-30T13:00:30Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -4260,31 +4197,51 @@ ], "documentResults": [ { - "docType": "custom:737b93ce-4abb-4d84-b508-87298bba6009", - "modelId": "737b93ce-4abb-4d84-b508-87298bba6009", + "docType": "custom:4e1678ae-7344-4142-af19-cfd9cafb0a07", + "modelId": "4e1678ae-7344-4142-af19-cfd9cafb0a07", "pageRange": [ 1, 3 ], "fields": { - "Website": { + "PurchaseOrderNumber": { "type": "string", - "valueString": "555-555-5555", - "text": "555-555-5555", + "valueString": "100.99", + "text": "100.99", + "page": 3, + "boundingBox": [ + 5.425, + 3.21, + 5.86, + 3.21, + 5.86, + 3.32, + 5.425, + 3.32 + ], + "confidence": 0.127, + "elements": [ + "#/readResults/2/lines/15/words/0" + ] + }, + "CompanyAddress": { + "type": "string", + "valueString": "G", + "text": "G", "page": 1, "boundingBox": [ - 0.885, - 2.29, - 1.81, - 2.29, - 1.81, - 2.395, - 0.885, - 2.395 + 1.09, + 4.475, + 1.175, + 4.475, + 1.175, + 4.585, + 1.09, + 4.585 ], - "confidence": 0.126, + "confidence": 0.297, "elements": [ - "#/readResults/0/lines/9/words/0" + "#/readResults/0/lines/31/words/0" ] }, "Merchant": { @@ -4308,24 +4265,25 @@ "#/readResults/0/lines/1/words/1" ] }, - "PurchaseOrderNumber": { + "CompanyName": { "type": "string", - "valueString": "100.99", - "text": "100.99", - "page": 3, + "valueString": "Bilbo Baggins", + "text": "Bilbo Baggins", + "page": 1, "boundingBox": [ - 5.425, - 3.21, - 5.86, - 3.21, - 5.86, - 3.32, - 5.425, - 3.32 + 2.05, + 6.655, + 3.04, + 6.655, + 3.04, + 6.8, + 2.05, + 6.8 ], - "confidence": 0.127, + "confidence": 0.198, "elements": [ - "#/readResults/2/lines/15/words/0" + "#/readResults/0/lines/38/words/1", + "#/readResults/0/lines/38/words/2" ] }, "CompanyPhoneNumber": { @@ -4348,6 +4306,26 @@ "#/readResults/0/lines/33/words/0" ] }, + "VendorName": { + "type": "string", + "valueString": "B", + "text": "B", + "page": 1, + "boundingBox": [ + 1.095, + 3.425, + 1.165, + 3.425, + 1.165, + 3.53, + 1.095, + 3.53 + ], + "confidence": 0.157, + "elements": [ + "#/readResults/0/lines/16/words/0" + ] + }, "Signature": { "type": "string", "valueString": "Signature:", @@ -4390,65 +4368,24 @@ "#/readResults/0/lines/0/words/2" ] }, - "CompanyAddress": { - "type": "string", - "valueString": "G", - "text": "G", - "page": 1, - "boundingBox": [ - 1.09, - 4.475, - 1.175, - 4.475, - 1.175, - 4.585, - 1.09, - 4.585 - ], - "confidence": 0.297, - "elements": [ - "#/readResults/0/lines/31/words/0" - ] - }, - "CompanyName": { - "type": "string", - "valueString": "Bilbo Baggins", - "text": "Bilbo Baggins", - "page": 1, - "boundingBox": [ - 2.05, - 6.655, - 3.04, - 6.655, - 3.04, - 6.8, - 2.05, - 6.8 - ], - "confidence": 0.198, - "elements": [ - "#/readResults/0/lines/38/words/1", - "#/readResults/0/lines/38/words/2" - ] - }, - "VendorName": { + "Website": { "type": "string", - "valueString": "B", - "text": "B", + "valueString": "555-555-5555", + "text": "555-555-5555", "page": 1, "boundingBox": [ - 1.095, - 3.425, - 1.165, - 3.425, - 1.165, - 3.53, - 1.095, - 3.53 + 0.885, + 2.29, + 1.81, + 2.29, + 1.81, + 2.395, + 0.885, + 2.395 ], - "confidence": 0.157, + "confidence": 0.126, "elements": [ - "#/readResults/0/lines/16/words/0" + "#/readResults/0/lines/9/words/0" ] }, "DatedAs": null, @@ -4466,28 +4403,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/737b93ce-4abb-4d84-b508-87298bba6009", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4e1678ae-7344-4142-af19-cfd9cafb0a07", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a994388b68ffa94e87dfc61e5a5ee031-ba85cbd60bf4744b-00", + "traceparent": "00-1d3d3e143a008143acfffa50485923e6-ac7c1815269e1c45-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e8b37e91e8b6bd1cedc4ed651ab16e61", + "x-ms-client-request-id": "5a4eda2c49b02f2f6bf3d80021ea319d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "8e2f54e9-d613-4791-a28b-623bbe7db12b", + "apim-request-id": "c75dd0af-a0af-4186-a0ea-a294ee5cf80a", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:37:04 GMT", + "Date": "Fri, 30 Oct 2020 13:00:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": [] } @@ -4495,7 +4432,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1864944783" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(True).json index 852c97c9a394d..73d529c7d3e86 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e1048856240f854895843532b38a7d24-707676d42100a04d-00", + "traceparent": "00-fba2419ab87f534cbef610217cd10dda-7c698336aa2f6341-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "882fe0f65bad14205238cfcaa42e4965", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "801e0b23-019f-4579-8387-c7cd5e0a5f74", + "apim-request-id": "595f4891-82b7-4f9f-8b28-dd9081c35fce", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:31:15 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222", + "Date": "Fri, 30 Oct 2020 12:53:50 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/62f028fe-ae4d-4115-920e-8159f86fe366", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "230" + "x-envoy-upstream-service-time": "115" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/62f028fe-ae4d-4115-920e-8159f86fe366?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f77ee0d57e5ae70e3feb85bcfdf4c252", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47650480-05b3-4331-a399-a2c1b6fa21b2", + "apim-request-id": "9f95a9ea-88cb-4655-99a3-33d5dd012038", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:15 GMT", + "Date": "Fri, 30 Oct 2020 12:53:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "84e64eea-c2c5-4779-9123-ac43a14a9222", + "modelId": "62f028fe-ae4d-4115-920e-8159f86fe366", "status": "creating", - "createdDateTime": "2020-09-09T22:31:16Z", - "lastUpdatedDateTime": "2020-09-09T22:31:16Z" + "createdDateTime": "2020-10-30T12:53:51Z", + "lastUpdatedDateTime": "2020-10-30T12:53:51Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/62f028fe-ae4d-4115-920e-8159f86fe366?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fcd00d2cd7b4c82955fe0b1a3cae66e1", "x-ms-return-client-request-id": "true" @@ -81,56 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "95ce7d31-cf4e-4ebe-828e-48db84ff6d66", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "84e64eea-c2c5-4779-9123-ac43a14a9222", - "status": "creating", - "createdDateTime": "2020-09-09T22:31:16Z", - "lastUpdatedDateTime": "2020-09-09T22:31:16Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1bf773b398bd7873d14749c1d664175d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3186d500-d8d0-4a87-a42b-dffdf901324a", + "apim-request-id": "ff194679-2a9b-4bf4-8bae-e0c93187f40b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:17 GMT", + "Date": "Fri, 30 Oct 2020 12:53:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "84e64eea-c2c5-4779-9123-ac43a14a9222", + "modelId": "62f028fe-ae4d-4115-920e-8159f86fe366", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:31:16Z", - "lastUpdatedDateTime": "2020-09-09T22:31:18Z" + "createdDateTime": "2020-10-30T12:53:51Z", + "lastUpdatedDateTime": "2020-10-30T12:53:52Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,272 +195,242 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/62f028fe-ae4d-4115-920e-8159f86fe366/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "108935", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1922632679f6c642ad9219bc82b5095c-4da0ee1502301040-00", + "traceparent": "00-2c053bc9b717a648845e461af3f7d718-29449ff95facf742-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "979e7c764c5dfdb1b6b6a15b73f4ab91", + "x-ms-client-request-id": "1bf773b398bd7873d14749c1d664175d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "80348bea-55f3-4a68-b6b3-035b8e2881fa", + "apim-request-id": "2f3e6281-aeba-46d3-bedf-54cd6db96e53", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:31:17 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222/analyzeresults/6a67ba7b-1d96-4ade-99fb-2e1fb78f624e", + "Date": "Fri, 30 Oct 2020 12:53:53 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/62f028fe-ae4d-4115-920e-8159f86fe366/analyzeresults/7021c79c-0013-4b61-bb7c-5d055b6d898a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222/analyzeResults/6a67ba7b-1d96-4ade-99fb-2e1fb78f624e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/62f028fe-ae4d-4115-920e-8159f86fe366/analyzeResults/7021c79c-0013-4b61-bb7c-5d055b6d898a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8908a385a6fd949599582b6c8e68f2f1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "32fa28cc-312f-4967-88a9-95cc31b4acd4", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:18Z", - "lastUpdatedDateTime": "2020-09-09T22:31:18Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222/analyzeResults/6a67ba7b-1d96-4ade-99fb-2e1fb78f624e", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "bfa4ade7cf106784c2f96507f61704dd", + "x-ms-client-request-id": "979e7c764c5dfdb1b6b6a15b73f4ab91", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "372db2d2-4e09-472c-b884-9d0c9dcea5e5", + "apim-request-id": "d8f9e3d7-6807-4a60-a1d9-e8e1abc7a830", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:19 GMT", + "Date": "Fri, 30 Oct 2020 12:53:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:18Z", - "lastUpdatedDateTime": "2020-09-09T22:31:18Z" + "createdDateTime": "2020-10-30T12:53:54Z", + "lastUpdatedDateTime": "2020-10-30T12:53:54Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222/analyzeResults/6a67ba7b-1d96-4ade-99fb-2e1fb78f624e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/62f028fe-ae4d-4115-920e-8159f86fe366/analyzeResults/7021c79c-0013-4b61-bb7c-5d055b6d898a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "323cb89c8d5bd060e709fd0520446f4d", + "x-ms-client-request-id": "8908a385a6fd949599582b6c8e68f2f1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "299a0d1b-a6e4-4d01-988d-b823518f72a2", + "apim-request-id": "438598f0-b9a8-458f-8464-802fc6faf6fa", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:20 GMT", + "Date": "Fri, 30 Oct 2020 12:53:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:18Z", - "lastUpdatedDateTime": "2020-09-09T22:31:18Z" + "createdDateTime": "2020-10-30T12:53:54Z", + "lastUpdatedDateTime": "2020-10-30T12:53:54Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222/analyzeResults/6a67ba7b-1d96-4ade-99fb-2e1fb78f624e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/62f028fe-ae4d-4115-920e-8159f86fe366/analyzeResults/7021c79c-0013-4b61-bb7c-5d055b6d898a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c674b0c4ec50b6811fa0c604408d9d82", + "x-ms-client-request-id": "bfa4ade7cf106784c2f96507f61704dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e343e1e-42d6-4af0-b6c7-d3dc70d83d36", + "apim-request-id": "01da5f22-cd34-403d-94c7-5395de4f4de5", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:22 GMT", + "Date": "Fri, 30 Oct 2020 12:53:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:18Z", - "lastUpdatedDateTime": "2020-09-09T22:31:18Z" + "createdDateTime": "2020-10-30T12:53:54Z", + "lastUpdatedDateTime": "2020-10-30T12:53:54Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222/analyzeResults/6a67ba7b-1d96-4ade-99fb-2e1fb78f624e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/62f028fe-ae4d-4115-920e-8159f86fe366/analyzeResults/7021c79c-0013-4b61-bb7c-5d055b6d898a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d6d04d53bf2c59954cd3d806d27e467e", + "x-ms-client-request-id": "323cb89c8d5bd060e709fd0520446f4d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f840b183-0df5-4c37-8ef3-dc20170cef05", + "apim-request-id": "8c715783-e778-4fe1-92fb-94d186b853ee", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:23 GMT", + "Date": "Fri, 30 Oct 2020 12:53:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:18Z", - "lastUpdatedDateTime": "2020-09-09T22:31:22Z" + "createdDateTime": "2020-10-30T12:53:54Z", + "lastUpdatedDateTime": "2020-10-30T12:53:58Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222/analyzeResults/6a67ba7b-1d96-4ade-99fb-2e1fb78f624e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/62f028fe-ae4d-4115-920e-8159f86fe366/analyzeResults/7021c79c-0013-4b61-bb7c-5d055b6d898a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4643178a3ea3b08d368613bac75b8f59", + "x-ms-client-request-id": "c674b0c4ec50b6811fa0c604408d9d82", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf0815f5-54fa-4ab2-a0d3-95c1bbf9695d", + "apim-request-id": "52a3442a-a543-4ad5-9f34-463d7e372aca", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:24 GMT", + "Date": "Fri, 30 Oct 2020 12:53:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:18Z", - "lastUpdatedDateTime": "2020-09-09T22:31:22Z" + "createdDateTime": "2020-10-30T12:53:54Z", + "lastUpdatedDateTime": "2020-10-30T12:53:58Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222/analyzeResults/6a67ba7b-1d96-4ade-99fb-2e1fb78f624e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/62f028fe-ae4d-4115-920e-8159f86fe366/analyzeResults/7021c79c-0013-4b61-bb7c-5d055b6d898a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d3b27a6c987304211a1a797c137be4a0", + "x-ms-client-request-id": "d6d04d53bf2c59954cd3d806d27e467e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c85d3cb8-5e06-403d-ad3f-a762385bb33c", + "apim-request-id": "2ecf70ce-d0d9-437f-ae37-3e4abcb8d42e", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:25 GMT", + "Date": "Fri, 30 Oct 2020 12:54:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:18Z", - "lastUpdatedDateTime": "2020-09-09T22:31:22Z" + "createdDateTime": "2020-10-30T12:53:54Z", + "lastUpdatedDateTime": "2020-10-30T12:53:58Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222/analyzeResults/6a67ba7b-1d96-4ade-99fb-2e1fb78f624e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/62f028fe-ae4d-4115-920e-8159f86fe366/analyzeResults/7021c79c-0013-4b61-bb7c-5d055b6d898a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2879485a574a14dfc0209fa6acdb92f1", + "x-ms-client-request-id": "4643178a3ea3b08d368613bac75b8f59", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8cec2943-2a47-4447-8b0f-d90f3e64f3da", + "apim-request-id": "e24300da-69de-44c6-82b7-51ecdaf57257", "Content-Length": "30845", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:26 GMT", + "Date": "Fri, 30 Oct 2020 12:54:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:31:18Z", - "lastUpdatedDateTime": "2020-09-09T22:31:25Z", + "createdDateTime": "2020-10-30T12:53:54Z", + "lastUpdatedDateTime": "2020-10-30T12:54:01Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -4258,71 +4195,72 @@ ], "documentResults": [ { - "docType": "custom:84e64eea-c2c5-4779-9123-ac43a14a9222", - "modelId": "84e64eea-c2c5-4779-9123-ac43a14a9222", + "docType": "custom:62f028fe-ae4d-4115-920e-8159f86fe366", + "modelId": "62f028fe-ae4d-4115-920e-8159f86fe366", "pageRange": [ 1, 3 ], "fields": { - "PurchaseOrderNumber": { + "VendorName": { "type": "string", - "valueString": "100.99", - "text": "100.99", - "page": 3, + "valueString": "B", + "text": "B", + "page": 1, "boundingBox": [ - 5.425, - 3.21, - 5.86, - 3.21, - 5.86, - 3.32, - 5.425, - 3.32 + 1.095, + 3.425, + 1.165, + 3.425, + 1.165, + 3.53, + 1.095, + 3.53 ], - "confidence": 0.127, + "confidence": 0.157, "elements": [ - "#/readResults/2/lines/15/words/0" + "#/readResults/0/lines/16/words/0" ] }, - "CompanyPhoneNumber": { + "Merchant": { "type": "string", - "valueString": "22.00", - "text": "22.00", + "valueString": "Invoice For:", + "text": "Invoice For:", "page": 1, "boundingBox": [ - 5.42, - 4.475, - 5.78, - 4.475, - 5.78, - 4.585, - 5.42, - 4.585 + 6.02, + 1.065, + 7.035, + 1.065, + 7.035, + 1.21, + 6.02, + 1.21 ], - "confidence": 0.296, + "confidence": 0.16, "elements": [ - "#/readResults/0/lines/33/words/0" + "#/readResults/0/lines/1/words/0", + "#/readResults/0/lines/1/words/1" ] }, - "Signature": { + "CompanyAddress": { "type": "string", - "valueString": "Signature:", - "text": "Signature:", + "valueString": "G", + "text": "G", "page": 1, "boundingBox": [ - 1.005, - 6.66, - 1.7, - 6.66, - 1.7, - 6.8, - 1.005, - 6.8 + 1.09, + 4.475, + 1.175, + 4.475, + 1.175, + 4.585, + 1.09, + 4.585 ], - "confidence": 0.175, + "confidence": 0.297, "elements": [ - "#/readResults/0/lines/38/words/0" + "#/readResults/0/lines/31/words/0" ] }, "Email": { @@ -4368,85 +4306,84 @@ "#/readResults/0/lines/38/words/2" ] }, - "Merchant": { + "Signature": { "type": "string", - "valueString": "Invoice For:", - "text": "Invoice For:", + "valueString": "Signature:", + "text": "Signature:", "page": 1, "boundingBox": [ - 6.02, - 1.065, - 7.035, - 1.065, - 7.035, - 1.21, - 6.02, - 1.21 + 1.005, + 6.66, + 1.7, + 6.66, + 1.7, + 6.8, + 1.005, + 6.8 ], - "confidence": 0.16, + "confidence": 0.175, "elements": [ - "#/readResults/0/lines/1/words/0", - "#/readResults/0/lines/1/words/1" + "#/readResults/0/lines/38/words/0" ] }, - "Website": { + "PurchaseOrderNumber": { "type": "string", - "valueString": "555-555-5555", - "text": "555-555-5555", - "page": 1, + "valueString": "100.99", + "text": "100.99", + "page": 3, "boundingBox": [ - 0.885, - 2.29, - 1.81, - 2.29, - 1.81, - 2.395, - 0.885, - 2.395 + 5.425, + 3.21, + 5.86, + 3.21, + 5.86, + 3.32, + 5.425, + 3.32 ], - "confidence": 0.126, + "confidence": 0.127, "elements": [ - "#/readResults/0/lines/9/words/0" + "#/readResults/2/lines/15/words/0" ] }, - "CompanyAddress": { + "CompanyPhoneNumber": { "type": "string", - "valueString": "G", - "text": "G", + "valueString": "22.00", + "text": "22.00", "page": 1, "boundingBox": [ - 1.09, + 5.42, 4.475, - 1.175, + 5.78, 4.475, - 1.175, + 5.78, 4.585, - 1.09, + 5.42, 4.585 ], - "confidence": 0.297, + "confidence": 0.296, "elements": [ - "#/readResults/0/lines/31/words/0" + "#/readResults/0/lines/33/words/0" ] }, - "VendorName": { + "Website": { "type": "string", - "valueString": "B", - "text": "B", + "valueString": "555-555-5555", + "text": "555-555-5555", "page": 1, "boundingBox": [ - 1.095, - 3.425, - 1.165, - 3.425, - 1.165, - 3.53, - 1.095, - 3.53 + 0.885, + 2.29, + 1.81, + 2.29, + 1.81, + 2.395, + 0.885, + 2.395 ], - "confidence": 0.157, + "confidence": 0.126, "elements": [ - "#/readResults/0/lines/16/words/0" + "#/readResults/0/lines/9/words/0" ] }, "DatedAs": null, @@ -4464,28 +4401,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/84e64eea-c2c5-4779-9123-ac43a14a9222", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/62f028fe-ae4d-4115-920e-8159f86fe366", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f25637bcfaaae94a8a15ad4943e37ec7-a262d4ef4605c94c-00", + "traceparent": "00-4daefe4ff5e0fe449d804ebece24d425-6a75ec2abc6c5f4e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "57997e4473ccf10af63e2b88c5119cbb", + "x-ms-client-request-id": "d3b27a6c987304211a1a797c137be4a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "69f4f98b-65fe-4c35-8834-749789ccc0e5", + "apim-request-id": "0e9c0016-6665-4f00-a4e6-cc8d8aec9d02", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:31:26 GMT", + "Date": "Fri, 30 Oct 2020 12:54:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": [] } @@ -4493,7 +4430,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1094100444" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(True)Async.json index 8e16441628560..b2c8c179f1e98 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithLabelsCanParseMultipageFormWithBlankPage(True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0cde7b1bf80afb44a925cfc6ed339591-a36818522cc79743-00", + "traceparent": "00-3027542a9da10f4eb007c7ba824f6227-01fb367f35939b42-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "40942c3caca52bd99d191e5ad991d1b4", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "ef06be24-6c95-4429-aef7-73270a62de9e", + "apim-request-id": "33072ead-90cd-485a-bd19-12948901fc32", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:36:42 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366", + "Date": "Fri, 30 Oct 2020 13:00:09 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "237" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c206179a24250e32608ce25e0572dce2", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f8523e4-c445-4547-b2d2-14de5ab89675", + "apim-request-id": "1a44e253-f0ce-4b03-8801-e1526347bc0a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:42 GMT", + "Date": "Fri, 30 Oct 2020 13:00:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "41a8b302-0658-45e8-a6b5-136ab5f88366", + "modelId": "f8686d69-2c9e-467c-94a0-98675198d0d4", "status": "creating", - "createdDateTime": "2020-09-09T22:36:42Z", - "lastUpdatedDateTime": "2020-09-09T22:36:42Z" + "createdDateTime": "2020-10-30T13:00:09Z", + "lastUpdatedDateTime": "2020-10-30T13:00:09Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5bdb82beae6a2a79ee3c85bf15f5b4e6", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ff4750f-d71d-439e-b949-0f1e6147f6df", + "apim-request-id": "dfff020a-854b-4ac7-a89c-1980c53768c8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:43 GMT", + "Date": "Fri, 30 Oct 2020 13:00:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "41a8b302-0658-45e8-a6b5-136ab5f88366", + "modelId": "f8686d69-2c9e-467c-94a0-98675198d0d4", "status": "creating", - "createdDateTime": "2020-09-09T22:36:42Z", - "lastUpdatedDateTime": "2020-09-09T22:36:42Z" + "createdDateTime": "2020-10-30T13:00:09Z", + "lastUpdatedDateTime": "2020-10-30T13:00:09Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "05cc120ea47a18ecf986e019c97b252b", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1ef56c9-221f-42c5-80ac-0cc584c7ebae", + "apim-request-id": "71b019f0-8102-4bb0-a524-37fe1857add6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:44 GMT", + "Date": "Fri, 30 Oct 2020 13:00:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "41a8b302-0658-45e8-a6b5-136ab5f88366", + "modelId": "f8686d69-2c9e-467c-94a0-98675198d0d4", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:36:42Z", - "lastUpdatedDateTime": "2020-09-09T22:36:44Z" + "createdDateTime": "2020-10-30T13:00:09Z", + "lastUpdatedDateTime": "2020-10-30T13:00:11Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,17 +228,17 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "108935", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-da64888b9fab7345b0854d4221dbbd4c-8ab8ebeae164044e-00", + "traceparent": "00-dd7fcdb4880de7479187ea1bde20223b-3ad8384c5381c445-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "569c3c3d76b6eb4a9edcd3e99f73f86a", "x-ms-return-client-request-id": "true" @@ -246,25 +246,25 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b6693367-f1a7-41e5-b22f-94f4ce689755", + "apim-request-id": "901e6def-2cd0-46a5-89f2-fb40a358b03f", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:36:44 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366/analyzeresults/50252ac5-36c5-44bf-9e21-5149b67c970f", + "Date": "Fri, 30 Oct 2020 13:00:12 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4/analyzeresults/b2884e7b-ab58-4987-971a-b0311b31e7ba", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366/analyzeResults/50252ac5-36c5-44bf-9e21-5149b67c970f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4/analyzeResults/b2884e7b-ab58-4987-971a-b0311b31e7ba", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f350fcd7d6a61a6895c361e4ce606073", "x-ms-return-client-request-id": "true" @@ -272,29 +272,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "32885c96-a347-401d-a811-931dc338f6dc", + "apim-request-id": "aca4d906-a29d-4866-8d43-535a61bf95e0", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:44 GMT", + "Date": "Fri, 30 Oct 2020 13:00:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:44Z", - "lastUpdatedDateTime": "2020-09-09T22:36:44Z" + "createdDateTime": "2020-10-30T13:00:13Z", + "lastUpdatedDateTime": "2020-10-30T13:00:13Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366/analyzeResults/50252ac5-36c5-44bf-9e21-5149b67c970f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4/analyzeResults/b2884e7b-ab58-4987-971a-b0311b31e7ba", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d9825a165d599730c7e0679ed0037886", "x-ms-return-client-request-id": "true" @@ -302,29 +302,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f97dbad-b27f-4fcd-9c43-0e2af1e8f5a2", + "apim-request-id": "93bddad4-ba9f-4838-98ed-d380780719c4", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:45 GMT", + "Date": "Fri, 30 Oct 2020 13:00:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:44Z", - "lastUpdatedDateTime": "2020-09-09T22:36:45Z" + "createdDateTime": "2020-10-30T13:00:13Z", + "lastUpdatedDateTime": "2020-10-30T13:00:13Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366/analyzeResults/50252ac5-36c5-44bf-9e21-5149b67c970f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4/analyzeResults/b2884e7b-ab58-4987-971a-b0311b31e7ba", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cc41758d322a6684d481c1f215661d3e", "x-ms-return-client-request-id": "true" @@ -332,29 +332,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "997038de-9ab0-4660-a8bf-4ccd8b4d97c7", + "apim-request-id": "b87cad2d-d08a-49cb-a351-caf8bbb60e41", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:46 GMT", + "Date": "Fri, 30 Oct 2020 13:00:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:44Z", - "lastUpdatedDateTime": "2020-09-09T22:36:45Z" + "createdDateTime": "2020-10-30T13:00:13Z", + "lastUpdatedDateTime": "2020-10-30T13:00:13Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366/analyzeResults/50252ac5-36c5-44bf-9e21-5149b67c970f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4/analyzeResults/b2884e7b-ab58-4987-971a-b0311b31e7ba", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "44d2607b1ff17a10cbb82bc66fc94992", "x-ms-return-client-request-id": "true" @@ -362,29 +362,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e1741841-6a4e-4b17-8a46-ffa9310e35a8", + "apim-request-id": "f8ced749-f8ea-4d45-9c39-d7ee4d23d6c8", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:47 GMT", + "Date": "Fri, 30 Oct 2020 13:00:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:44Z", - "lastUpdatedDateTime": "2020-09-09T22:36:48Z" + "createdDateTime": "2020-10-30T13:00:13Z", + "lastUpdatedDateTime": "2020-10-30T13:00:16Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366/analyzeResults/50252ac5-36c5-44bf-9e21-5149b67c970f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4/analyzeResults/b2884e7b-ab58-4987-971a-b0311b31e7ba", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5856db4a931ee448d61b05d79b3d8261", "x-ms-return-client-request-id": "true" @@ -392,29 +392,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0fc1cfe3-1ef4-44bc-b0a3-dcf34c52ae44", + "apim-request-id": "be59526a-b6a0-4190-955c-da6db5f79ddf", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:48 GMT", + "Date": "Fri, 30 Oct 2020 13:00:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:44Z", - "lastUpdatedDateTime": "2020-09-09T22:36:48Z" + "createdDateTime": "2020-10-30T13:00:13Z", + "lastUpdatedDateTime": "2020-10-30T13:00:16Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366/analyzeResults/50252ac5-36c5-44bf-9e21-5149b67c970f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4/analyzeResults/b2884e7b-ab58-4987-971a-b0311b31e7ba", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6f2329c234306d9464c6007206bef70a", "x-ms-return-client-request-id": "true" @@ -422,29 +422,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cd049685-86a1-4e7a-9e87-06a9bc90dd05", + "apim-request-id": "d06dc273-52f4-4bf7-aac8-94170f11062f", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:49 GMT", + "Date": "Fri, 30 Oct 2020 13:00:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:44Z", - "lastUpdatedDateTime": "2020-09-09T22:36:48Z" + "createdDateTime": "2020-10-30T13:00:13Z", + "lastUpdatedDateTime": "2020-10-30T13:00:16Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366/analyzeResults/50252ac5-36c5-44bf-9e21-5149b67c970f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4/analyzeResults/b2884e7b-ab58-4987-971a-b0311b31e7ba", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3aa72e38c40fe71f17ee6ed51a39de8e", "x-ms-return-client-request-id": "true" @@ -452,108 +452,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6d8770c1-4798-4dad-bac9-bf74c20baf2d", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:50 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:44Z", - "lastUpdatedDateTime": "2020-09-09T22:36:51Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366/analyzeResults/50252ac5-36c5-44bf-9e21-5149b67c970f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4503c936d9a6166146e8f35792d6de17", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6c7791ee-9b44-4954-bd8b-8c71d963c83d", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:44Z", - "lastUpdatedDateTime": "2020-09-09T22:36:51Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366/analyzeResults/50252ac5-36c5-44bf-9e21-5149b67c970f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "6c9ffa244895fe52093b5842c5be532b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "614f9031-b7bb-4078-98ac-a3ac636ed386", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:36:44Z", - "lastUpdatedDateTime": "2020-09-09T22:36:51Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366/analyzeResults/50252ac5-36c5-44bf-9e21-5149b67c970f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3c3b72e7b1bb5e64cd91f326d0c85440", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "26c1c9c5-7128-446c-84ad-ff1c4e7f9020", + "apim-request-id": "9a789cce-994d-458b-a2da-70f82c4644d0", "Content-Length": "30845", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:36:53 GMT", + "Date": "Fri, 30 Oct 2020 13:00:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:36:44Z", - "lastUpdatedDateTime": "2020-09-09T22:36:54Z", + "createdDateTime": "2020-10-30T13:00:13Z", + "lastUpdatedDateTime": "2020-10-30T13:00:20Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -4318,51 +4228,31 @@ ], "documentResults": [ { - "docType": "custom:41a8b302-0658-45e8-a6b5-136ab5f88366", - "modelId": "41a8b302-0658-45e8-a6b5-136ab5f88366", + "docType": "custom:f8686d69-2c9e-467c-94a0-98675198d0d4", + "modelId": "f8686d69-2c9e-467c-94a0-98675198d0d4", "pageRange": [ 1, 3 ], "fields": { - "PurchaseOrderNumber": { - "type": "string", - "valueString": "100.99", - "text": "100.99", - "page": 3, - "boundingBox": [ - 5.425, - 3.21, - 5.86, - 3.21, - 5.86, - 3.32, - 5.425, - 3.32 - ], - "confidence": 0.127, - "elements": [ - "#/readResults/2/lines/15/words/0" - ] - }, - "CompanyPhoneNumber": { + "Website": { "type": "string", - "valueString": "22.00", - "text": "22.00", + "valueString": "555-555-5555", + "text": "555-555-5555", "page": 1, "boundingBox": [ - 5.42, - 4.475, - 5.78, - 4.475, - 5.78, - 4.585, - 5.42, - 4.585 + 0.885, + 2.29, + 1.81, + 2.29, + 1.81, + 2.395, + 0.885, + 2.395 ], - "confidence": 0.296, + "confidence": 0.126, "elements": [ - "#/readResults/0/lines/33/words/0" + "#/readResults/0/lines/9/words/0" ] }, "Signature": { @@ -4385,47 +4275,24 @@ "#/readResults/0/lines/38/words/0" ] }, - "Email": { - "type": "string", - "valueString": "Company A Invoice", - "text": "Company A Invoice", - "page": 1, - "boundingBox": [ - 0.885, - 1.12, - 2.38, - 1.12, - 2.38, - 1.28, - 0.885, - 1.28 - ], - "confidence": 0.138, - "elements": [ - "#/readResults/0/lines/0/words/0", - "#/readResults/0/lines/0/words/1", - "#/readResults/0/lines/0/words/2" - ] - }, - "CompanyName": { + "PurchaseOrderNumber": { "type": "string", - "valueString": "Bilbo Baggins", - "text": "Bilbo Baggins", - "page": 1, + "valueString": "100.99", + "text": "100.99", + "page": 3, "boundingBox": [ - 2.05, - 6.655, - 3.04, - 6.655, - 3.04, - 6.8, - 2.05, - 6.8 + 5.425, + 3.21, + 5.86, + 3.21, + 5.86, + 3.32, + 5.425, + 3.32 ], - "confidence": 0.198, + "confidence": 0.127, "elements": [ - "#/readResults/0/lines/38/words/1", - "#/readResults/0/lines/38/words/2" + "#/readResults/2/lines/15/words/0" ] }, "Merchant": { @@ -4449,26 +4316,6 @@ "#/readResults/0/lines/1/words/1" ] }, - "Website": { - "type": "string", - "valueString": "555-555-5555", - "text": "555-555-5555", - "page": 1, - "boundingBox": [ - 0.885, - 2.29, - 1.81, - 2.29, - 1.81, - 2.395, - 0.885, - 2.395 - ], - "confidence": 0.126, - "elements": [ - "#/readResults/0/lines/9/words/0" - ] - }, "CompanyAddress": { "type": "string", "valueString": "G", @@ -4489,6 +4336,48 @@ "#/readResults/0/lines/31/words/0" ] }, + "CompanyPhoneNumber": { + "type": "string", + "valueString": "22.00", + "text": "22.00", + "page": 1, + "boundingBox": [ + 5.42, + 4.475, + 5.78, + 4.475, + 5.78, + 4.585, + 5.42, + 4.585 + ], + "confidence": 0.296, + "elements": [ + "#/readResults/0/lines/33/words/0" + ] + }, + "Email": { + "type": "string", + "valueString": "Company A Invoice", + "text": "Company A Invoice", + "page": 1, + "boundingBox": [ + 0.885, + 1.12, + 2.38, + 1.12, + 2.38, + 1.28, + 0.885, + 1.28 + ], + "confidence": 0.138, + "elements": [ + "#/readResults/0/lines/0/words/0", + "#/readResults/0/lines/0/words/1", + "#/readResults/0/lines/0/words/2" + ] + }, "VendorName": { "type": "string", "valueString": "B", @@ -4509,6 +4398,27 @@ "#/readResults/0/lines/16/words/0" ] }, + "CompanyName": { + "type": "string", + "valueString": "Bilbo Baggins", + "text": "Bilbo Baggins", + "page": 1, + "boundingBox": [ + 2.05, + 6.655, + 3.04, + 6.655, + 3.04, + 6.8, + 2.05, + 6.8 + ], + "confidence": 0.198, + "elements": [ + "#/readResults/0/lines/38/words/1", + "#/readResults/0/lines/38/words/2" + ] + }, "DatedAs": null, "PhoneNumber": null, "Quantity": null, @@ -4524,28 +4434,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/41a8b302-0658-45e8-a6b5-136ab5f88366", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8686d69-2c9e-467c-94a0-98675198d0d4", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c9d67c2fd385254b8a716dba27a9367c-0f3b14dd3f233e45-00", + "traceparent": "00-f71e3c4dd3695d4ca3b4929779a5985a-61fdc5b21e64e642-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1fb156107299edf877053c6a811f5187", + "x-ms-client-request-id": "4503c936d9a6166146e8f35792d6de17", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "128953d5-e9ab-4bb9-981f-deee05538e7d", + "apim-request-id": "05144708-66af-44cc-9a6b-793c5e26ea5e", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:36:53 GMT", + "Date": "Fri, 30 Oct 2020 13:00:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": [] } @@ -4553,7 +4463,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "432412203" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,False).json index 9d595ff3d04a9..b69bf26e2c64d 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bbc3c2a6f5b99e45b6c2a2f50073bbec-b2b7b33dbb984e49-00", + "traceparent": "00-5986414b66e9a44895e73d183dc50aa8-8106a87a76caba4d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "05a0cc668e405f6656a3d2bfc4384365", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "53f53c04-9eff-4ac0-9953-878f3e0bfacf", + "apim-request-id": "d088b398-acd6-41ed-826f-8584949f3e80", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:52:40 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3", + "Date": "Fri, 30 Oct 2020 12:55:19 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "150" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ba8e862e4604c8611818130bcc33b5f7", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8176685e-8ba8-4e12-9fff-c04ba9e1371f", + "apim-request-id": "51804cf1-d26f-44f2-8eea-7e96963714ab", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:40 GMT", + "Date": "Fri, 30 Oct 2020 12:55:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", + "modelId": "2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d", "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" + "createdDateTime": "2020-10-30T12:55:19Z", + "lastUpdatedDateTime": "2020-10-30T12:55:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1f2c7e04cade8bc170a8abbee446825e", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e53b6046-844c-44ca-92ea-9c5c974eda34", + "apim-request-id": "f2518ee6-8c60-49d7-a965-c48103e76f58", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:41 GMT", + "Date": "Fri, 30 Oct 2020 12:55:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", + "modelId": "2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d", "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" + "createdDateTime": "2020-10-30T12:55:19Z", + "lastUpdatedDateTime": "2020-10-30T12:55:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1519b4a8cf261fbe6bd8ed277b5a9222", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "03e55757-0314-443e-9a7e-4a60d5001b76", + "apim-request-id": "dcbe2fe7-571f-4a77-866a-ffe64cbf9039", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:42 GMT", + "Date": "Fri, 30 Oct 2020 12:55:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", + "modelId": "2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d", "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" + "createdDateTime": "2020-10-30T12:55:19Z", + "lastUpdatedDateTime": "2020-10-30T12:55:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "45bbdaee240c6386c5034a5b9aa2e3d2", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e20c9a3-3adf-4396-ac28-5d83cbc80d75", + "apim-request-id": "005a6572-e21a-426b-94fc-d0d516885422", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:43 GMT", + "Date": "Fri, 30 Oct 2020 12:55:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", + "modelId": "2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d", "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" + "createdDateTime": "2020-10-30T12:55:19Z", + "lastUpdatedDateTime": "2020-10-30T12:55:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1762b5959f1a34d1c00cb406dd991015", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b2e03376-fb76-4517-bfd2-302343e55fa3", + "apim-request-id": "01b6044f-d3f5-4193-bab4-e4ead2a50889", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:44 GMT", + "Date": "Fri, 30 Oct 2020 12:55:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", + "modelId": "2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d", "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" + "createdDateTime": "2020-10-30T12:55:19Z", + "lastUpdatedDateTime": "2020-10-30T12:55:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0ad089153c8a84522db64f22846285c8", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3db7e0ba-6df8-4d76-914b-4889ed9bb815", + "apim-request-id": "cd5fc4a3-84d0-4775-ba20-6130676778fb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:45 GMT", + "Date": "Fri, 30 Oct 2020 12:55:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", + "modelId": "2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d", "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" + "createdDateTime": "2020-10-30T12:55:19Z", + "lastUpdatedDateTime": "2020-10-30T12:55:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c5911af47bf74e07088685ff6f7f862c", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "49e11c63-db2b-4eec-9e40-7f650be415ee", + "apim-request-id": "968cd1ab-1394-4bc0-8ab1-2aa316c41c42", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:46 GMT", + "Date": "Fri, 30 Oct 2020 12:55:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", + "modelId": "2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d", "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" + "createdDateTime": "2020-10-30T12:55:19Z", + "lastUpdatedDateTime": "2020-10-30T12:55:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "104635f2d9d2584763dee96450aeaf5e", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60fca69f-89b1-4c94-824b-bc22a2d3e5aa", + "apim-request-id": "7c2e626e-b8c9-4e63-a0a9-46e21cae09a5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:47 GMT", + "Date": "Fri, 30 Oct 2020 12:55:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "395" }, "ResponseBody": { "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", + "modelId": "2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d", "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" + "createdDateTime": "2020-10-30T12:55:19Z", + "lastUpdatedDateTime": "2020-10-30T12:55:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c211eb874b079a1e81820103b75314ae", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "966a0716-74a4-4cfc-8c87-84612ee39a53", + "apim-request-id": "76a296ff-0b6f-49c5-b171-e7a30e20f2a2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:48 GMT", + "Date": "Fri, 30 Oct 2020 12:55:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", + "modelId": "2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d", "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" + "createdDateTime": "2020-10-30T12:55:19Z", + "lastUpdatedDateTime": "2020-10-30T12:55:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4f30232f741c1af6d339621991a3fd59", "x-ms-return-client-request-id": "true" @@ -345,108 +345,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aac06dfe-efc6-4f1d-baab-33b487f162f2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:49 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", - "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "847727d6c46da62516ab8e4fd843a110", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cb68a836-689e-462f-8100-de541656698e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:50 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", - "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2d343bc9607e1241f5f7eecee80509de", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2664e52c-7210-41a4-ab27-1e2de901cc5a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", - "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "902da78490db6a40fd893870e5a6428f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a5a1c9ac-7b62-4682-bf94-90aea16f456e", + "apim-request-id": "58c8dec3-eb17-4648-b1ea-f2bdf6533568", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:52 GMT", + "Date": "Fri, 30 Oct 2020 12:55:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -454,65 +355,32 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", - "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "554f5297d06f76dbe5648e76d556be11", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6e6a70e0-18f7-4548-a745-688b6c9df438", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", + "modelId": "2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d", "status": "creating", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:40Z" + "createdDateTime": "2020-10-30T12:55:19Z", + "lastUpdatedDateTime": "2020-10-30T12:55:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "30cbb0a210163834fbc92ff427d12d4e", + "x-ms-client-request-id": "847727d6c46da62516ab8e4fd843a110", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6cfcc0c1-d5a2-4967-a0a3-be8c60660680", + "apim-request-id": "cc3ad537-babd-4927-8f4b-95e889fac1d8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:54 GMT", + "Date": "Fri, 30 Oct 2020 12:55:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -520,10 +388,10 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "7ee1aa61-b5da-4112-a074-ae990129a5f3", + "modelId": "2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d", "status": "ready", - "createdDateTime": "2020-09-10T23:52:40Z", - "lastUpdatedDateTime": "2020-09-10T23:52:54Z" + "createdDateTime": "2020-10-30T12:55:19Z", + "lastUpdatedDateTime": "2020-10-30T12:55:32Z" }, "keys": { "clusters": { @@ -593,19 +461,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1df9f5522e191c438c706530595f3962-c255a2275c61a244-00", + "traceparent": "00-aabfab24b7d1674ca8669fcf4ef36f19-b56cd208f054a74e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "96365fb5b3b5b36fccb6ab7601c995a7", + "x-ms-client-request-id": "2d343bc9607e1241f5f7eecee80509de", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -613,384 +481,198 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a1b18bbc-d37d-4290-be99-327b3b5a24c0", + "apim-request-id": "f56269e8-add6-4ce0-9944-6ee8d8d00f14", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:52:55 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyzeresults/239a04f2-4857-4df6-b2db-9fca00069ef8", + "Date": "Fri, 30 Oct 2020 12:55:33 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d/analyzeresults/74eac26d-789e-4657-b57a-dd6b7e9b6feb", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "84" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyzeResults/239a04f2-4857-4df6-b2db-9fca00069ef8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d/analyzeResults/74eac26d-789e-4657-b57a-dd6b7e9b6feb", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "34ce27cb11da87791d165aa5a1e64e13", + "x-ms-client-request-id": "902da78490db6a40fd893870e5a6428f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7793a1c7-a2d4-4870-9ccb-71d4815044ed", + "apim-request-id": "1a4f7ec9-4e2b-48a7-a656-179b1d30b61b", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:55 GMT", + "Date": "Fri, 30 Oct 2020 12:55:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:52:55Z", - "lastUpdatedDateTime": "2020-09-10T23:52:55Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyzeResults/239a04f2-4857-4df6-b2db-9fca00069ef8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "76c140372720ee5b4118645f65be3731", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ae7e2104-74c9-4d7e-9c05-8a6e3ce1e1bd", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:52:55Z", - "lastUpdatedDateTime": "2020-09-10T23:52:56Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyzeResults/239a04f2-4857-4df6-b2db-9fca00069ef8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ff288834f802a374e6ae799e59c912e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9e1eadc0-fe6c-489a-a4b5-8a8e56d20622", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:52:55Z", - "lastUpdatedDateTime": "2020-09-10T23:52:56Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyzeResults/239a04f2-4857-4df6-b2db-9fca00069ef8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c13f97671f08a486cbe0f3c2ad19225e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e0e3b00b-aa6a-42d1-aa43-93be9d67ab66", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:52:55Z", - "lastUpdatedDateTime": "2020-09-10T23:52:56Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyzeResults/239a04f2-4857-4df6-b2db-9fca00069ef8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "187028df4ebe3e10cc1d8f71adbc9477", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1410fe20-f297-4bf2-b134-50fcd741fd2d", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:52:55Z", - "lastUpdatedDateTime": "2020-09-10T23:52:56Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyzeResults/239a04f2-4857-4df6-b2db-9fca00069ef8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cdf77e05757f14290183342205b1f6cc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a5ad6ad3-a4e1-462e-9bc8-c90efa14fb8e", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:52:55Z", - "lastUpdatedDateTime": "2020-09-10T23:52:56Z", - "analyzeResult": null + "createdDateTime": "2020-10-30T12:55:33Z", + "lastUpdatedDateTime": "2020-10-30T12:55:33Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyzeResults/239a04f2-4857-4df6-b2db-9fca00069ef8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d/analyzeResults/74eac26d-789e-4657-b57a-dd6b7e9b6feb", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "31bf1a8cf95919278700f5ea8f14f70e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9c86faad-30ec-4004-ab67-4f0376036f5e", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:52:55Z", - "lastUpdatedDateTime": "2020-09-10T23:52:56Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyzeResults/239a04f2-4857-4df6-b2db-9fca00069ef8", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2ebc7b4b552169dfff5b173a1aed391a", + "x-ms-client-request-id": "554f5297d06f76dbe5648e76d556be11", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "96e8d0a3-d0c9-4e99-9c03-f73b19ba39de", + "apim-request-id": "95d67c1e-0af6-4ff5-8063-852e1f74c6c6", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:02 GMT", + "Date": "Fri, 30 Oct 2020 12:55:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:52:55Z", - "lastUpdatedDateTime": "2020-09-10T23:52:56Z", + "createdDateTime": "2020-10-30T12:55:33Z", + "lastUpdatedDateTime": "2020-10-30T12:55:34Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyzeResults/239a04f2-4857-4df6-b2db-9fca00069ef8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d/analyzeResults/74eac26d-789e-4657-b57a-dd6b7e9b6feb", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "92e5c22763fd0c1e57de467e803e85ed", + "x-ms-client-request-id": "30cbb0a210163834fbc92ff427d12d4e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9defe1cd-802f-48d4-ad1f-792a5d7d5b23", + "apim-request-id": "e24f3f16-bd17-44e0-8cb1-b29be14c1438", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:03 GMT", + "Date": "Fri, 30 Oct 2020 12:55:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:52:55Z", - "lastUpdatedDateTime": "2020-09-10T23:52:56Z", + "createdDateTime": "2020-10-30T12:55:33Z", + "lastUpdatedDateTime": "2020-10-30T12:55:34Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyzeResults/239a04f2-4857-4df6-b2db-9fca00069ef8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d/analyzeResults/74eac26d-789e-4657-b57a-dd6b7e9b6feb", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "89d6258cc7f437ab3b5531fde2ecfe99", + "x-ms-client-request-id": "96365fb5b3b5b36fccb6ab7601c995a7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5682dcfd-f6b9-4c3c-9bc2-c101ab2dfa53", + "apim-request-id": "a93f4b92-2a78-410e-b539-51f71a3a2588", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:04 GMT", + "Date": "Fri, 30 Oct 2020 12:55:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:52:55Z", - "lastUpdatedDateTime": "2020-09-10T23:52:56Z", + "createdDateTime": "2020-10-30T12:55:33Z", + "lastUpdatedDateTime": "2020-10-30T12:55:34Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyzeResults/239a04f2-4857-4df6-b2db-9fca00069ef8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d/analyzeResults/74eac26d-789e-4657-b57a-dd6b7e9b6feb", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ccc2dac6642fe8115cb0d7430e60e9c0", + "x-ms-client-request-id": "34ce27cb11da87791d165aa5a1e64e13", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f72a194-9082-40b8-85b9-242742cafacf", + "apim-request-id": "1bc82d35-cbd6-42cf-ba5d-8341bec83a50", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:05 GMT", + "Date": "Fri, 30 Oct 2020 12:55:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:52:55Z", - "lastUpdatedDateTime": "2020-09-10T23:52:56Z", + "createdDateTime": "2020-10-30T12:55:33Z", + "lastUpdatedDateTime": "2020-10-30T12:55:34Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3/analyzeResults/239a04f2-4857-4df6-b2db-9fca00069ef8", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d/analyzeResults/74eac26d-789e-4657-b57a-dd6b7e9b6feb", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f5ad2ad6af17602517ad57a83121296a", + "x-ms-client-request-id": "76c140372720ee5b4118645f65be3731", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "95ebdbdf-6eb1-418a-b4b6-72e900dcb11d", + "apim-request-id": "89c9f69c-965f-4de4-85b4-8f0e0e4d9090", "Content-Length": "8958", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:06 GMT", + "Date": "Fri, 30 Oct 2020 12:55:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:52:55Z", - "lastUpdatedDateTime": "2020-09-10T23:53:07Z", + "createdDateTime": "2020-10-30T12:55:33Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1972,25 +1654,25 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7ee1aa61-b5da-4112-a074-ae990129a5f3", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2d3aec9d-92ed-4cd1-abec-da9fd12c6f4d", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9baf02a0f82d0b459c34526d472cd068-b9d21955ec913e46-00", + "traceparent": "00-e1ffd144237fb948b6dddcdb9f2b7c46-45833788c4817b4a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a5b7ade0b87c28bd13ee2d43ef6828da", + "x-ms-client-request-id": "ff288834f802a374e6ae799e59c912e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "4b79a4c5-1116-4aee-916b-04f5f9f54395", + "apim-request-id": "fba13249-1698-49c4-8ccb-41e201bf0f2b", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:06 GMT", + "Date": "Fri, 30 Oct 2020 12:55:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "33" @@ -2001,7 +1683,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1925101383" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,False)Async.json index 8d70c5e8dc881..122c4f758fc87 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-84207d22879ade4fb43ade9dc26c045a-c4855e8761c16f4b-00", + "traceparent": "00-7e4ca9a2cdca004cb00bd37f67e7e363-a28f604107a57945-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f72c04e7d020e4a85e79d1bc0a418e17", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "d04ebc8a-3abe-476d-8c19-0729a2338b29", + "apim-request-id": "e5b05ed1-c440-44bc-9bb1-ab3150452e87", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:54:59 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87", + "Date": "Fri, 30 Oct 2020 13:01:40 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "77" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b611e9e16f4962984159d2f22e2fd544", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e837556-bb65-4ffc-98f3-7b96f26cefd4", + "apim-request-id": "44581f34-b5e4-4407-8cab-16273fbc5e1d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:59 GMT", + "Date": "Fri, 30 Oct 2020 13:01:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", + "modelId": "95e963b7-85c5-4cdc-bc9d-90cbe6c05adb", "status": "creating", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:54:59Z" + "createdDateTime": "2020-10-30T13:01:40Z", + "lastUpdatedDateTime": "2020-10-30T13:01:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "35ee0429bb508ff43befec00d252a54b", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d46dcc86-52fb-4808-bba4-31a778b701af", + "apim-request-id": "606e44e7-af84-4d29-96e5-24f8b7cab9a4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:00 GMT", + "Date": "Fri, 30 Oct 2020 13:01:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", + "modelId": "95e963b7-85c5-4cdc-bc9d-90cbe6c05adb", "status": "creating", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:54:59Z" + "createdDateTime": "2020-10-30T13:01:40Z", + "lastUpdatedDateTime": "2020-10-30T13:01:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2eba6935191c77836bcab6c6fdb6b52e", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "02d6c16b-33a5-490a-af6a-48f92620c5ee", + "apim-request-id": "200c6533-b993-498c-8268-7a952f6787f7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:01 GMT", + "Date": "Fri, 30 Oct 2020 13:01:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", + "modelId": "95e963b7-85c5-4cdc-bc9d-90cbe6c05adb", "status": "creating", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:54:59Z" + "createdDateTime": "2020-10-30T13:01:40Z", + "lastUpdatedDateTime": "2020-10-30T13:01:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "05938da4595226c7f4827a5983988fef", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2cd4f8b3-c9a7-4e0e-a529-04ef04d29531", + "apim-request-id": "29fa204b-8c0f-4724-9d03-b3a656352355", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:02 GMT", + "Date": "Fri, 30 Oct 2020 13:01:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", + "modelId": "95e963b7-85c5-4cdc-bc9d-90cbe6c05adb", "status": "creating", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:54:59Z" + "createdDateTime": "2020-10-30T13:01:40Z", + "lastUpdatedDateTime": "2020-10-30T13:01:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c5bc86b4a6750f278177c985052e9185", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "33fa30b8-98c3-4d34-abf5-80ca367f5929", + "apim-request-id": "f8f2c2f2-aff0-46c4-946b-eb44fbcc423c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:03 GMT", + "Date": "Fri, 30 Oct 2020 13:01:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", + "modelId": "95e963b7-85c5-4cdc-bc9d-90cbe6c05adb", "status": "creating", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:54:59Z" + "createdDateTime": "2020-10-30T13:01:40Z", + "lastUpdatedDateTime": "2020-10-30T13:01:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "455cbd399fbedbf9a1933a9a9f29f3d3", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b37535a5-305d-42ee-b879-786348ee8997", + "apim-request-id": "c17cb02f-6564-4596-a973-a662bc1e3311", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:04 GMT", + "Date": "Fri, 30 Oct 2020 13:01:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", + "modelId": "95e963b7-85c5-4cdc-bc9d-90cbe6c05adb", "status": "creating", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:54:59Z" + "createdDateTime": "2020-10-30T13:01:40Z", + "lastUpdatedDateTime": "2020-10-30T13:01:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7712c63aeff9fdb9658384db904121c6", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f6b326a5-fc42-401c-9aee-c5fad7250f41", + "apim-request-id": "69adfa91-55ca-4c92-a957-abbcf43ad2fa", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:05 GMT", + "Date": "Fri, 30 Oct 2020 13:01:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", + "modelId": "95e963b7-85c5-4cdc-bc9d-90cbe6c05adb", "status": "creating", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:54:59Z" + "createdDateTime": "2020-10-30T13:01:40Z", + "lastUpdatedDateTime": "2020-10-30T13:01:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c520f4f1493b14308de124e16b8d7057", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c197e0b9-3acf-4bdf-8ab5-05b18198bb0b", + "apim-request-id": "81d556c1-baba-454a-b03a-5b80ffb80a72", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:06 GMT", + "Date": "Fri, 30 Oct 2020 13:01:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", + "modelId": "95e963b7-85c5-4cdc-bc9d-90cbe6c05adb", "status": "creating", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:54:59Z" + "createdDateTime": "2020-10-30T13:01:40Z", + "lastUpdatedDateTime": "2020-10-30T13:01:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3e4bf583191c4a8c045edf3b1b1d4b5f", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0793499d-8349-4388-8edd-1047a9c068c0", + "apim-request-id": "90e13a7d-174d-40b4-8413-5f5222a5ef3c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:07 GMT", + "Date": "Fri, 30 Oct 2020 13:01:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", + "modelId": "95e963b7-85c5-4cdc-bc9d-90cbe6c05adb", "status": "creating", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:54:59Z" + "createdDateTime": "2020-10-30T13:01:40Z", + "lastUpdatedDateTime": "2020-10-30T13:01:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aba874722d09f09796fdea18cbd891d8", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "972009c1-3e3e-4ff7-a1e6-aa82fe9d55db", + "apim-request-id": "e3fc1d9a-cd07-45ce-a617-41b80b475f61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:08 GMT", + "Date": "Fri, 30 Oct 2020 13:01:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", + "modelId": "95e963b7-85c5-4cdc-bc9d-90cbe6c05adb", "status": "creating", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:54:59Z" + "createdDateTime": "2020-10-30T13:01:40Z", + "lastUpdatedDateTime": "2020-10-30T13:01:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9a582c13e3f6d7aa68d5c1dd69f5f96f", "x-ms-return-client-request-id": "true" @@ -378,119 +378,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85ac8820-0de2-4f2b-a8bf-9bf12771f7c6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", - "status": "creating", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:54:59Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f76ec495c4e4554e5e5aa71e2f737e2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b58192b9-77d5-4c00-92d4-fca4f3564d36", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", - "status": "creating", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:54:59Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ee2707ccb0c58f69c9d142336cba86a1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "04651cd7-111a-4c85-97e0-3ee0488f41c4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", - "status": "creating", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:54:59Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "07827a0499694ef4de023c9b3b8ca7f4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f58a9838-905c-4c54-b6b9-73c427531a81", + "apim-request-id": "055d16c5-b9a8-40b1-b5ba-1ca0f20994ea", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:12 GMT", + "Date": "Fri, 30 Oct 2020 13:01:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "14d67ad7-58f9-4bcc-8101-71fffcf7bb87", + "modelId": "95e963b7-85c5-4cdc-bc9d-90cbe6c05adb", "status": "ready", - "createdDateTime": "2020-09-10T23:54:59Z", - "lastUpdatedDateTime": "2020-09-10T23:55:12Z" + "createdDateTime": "2020-10-30T13:01:40Z", + "lastUpdatedDateTime": "2020-10-30T13:01:52Z" }, "keys": { "clusters": { @@ -560,19 +461,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d3767eab140ec340a4d4bd9bdf870f9c-cc162b8a49f35f43-00", + "traceparent": "00-3c88596e71bca44a97632d990da994e9-0f1ebd8a78f2804b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "621095570bcee5aa5adf2d13811be8a3", + "x-ms-client-request-id": "f76ec495c4e4554e5e5aa71e2f737e2c", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -580,229 +481,167 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "9d59f9bc-b9d1-4c8b-8f70-1fc5f4405590", + "apim-request-id": "2920d964-12cd-467f-8eba-31d03bf20cdd", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:55:12 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87/analyzeresults/c320cdc6-9d5d-44e3-b333-85dd2eec80a7", + "Date": "Fri, 30 Oct 2020 13:01:53 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb/analyzeresults/25397c7d-aabd-401a-b6c5-10cd56feac37", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87/analyzeResults/c320cdc6-9d5d-44e3-b333-85dd2eec80a7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb/analyzeResults/25397c7d-aabd-401a-b6c5-10cd56feac37", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b51906d377f133c213d80fc274ce533d", + "x-ms-client-request-id": "ee2707ccb0c58f69c9d142336cba86a1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5a73752f-65d5-4cf0-926b-a96a94d63293", + "apim-request-id": "00c19074-74ae-4664-8424-74290f78c3d6", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:12 GMT", + "Date": "Fri, 30 Oct 2020 13:01:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:55:13Z", - "lastUpdatedDateTime": "2020-09-10T23:55:13Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87/analyzeResults/c320cdc6-9d5d-44e3-b333-85dd2eec80a7", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d7db4e2924aaf9d3d09dac896be0ccc3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "53c2ad18-8d34-4283-a61d-3f6ccea0ce0e", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:55:13Z", - "lastUpdatedDateTime": "2020-09-10T23:55:14Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87/analyzeResults/c320cdc6-9d5d-44e3-b333-85dd2eec80a7", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "34c79819f272e002d2dc4ff5fbe7708c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0300b785-959a-4eae-8ba5-d25a34b359b1", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:15 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:55:13Z", - "lastUpdatedDateTime": "2020-09-10T23:55:14Z", - "analyzeResult": null + "createdDateTime": "2020-10-30T13:01:54Z", + "lastUpdatedDateTime": "2020-10-30T13:01:54Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87/analyzeResults/c320cdc6-9d5d-44e3-b333-85dd2eec80a7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb/analyzeResults/25397c7d-aabd-401a-b6c5-10cd56feac37", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "33e9f08b113faff93320e554ca38c732", + "x-ms-client-request-id": "07827a0499694ef4de023c9b3b8ca7f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d49a1f4-5613-44b4-9764-7dfa810c1fed", + "apim-request-id": "d7a8c9ee-1d10-43ef-a162-cf45b0811268", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:16 GMT", + "Date": "Fri, 30 Oct 2020 13:01:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:55:13Z", - "lastUpdatedDateTime": "2020-09-10T23:55:14Z", + "createdDateTime": "2020-10-30T13:01:54Z", + "lastUpdatedDateTime": "2020-10-30T13:01:55Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87/analyzeResults/c320cdc6-9d5d-44e3-b333-85dd2eec80a7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb/analyzeResults/25397c7d-aabd-401a-b6c5-10cd56feac37", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "dca94c0b1f0636cb4cfb04cdd4ddfde9", + "x-ms-client-request-id": "621095570bcee5aa5adf2d13811be8a3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bd9d1618-94d6-4a74-b79b-75e10790c3d4", + "apim-request-id": "18517308-b539-410d-aaf0-5e5796d147a2", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:17 GMT", + "Date": "Fri, 30 Oct 2020 13:01:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:55:13Z", - "lastUpdatedDateTime": "2020-09-10T23:55:14Z", + "createdDateTime": "2020-10-30T13:01:54Z", + "lastUpdatedDateTime": "2020-10-30T13:01:55Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87/analyzeResults/c320cdc6-9d5d-44e3-b333-85dd2eec80a7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb/analyzeResults/25397c7d-aabd-401a-b6c5-10cd56feac37", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7bfe202c99f608849e1800510dae1599", + "x-ms-client-request-id": "b51906d377f133c213d80fc274ce533d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ebd6d01-09db-4a20-b361-4f1bc007a321", + "apim-request-id": "447925c0-8063-4117-8f67-3aa32ccf20e1", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:18 GMT", + "Date": "Fri, 30 Oct 2020 13:01:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:55:13Z", - "lastUpdatedDateTime": "2020-09-10T23:55:14Z", + "createdDateTime": "2020-10-30T13:01:54Z", + "lastUpdatedDateTime": "2020-10-30T13:01:55Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87/analyzeResults/c320cdc6-9d5d-44e3-b333-85dd2eec80a7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb/analyzeResults/25397c7d-aabd-401a-b6c5-10cd56feac37", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "afe91d15943d6c8624b2e6430c2cda56", + "x-ms-client-request-id": "d7db4e2924aaf9d3d09dac896be0ccc3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56f145e5-ed24-410c-a058-ca1d4322b893", + "apim-request-id": "13929a80-91ac-4d4d-9ca6-013dffd5e99d", "Content-Length": "8958", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:55:19 GMT", + "Date": "Fri, 30 Oct 2020 13:02:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:55:13Z", - "lastUpdatedDateTime": "2020-09-10T23:55:19Z", + "createdDateTime": "2020-10-30T13:01:54Z", + "lastUpdatedDateTime": "2020-10-30T13:02:00Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1784,28 +1623,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/14d67ad7-58f9-4bcc-8101-71fffcf7bb87", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/95e963b7-85c5-4cdc-bc9d-90cbe6c05adb", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b3d0240f9c435e4fae9b5b0ce6ec5dab-07c8ba2dc2279947-00", + "traceparent": "00-970df349fc4caf40a55f3148e09f93d6-eb81b15e92602540-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "aa27fb234b3a723bc8a13dee1e79299d", + "x-ms-client-request-id": "34c79819f272e002d2dc4ff5fbe7708c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "6e3b2a80-2632-442b-9c22-32d739538a4d", + "apim-request-id": "ca2236f7-2d57-4fec-bcbf-6e472811af4c", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:55:19 GMT", + "Date": "Fri, 30 Oct 2020 13:02:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "118" }, "ResponseBody": [] } @@ -1813,7 +1652,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1063512013" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,True).json index 8edf0f6944dbe..db15eef249a33 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4f6d797f2e96f846a270c617cc9db7f6-43f5f63433f02641-00", + "traceparent": "00-dd7cf72d8764e443bcdc5463352ff5db-4c8f515d427b314c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d992b8fc5543f0f39c56d941daad28c", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "e7bacac4-2c16-457f-95a9-988fe62a6d2e", + "apim-request-id": "43990ce3-3716-44e9-b79b-159a739aed37", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:52:19 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc", + "Date": "Fri, 30 Oct 2020 12:54:57 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "142" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a16cc91d3bd06e065153e56ef8ad6fa5", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "86276b01-d382-4682-9734-bbb0eacf6b32", + "apim-request-id": "0a90cbc2-5b93-42c4-9549-175a10c366ce", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:19 GMT", + "Date": "Fri, 30 Oct 2020 12:54:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "4bb28ee5-af3d-4a05-86c6-467496a94dbc", + "modelId": "f88253ec-14dc-4054-8c5e-7e492149b9c9", "status": "creating", - "createdDateTime": "2020-09-10T23:52:19Z", - "lastUpdatedDateTime": "2020-09-10T23:52:19Z" + "createdDateTime": "2020-10-30T12:54:58Z", + "lastUpdatedDateTime": "2020-10-30T12:54:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8a00ec8e8dcee28ddbf7239995fea497", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a47b7558-f951-4c88-893e-b10349dce2d8", + "apim-request-id": "c91295e4-4360-463b-8293-352f57e63aa9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:20 GMT", + "Date": "Fri, 30 Oct 2020 12:54:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "4bb28ee5-af3d-4a05-86c6-467496a94dbc", + "modelId": "f88253ec-14dc-4054-8c5e-7e492149b9c9", "status": "creating", - "createdDateTime": "2020-09-10T23:52:19Z", - "lastUpdatedDateTime": "2020-09-10T23:52:19Z" + "createdDateTime": "2020-10-30T12:54:58Z", + "lastUpdatedDateTime": "2020-10-30T12:54:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f4d9d58cdfb354b0242a4b01dfa1478c", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a336b330-e9e9-4950-abab-1e0c9eec8e74", + "apim-request-id": "a704d4bd-2214-46dd-8235-6c97344e1cb3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:21 GMT", + "Date": "Fri, 30 Oct 2020 12:55:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "4bb28ee5-af3d-4a05-86c6-467496a94dbc", + "modelId": "f88253ec-14dc-4054-8c5e-7e492149b9c9", "status": "creating", - "createdDateTime": "2020-09-10T23:52:19Z", - "lastUpdatedDateTime": "2020-09-10T23:52:19Z" + "createdDateTime": "2020-10-30T12:54:58Z", + "lastUpdatedDateTime": "2020-10-30T12:54:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3006c85547aa90bd3c8ac6d9186dd953", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f5a6619-6973-4b94-ae59-3c0e8b0c9382", + "apim-request-id": "c9ec31e9-5eca-41d5-a73d-4575ca3f301b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:22 GMT", + "Date": "Fri, 30 Oct 2020 12:55:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "4bb28ee5-af3d-4a05-86c6-467496a94dbc", + "modelId": "f88253ec-14dc-4054-8c5e-7e492149b9c9", "status": "creating", - "createdDateTime": "2020-09-10T23:52:19Z", - "lastUpdatedDateTime": "2020-09-10T23:52:19Z" + "createdDateTime": "2020-10-30T12:54:58Z", + "lastUpdatedDateTime": "2020-10-30T12:54:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "22e14dae7bd4aff13cab66a4428b0239", "x-ms-return-client-request-id": "true" @@ -180,9 +180,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d846db8-3891-4b1f-98ba-5db5f516bb8f", + "apim-request-id": "55845f46-3905-48b8-ac26-29e01bb59b71", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:23 GMT", + "Date": "Fri, 30 Oct 2020 12:55:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -190,22 +190,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "4bb28ee5-af3d-4a05-86c6-467496a94dbc", + "modelId": "f88253ec-14dc-4054-8c5e-7e492149b9c9", "status": "creating", - "createdDateTime": "2020-09-10T23:52:19Z", - "lastUpdatedDateTime": "2020-09-10T23:52:19Z" + "createdDateTime": "2020-10-30T12:54:58Z", + "lastUpdatedDateTime": "2020-10-30T12:54:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cd4396b074f845ed1748b72919d73cb6", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a8a2869-5167-461e-9e2f-4c3eed968f33", + "apim-request-id": "2b7fef34-5b14-4310-a777-741199ebf1eb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:24 GMT", + "Date": "Fri, 30 Oct 2020 12:55:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "4bb28ee5-af3d-4a05-86c6-467496a94dbc", + "modelId": "f88253ec-14dc-4054-8c5e-7e492149b9c9", "status": "creating", - "createdDateTime": "2020-09-10T23:52:19Z", - "lastUpdatedDateTime": "2020-09-10T23:52:19Z" + "createdDateTime": "2020-10-30T12:54:58Z", + "lastUpdatedDateTime": "2020-10-30T12:54:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9252f85024c0dab7d656f3ffe1194eb0", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df3dd791-013f-40a5-b553-c6c554b65c6a", + "apim-request-id": "4417941e-3f3f-45d4-8464-e01e14f8dca4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:25 GMT", + "Date": "Fri, 30 Oct 2020 12:55:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "4bb28ee5-af3d-4a05-86c6-467496a94dbc", + "modelId": "f88253ec-14dc-4054-8c5e-7e492149b9c9", "status": "creating", - "createdDateTime": "2020-09-10T23:52:19Z", - "lastUpdatedDateTime": "2020-09-10T23:52:19Z" + "createdDateTime": "2020-10-30T12:54:58Z", + "lastUpdatedDateTime": "2020-10-30T12:54:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "81288c870c2a3a5a609c0b8bc3c89565", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f9a684c-1790-4e11-88a0-6c88b02bb4ef", + "apim-request-id": "c141bf12-d3fd-4154-b1e1-e1e9b851ce0b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:26 GMT", + "Date": "Fri, 30 Oct 2020 12:55:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "4bb28ee5-af3d-4a05-86c6-467496a94dbc", + "modelId": "f88253ec-14dc-4054-8c5e-7e492149b9c9", "status": "creating", - "createdDateTime": "2020-09-10T23:52:19Z", - "lastUpdatedDateTime": "2020-09-10T23:52:19Z" + "createdDateTime": "2020-10-30T12:54:58Z", + "lastUpdatedDateTime": "2020-10-30T12:54:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4953af6e70398b79df68f7a180ee64fd", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eed42445-a05b-40ab-a223-bbcc2845103c", + "apim-request-id": "2eaef21b-a6fe-4c20-a733-7c1f2849015f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:27 GMT", + "Date": "Fri, 30 Oct 2020 12:55:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "4bb28ee5-af3d-4a05-86c6-467496a94dbc", + "modelId": "f88253ec-14dc-4054-8c5e-7e492149b9c9", "status": "creating", - "createdDateTime": "2020-09-10T23:52:19Z", - "lastUpdatedDateTime": "2020-09-10T23:52:19Z" + "createdDateTime": "2020-10-30T12:54:58Z", + "lastUpdatedDateTime": "2020-10-30T12:54:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8da207fabbae448c9d183224182c170e", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11bcacc0-9cbd-419d-b78e-afd22c8b9eaa", + "apim-request-id": "119f6134-a98a-4985-9bb1-3deb0c9894aa", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:28 GMT", + "Date": "Fri, 30 Oct 2020 12:55:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "4bb28ee5-af3d-4a05-86c6-467496a94dbc", + "modelId": "f88253ec-14dc-4054-8c5e-7e492149b9c9", "status": "creating", - "createdDateTime": "2020-09-10T23:52:19Z", - "lastUpdatedDateTime": "2020-09-10T23:52:19Z" + "createdDateTime": "2020-10-30T12:54:58Z", + "lastUpdatedDateTime": "2020-10-30T12:54:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "31908ec104c51677129da2c215b8ba72", "x-ms-return-client-request-id": "true" @@ -378,86 +378,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "da0b1cc1-b33d-4a8d-9092-13bbd4f3fa20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "4bb28ee5-af3d-4a05-86c6-467496a94dbc", - "status": "creating", - "createdDateTime": "2020-09-10T23:52:19Z", - "lastUpdatedDateTime": "2020-09-10T23:52:19Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "bb910d370825b3b6230fac213e5572b2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "418e2d57-e5e3-44ea-a077-bc5dd6b40b52", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:30 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "4bb28ee5-af3d-4a05-86c6-467496a94dbc", - "status": "creating", - "createdDateTime": "2020-09-10T23:52:19Z", - "lastUpdatedDateTime": "2020-09-10T23:52:19Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f1e0e850325df538908b7a1119ca2fe5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "71710c2c-4219-4c2c-af05-9fde19be4d03", + "apim-request-id": "ee1524c0-e9b7-49bf-ad05-cfda83ecd133", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:31 GMT", + "Date": "Fri, 30 Oct 2020 12:55:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "4bb28ee5-af3d-4a05-86c6-467496a94dbc", + "modelId": "f88253ec-14dc-4054-8c5e-7e492149b9c9", "status": "ready", - "createdDateTime": "2020-09-10T23:52:19Z", - "lastUpdatedDateTime": "2020-09-10T23:52:31Z" + "createdDateTime": "2020-10-30T12:54:58Z", + "lastUpdatedDateTime": "2020-10-30T12:55:10Z" }, "keys": { "clusters": { @@ -527,19 +461,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a33ee7571259c24a82a4894331bd6477-f28e17f05859154c-00", + "traceparent": "00-6039d0abc4993944a09359f498d6ee20-a60fa4b16f19e24b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0becc05e5c9ab8e8d7dc0eb65856d8bd", + "x-ms-client-request-id": "bb910d370825b3b6230fac213e5572b2", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -547,260 +481,229 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "bca2375d-8660-4606-8ead-c9b15062b795", + "apim-request-id": "986351e0-5039-420a-8029-1bd051c5e472", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:52:31 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc/analyzeresults/3073dfea-0a04-46ac-a272-0d47821ac49f", + "Date": "Fri, 30 Oct 2020 12:55:11 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9/analyzeresults/9f72b699-988c-4160-8da7-07529d6c2bf6", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "183" + "x-envoy-upstream-service-time": "110" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc/analyzeResults/3073dfea-0a04-46ac-a272-0d47821ac49f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9/analyzeResults/9f72b699-988c-4160-8da7-07529d6c2bf6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2c71ef2ac8d80514d59c2b9a8ea59a59", + "x-ms-client-request-id": "f1e0e850325df538908b7a1119ca2fe5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d81f7b6-301d-497b-8d01-57b38aee6c02", + "apim-request-id": "ffee1525-e471-4139-95b1-c4b6fa7526bd", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:31 GMT", + "Date": "Fri, 30 Oct 2020 12:55:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:52:32Z", - "lastUpdatedDateTime": "2020-09-10T23:52:32Z" + "createdDateTime": "2020-10-30T12:55:11Z", + "lastUpdatedDateTime": "2020-10-30T12:55:11Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc/analyzeResults/3073dfea-0a04-46ac-a272-0d47821ac49f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9/analyzeResults/9f72b699-988c-4160-8da7-07529d6c2bf6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7ec3c7df6768f41800281a8124829c39", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4f63f5f5-72a5-4a94-a4ac-f996c96afc5b", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:52:32Z", - "lastUpdatedDateTime": "2020-09-10T23:52:33Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc/analyzeResults/3073dfea-0a04-46ac-a272-0d47821ac49f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "29e6bdb30358950cace636fd304d2931", + "x-ms-client-request-id": "0becc05e5c9ab8e8d7dc0eb65856d8bd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "425f7b1c-d135-41ff-9250-9c2f97cbb440", + "apim-request-id": "20fcfd9f-6ddb-443a-8a7b-380aed52d919", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:33 GMT", + "Date": "Fri, 30 Oct 2020 12:55:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:52:32Z", - "lastUpdatedDateTime": "2020-09-10T23:52:33Z", + "createdDateTime": "2020-10-30T12:55:11Z", + "lastUpdatedDateTime": "2020-10-30T12:55:13Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc/analyzeResults/3073dfea-0a04-46ac-a272-0d47821ac49f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9/analyzeResults/9f72b699-988c-4160-8da7-07529d6c2bf6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "91d6b5425a93c254d67d2bafad92e152", + "x-ms-client-request-id": "2c71ef2ac8d80514d59c2b9a8ea59a59", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9d24b5e4-9f77-4bed-ba98-17da0b323d10", + "apim-request-id": "69b4233f-955d-4a2d-8d43-b8b74a279d97", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:35 GMT", + "Date": "Fri, 30 Oct 2020 12:55:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:52:32Z", - "lastUpdatedDateTime": "2020-09-10T23:52:33Z", + "createdDateTime": "2020-10-30T12:55:11Z", + "lastUpdatedDateTime": "2020-10-30T12:55:13Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc/analyzeResults/3073dfea-0a04-46ac-a272-0d47821ac49f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9/analyzeResults/9f72b699-988c-4160-8da7-07529d6c2bf6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d1e7f1ff70bfdc00ba2dd281311ac3b3", + "x-ms-client-request-id": "7ec3c7df6768f41800281a8124829c39", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "568fcb6a-c7db-416d-854b-a8bb3627c2a4", + "apim-request-id": "6dd60901-00f3-44ca-b611-986f8b3b4e17", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:36 GMT", + "Date": "Fri, 30 Oct 2020 12:55:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:52:32Z", - "lastUpdatedDateTime": "2020-09-10T23:52:33Z", + "createdDateTime": "2020-10-30T12:55:11Z", + "lastUpdatedDateTime": "2020-10-30T12:55:13Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc/analyzeResults/3073dfea-0a04-46ac-a272-0d47821ac49f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9/analyzeResults/9f72b699-988c-4160-8da7-07529d6c2bf6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6f3ee8fe0aab58a6682353dad85de819", + "x-ms-client-request-id": "29e6bdb30358950cace636fd304d2931", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e588483a-b172-4b06-b852-68f949def21d", + "apim-request-id": "1c795638-4401-450d-9973-9a3f01207d4a", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:37 GMT", + "Date": "Fri, 30 Oct 2020 12:55:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:52:32Z", - "lastUpdatedDateTime": "2020-09-10T23:52:33Z", + "createdDateTime": "2020-10-30T12:55:11Z", + "lastUpdatedDateTime": "2020-10-30T12:55:13Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc/analyzeResults/3073dfea-0a04-46ac-a272-0d47821ac49f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9/analyzeResults/9f72b699-988c-4160-8da7-07529d6c2bf6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3efde3055866d172b4fad76687d291bc", + "x-ms-client-request-id": "91d6b5425a93c254d67d2bafad92e152", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0e749284-a793-46fe-8262-00b3573d881a", + "apim-request-id": "cfb1c14b-1a77-4fad-a612-2fab4604d5c6", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:38 GMT", + "Date": "Fri, 30 Oct 2020 12:55:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:52:32Z", - "lastUpdatedDateTime": "2020-09-10T23:52:33Z", + "createdDateTime": "2020-10-30T12:55:11Z", + "lastUpdatedDateTime": "2020-10-30T12:55:13Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc/analyzeResults/3073dfea-0a04-46ac-a272-0d47821ac49f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9/analyzeResults/9f72b699-988c-4160-8da7-07529d6c2bf6", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c4b178b97253f5a64b8e689b1d25045d", + "x-ms-client-request-id": "d1e7f1ff70bfdc00ba2dd281311ac3b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5eb0bdd9-6a71-442b-a451-f2f4988f554e", + "apim-request-id": "e576d590-53f7-4dc1-a1a8-c126b6dd53e0", "Content-Length": "30800", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:40 GMT", + "Date": "Fri, 30 Oct 2020 12:55:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:52:32Z", - "lastUpdatedDateTime": "2020-09-10T23:52:39Z", + "createdDateTime": "2020-10-30T12:55:11Z", + "lastUpdatedDateTime": "2020-10-30T12:55:18Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -4660,28 +4563,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4bb28ee5-af3d-4a05-86c6-467496a94dbc", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f88253ec-14dc-4054-8c5e-7e492149b9c9", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-834cf45fe7f78242b802050e362abe5e-6db21497a702f945-00", + "traceparent": "00-fcf18bc08bc2aa489b782f0444434f40-c6bbdb4c52eaa743-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4e7cb844841ca64c766dbab13340d095", + "x-ms-client-request-id": "6f3ee8fe0aab58a6682353dad85de819", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "f9e898a5-4589-4ab2-a745-b6ff24d53b1b", + "apim-request-id": "f4a29b7e-b16e-4563-97ec-72e834e10462", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:52:40 GMT", + "Date": "Fri, 30 Oct 2020 12:55:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": [] } @@ -4689,7 +4592,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1930889032" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,True)Async.json index 88a80dd4e61f2..5ca46ef4108a5 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(False,True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e9bf715f6d4eb044a43466cb38030a6c-0dcb45de88a52e49-00", + "traceparent": "00-0f1db7ddc42c0a4f891575b5ab1aea0a-0ef7983fd49fe649-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "51a02247f9ad6a1e319484324fd28239", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "31ff41af-d6de-489a-a8eb-57b085710336", + "apim-request-id": "06ff7437-c43c-47fc-afff-23afab0f8111", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:54:37 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "Date": "Fri, 30 Oct 2020 13:01:16 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "44b6917bcb7499b80d00285a24ddc328", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9dd834ce-3118-4e1e-87eb-0638fd930c94", + "apim-request-id": "45ce2800-c681-4d44-8138-b92d3a4b10ca", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:37 GMT", + "Date": "Fri, 30 Oct 2020 13:01:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "modelId": "f8a17fde-f07a-476e-b557-5d21154b90f8", "status": "creating", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:37Z" + "createdDateTime": "2020-10-30T13:01:16Z", + "lastUpdatedDateTime": "2020-10-30T13:01:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c30045dcea59d2852a9064ebb4c3e905", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f15bf79e-ec85-459b-b67b-a83a29c5259e", + "apim-request-id": "608a0b32-0d21-466d-808e-7c5dcbf55bdb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:38 GMT", + "Date": "Fri, 30 Oct 2020 13:01:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "modelId": "f8a17fde-f07a-476e-b557-5d21154b90f8", "status": "creating", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:37Z" + "createdDateTime": "2020-10-30T13:01:16Z", + "lastUpdatedDateTime": "2020-10-30T13:01:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "99da60f9d21f7b82690744acd1c34553", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb723cbd-a8c9-4a27-bf6c-9d9f8a7499bb", + "apim-request-id": "bf34b2c0-2878-444e-a5e1-dbf7bb87121e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:39 GMT", + "Date": "Fri, 30 Oct 2020 13:01:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "modelId": "f8a17fde-f07a-476e-b557-5d21154b90f8", "status": "creating", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:37Z" + "createdDateTime": "2020-10-30T13:01:16Z", + "lastUpdatedDateTime": "2020-10-30T13:01:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0a565bd0bfd290df0ce41ae467cde449", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "13517124-eade-4c67-8eb3-33c1282ce0dd", + "apim-request-id": "c7b6cc4d-1857-4fb7-8c9c-f43217b70e5e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:40 GMT", + "Date": "Fri, 30 Oct 2020 13:01:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "modelId": "f8a17fde-f07a-476e-b557-5d21154b90f8", "status": "creating", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:37Z" + "createdDateTime": "2020-10-30T13:01:16Z", + "lastUpdatedDateTime": "2020-10-30T13:01:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c461221629030a09c3845952a6d80166", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c10cd5d6-8374-4f0b-902f-ede52df038a2", + "apim-request-id": "770b49e9-67aa-4199-aa5f-1f9296aec86b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:41 GMT", + "Date": "Fri, 30 Oct 2020 13:01:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "modelId": "f8a17fde-f07a-476e-b557-5d21154b90f8", "status": "creating", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:37Z" + "createdDateTime": "2020-10-30T13:01:16Z", + "lastUpdatedDateTime": "2020-10-30T13:01:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "581a104adf6c393281498d3bb79e139b", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ecc82533-4fa0-4f60-addf-f2b5f6bb2180", + "apim-request-id": "43e3bed2-6050-4bda-ac2d-ca49d1aeae6b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:42 GMT", + "Date": "Fri, 30 Oct 2020 13:01:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "modelId": "f8a17fde-f07a-476e-b557-5d21154b90f8", "status": "creating", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:37Z" + "createdDateTime": "2020-10-30T13:01:16Z", + "lastUpdatedDateTime": "2020-10-30T13:01:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ae95fa228161a650524b474e658cea33", "x-ms-return-client-request-id": "true" @@ -246,9 +246,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "48e80667-3b73-45a2-b270-712bc15e41f8", + "apim-request-id": "89cbc448-6563-4f79-a625-c3de4be751d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:43 GMT", + "Date": "Fri, 30 Oct 2020 13:01:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -256,22 +256,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "modelId": "f8a17fde-f07a-476e-b557-5d21154b90f8", "status": "creating", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:37Z" + "createdDateTime": "2020-10-30T13:01:16Z", + "lastUpdatedDateTime": "2020-10-30T13:01:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5799b4e38cb337dcef2743b99cce5324", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d6e489d7-83de-41fa-be24-69adfd30bdd7", + "apim-request-id": "7f2a3f2b-b831-4787-930b-2e64ada52ee8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:44 GMT", + "Date": "Fri, 30 Oct 2020 13:01:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "modelId": "f8a17fde-f07a-476e-b557-5d21154b90f8", "status": "creating", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:37Z" + "createdDateTime": "2020-10-30T13:01:16Z", + "lastUpdatedDateTime": "2020-10-30T13:01:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ab30bd705242c804bf73052098e4d4f4", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6dac50e0-5558-4d21-918b-2643d72641c5", + "apim-request-id": "1750ccf6-8be1-41d9-92f3-dcfd9ffe992a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:45 GMT", + "Date": "Fri, 30 Oct 2020 13:01:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "modelId": "f8a17fde-f07a-476e-b557-5d21154b90f8", "status": "creating", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:37Z" + "createdDateTime": "2020-10-30T13:01:16Z", + "lastUpdatedDateTime": "2020-10-30T13:01:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0357595fbc0495e81d5ebe393e970a84", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "76f0709d-9382-490a-bdcd-180a77dccf15", + "apim-request-id": "94e7db73-519b-4cd5-a402-093254e2daea", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:46 GMT", + "Date": "Fri, 30 Oct 2020 13:01:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "modelId": "f8a17fde-f07a-476e-b557-5d21154b90f8", "status": "creating", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:37Z" + "createdDateTime": "2020-10-30T13:01:16Z", + "lastUpdatedDateTime": "2020-10-30T13:01:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a7dd22f83f5b90f0afd1983f86bc9e0b", "x-ms-return-client-request-id": "true" @@ -378,75 +378,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94335b7e-baba-42ef-a529-9ecd51f52f44", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:47 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", - "status": "creating", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:37Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "425a4e535076b420d59b8ee494ca8a28", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f726ab1d-7fe6-43e3-8f09-867030945984", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", - "status": "creating", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:37Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "762880692c071f9868c7533323a90e61", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "019374c0-9436-46e0-9ae9-b2dc24d6aaa0", + "apim-request-id": "9c40805c-fb59-4681-905f-fef12eeb7a2e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:49 GMT", + "Date": "Fri, 30 Oct 2020 13:01:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -454,43 +388,43 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "modelId": "f8a17fde-f07a-476e-b557-5d21154b90f8", "status": "creating", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:37Z" + "createdDateTime": "2020-10-30T13:01:16Z", + "lastUpdatedDateTime": "2020-10-30T13:01:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "efe6b3bfc73da80e0128d2c0b00cfce5", + "x-ms-client-request-id": "425a4e535076b420d59b8ee494ca8a28", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c977f1f0-ada5-4e07-803a-6b50d7fbd452", + "apim-request-id": "d2919ead-e61a-4160-ba4b-0ab2cd9e982b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:50 GMT", + "Date": "Fri, 30 Oct 2020 13:01:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "modelInfo": { - "modelId": "fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "modelId": "f8a17fde-f07a-476e-b557-5d21154b90f8", "status": "ready", - "createdDateTime": "2020-09-10T23:54:37Z", - "lastUpdatedDateTime": "2020-09-10T23:54:51Z" + "createdDateTime": "2020-10-30T13:01:16Z", + "lastUpdatedDateTime": "2020-10-30T13:01:30Z" }, "keys": { "clusters": { @@ -560,19 +494,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3952ce2ad151fa44b4742d59639e09a7-0482daafd8626142-00", + "traceparent": "00-d8bc9ed700a3c84eb4e09a8488c02e86-2cb86b64011c094b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "06d6704628942703b63ad9aefced902b", + "x-ms-client-request-id": "762880692c071f9868c7533323a90e61", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -580,259 +514,229 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3162c16b-b37d-411c-9d80-89063ce1a474", + "apim-request-id": "9a07bf51-d06c-48f4-88c4-d9e020ee0b19", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:54:51 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290/analyzeresults/1557d6a2-a8b8-4ada-8023-abb3a9f2b394", + "Date": "Fri, 30 Oct 2020 13:01:31 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8/analyzeresults/8c29795e-f4ad-47c6-a4c4-6400e8355188", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "108" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290/analyzeResults/1557d6a2-a8b8-4ada-8023-abb3a9f2b394", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e1242c8c9ae4a1ea727f74df59d76e5c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "95f40ed3-f0ff-4f99-b9d4-16364d575ff6", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-10T23:54:51Z", - "lastUpdatedDateTime": "2020-09-10T23:54:51Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290/analyzeResults/1557d6a2-a8b8-4ada-8023-abb3a9f2b394", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8/analyzeResults/8c29795e-f4ad-47c6-a4c4-6400e8355188", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b3ec6ecb08d297cdafbf3903ed5fab14", + "x-ms-client-request-id": "efe6b3bfc73da80e0128d2c0b00cfce5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "76588a87-97af-4d18-83e6-9dbb318d91b2", + "apim-request-id": "d6998b76-fdd8-44d4-a034-4e51eb2590ef", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:52 GMT", + "Date": "Fri, 30 Oct 2020 13:01:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:54:51Z", - "lastUpdatedDateTime": "2020-09-10T23:54:51Z" + "createdDateTime": "2020-10-30T13:01:31Z", + "lastUpdatedDateTime": "2020-10-30T13:01:31Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290/analyzeResults/1557d6a2-a8b8-4ada-8023-abb3a9f2b394", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8/analyzeResults/8c29795e-f4ad-47c6-a4c4-6400e8355188", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8434a7971ae7ac0085349314b324cdde", + "x-ms-client-request-id": "06d6704628942703b63ad9aefced902b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "89b0e5ea-3ce0-4940-adaa-56fe110e6651", + "apim-request-id": "5345bcc6-f3fb-4fce-b30c-740f91e51d57", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:53 GMT", + "Date": "Fri, 30 Oct 2020 13:01:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:54:51Z", - "lastUpdatedDateTime": "2020-09-10T23:54:53Z", + "createdDateTime": "2020-10-30T13:01:31Z", + "lastUpdatedDateTime": "2020-10-30T13:01:32Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290/analyzeResults/1557d6a2-a8b8-4ada-8023-abb3a9f2b394", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8/analyzeResults/8c29795e-f4ad-47c6-a4c4-6400e8355188", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8ee37dcbdc0184585f8d322560e7b313", + "x-ms-client-request-id": "e1242c8c9ae4a1ea727f74df59d76e5c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "778436eb-dc63-4389-ad0a-d3e9348a60d0", + "apim-request-id": "1ee48c38-20a1-4218-9101-d828fff4f2e3", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:55 GMT", + "Date": "Fri, 30 Oct 2020 13:01:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:54:51Z", - "lastUpdatedDateTime": "2020-09-10T23:54:53Z", + "createdDateTime": "2020-10-30T13:01:31Z", + "lastUpdatedDateTime": "2020-10-30T13:01:32Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290/analyzeResults/1557d6a2-a8b8-4ada-8023-abb3a9f2b394", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8/analyzeResults/8c29795e-f4ad-47c6-a4c4-6400e8355188", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b24760d3eaa3b0746d402e9e74b8e38a", + "x-ms-client-request-id": "b3ec6ecb08d297cdafbf3903ed5fab14", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f2aee38-05b5-4827-8787-e337f62b139b", + "apim-request-id": "e9c8bcf5-a0bc-4305-99e3-860a9e0ef0fe", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:56 GMT", + "Date": "Fri, 30 Oct 2020 13:01:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:54:51Z", - "lastUpdatedDateTime": "2020-09-10T23:54:53Z", + "createdDateTime": "2020-10-30T13:01:31Z", + "lastUpdatedDateTime": "2020-10-30T13:01:32Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290/analyzeResults/1557d6a2-a8b8-4ada-8023-abb3a9f2b394", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8/analyzeResults/8c29795e-f4ad-47c6-a4c4-6400e8355188", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "70375bf11d7bba134eb0245ae8db4b9d", + "x-ms-client-request-id": "8434a7971ae7ac0085349314b324cdde", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1921a49c-b011-4998-8cb2-f8f8b6f8ee7c", + "apim-request-id": "eb26562b-bf54-4628-97c6-a0bda9aab062", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:57 GMT", + "Date": "Fri, 30 Oct 2020 13:01:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "77" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:54:51Z", - "lastUpdatedDateTime": "2020-09-10T23:54:53Z", + "createdDateTime": "2020-10-30T13:01:31Z", + "lastUpdatedDateTime": "2020-10-30T13:01:32Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290/analyzeResults/1557d6a2-a8b8-4ada-8023-abb3a9f2b394", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8/analyzeResults/8c29795e-f4ad-47c6-a4c4-6400e8355188", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "534080811bdce03a093321c0aeba0fa7", + "x-ms-client-request-id": "8ee37dcbdc0184585f8d322560e7b313", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28d05720-4e32-4361-adf3-bdacf8e7d15b", + "apim-request-id": "98a4220b-4317-4b66-94d8-8421d3eae6d4", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:58 GMT", + "Date": "Fri, 30 Oct 2020 13:01:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:54:51Z", - "lastUpdatedDateTime": "2020-09-10T23:54:53Z", + "createdDateTime": "2020-10-30T13:01:31Z", + "lastUpdatedDateTime": "2020-10-30T13:01:32Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290/analyzeResults/1557d6a2-a8b8-4ada-8023-abb3a9f2b394", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8/analyzeResults/8c29795e-f4ad-47c6-a4c4-6400e8355188", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0533a7aa43afb6974d8d64f3c619c891", + "x-ms-client-request-id": "b24760d3eaa3b0746d402e9e74b8e38a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b143457-932d-41bc-b949-c6af8d33cc58", + "apim-request-id": "a7c64d64-80b7-4082-ac9b-1f2c03b1d4d5", "Content-Length": "30800", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:59 GMT", + "Date": "Fri, 30 Oct 2020 13:01:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "94" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:54:51Z", - "lastUpdatedDateTime": "2020-09-10T23:54:58Z", + "createdDateTime": "2020-10-30T13:01:31Z", + "lastUpdatedDateTime": "2020-10-30T13:01:38Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -4692,28 +4596,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd1c70bd-7fff-4cb2-b15b-319d665d6290", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f8a17fde-f07a-476e-b557-5d21154b90f8", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dd28d8b0af9cb34db1c1a360d5fef264-6af7f4270ce2cf4a-00", + "traceparent": "00-fb1023605143e44889e6302a7eb70806-0bcfafe4e7c48a47-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f41c90f48f77d6ad20576648fc520c93", + "x-ms-client-request-id": "70375bf11d7bba134eb0245ae8db4b9d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "cfc37013-c370-4248-8606-b2e75a2bd7a4", + "apim-request-id": "6ee7aa69-7b10-4f6c-8a0f-7be6a526d9ba", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:54:59 GMT", + "Date": "Fri, 30 Oct 2020 13:01:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": [] } @@ -4721,7 +4625,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1175306238" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,False).json index c45ff52eaa2f2..aef9feadf14ae 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ec8fd314eed3ac418b120e2a40f7e885-80140ff8fb009745-00", + "traceparent": "00-07a9c5f21f3e5d4b946005f389fce2ce-521e5655d8e4a14d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "01b8317011b4e3d4faaa82f5e7b6bd0d", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "5c51c2a7-eba4-4df1-91ba-4e3dc28eec3e", + "apim-request-id": "7a72db42-f6fb-4035-89e0-c0fbc0dddc3b", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:51:54 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", + "Date": "Fri, 30 Oct 2020 12:54:37 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f3c7637b6c9799e7260a3ac79082db00", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f660a45-c1fc-4e02-b7ef-75e57203f78c", + "apim-request-id": "4b02be79-1fe8-4791-949b-01634332de94", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:54 GMT", + "Date": "Fri, 30 Oct 2020 12:54:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", + "modelId": "d1a79e74-6c97-437c-9e8b-b9a4a6492e59", "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" + "createdDateTime": "2020-10-30T12:54:37Z", + "lastUpdatedDateTime": "2020-10-30T12:54:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1d81c821b8158d2dfb3aa0612252fe6d", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c203ad2-fd3c-4833-aec9-0370bf2c9dd4", + "apim-request-id": "29ad1207-e776-480e-8625-6040211aa4cc", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:55 GMT", + "Date": "Fri, 30 Oct 2020 12:54:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", + "modelId": "d1a79e74-6c97-437c-9e8b-b9a4a6492e59", "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" + "createdDateTime": "2020-10-30T12:54:37Z", + "lastUpdatedDateTime": "2020-10-30T12:54:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "945214210cc604f64a1edaa9d70d5378", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "95ba2fb8-c4c6-4310-9e7c-5aaf4620b636", + "apim-request-id": "153446b3-ef8a-46cd-a98f-f4838ed24ec6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:56 GMT", + "Date": "Fri, 30 Oct 2020 12:54:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", + "modelId": "d1a79e74-6c97-437c-9e8b-b9a4a6492e59", "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" + "createdDateTime": "2020-10-30T12:54:37Z", + "lastUpdatedDateTime": "2020-10-30T12:54:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1fd482cf9f35c3f7353af75ccc8577d4", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b5767cc-3320-43a0-91a5-1ba10b621d9e", + "apim-request-id": "461814f0-b0fe-4647-aff4-70aaa0a93a22", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:57 GMT", + "Date": "Fri, 30 Oct 2020 12:54:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", + "modelId": "d1a79e74-6c97-437c-9e8b-b9a4a6492e59", "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" + "createdDateTime": "2020-10-30T12:54:37Z", + "lastUpdatedDateTime": "2020-10-30T12:54:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7ca6cc0c472f1439d27cd3f7dd83b6ed", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8afc87e4-a042-4e75-b63e-cfa78ba31a4f", + "apim-request-id": "8ac86235-21e3-4199-9b36-042427fda68e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:59 GMT", + "Date": "Fri, 30 Oct 2020 12:54:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", + "modelId": "d1a79e74-6c97-437c-9e8b-b9a4a6492e59", "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" + "createdDateTime": "2020-10-30T12:54:37Z", + "lastUpdatedDateTime": "2020-10-30T12:54:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a09227e7de7d81381d8e5e8c149938c4", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7fd6dc50-23a2-4fb5-860a-0f99aa837aef", + "apim-request-id": "5104845c-c967-4d7e-8024-a9360f8f3616", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:00 GMT", + "Date": "Fri, 30 Oct 2020 12:54:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", + "modelId": "d1a79e74-6c97-437c-9e8b-b9a4a6492e59", "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" + "createdDateTime": "2020-10-30T12:54:37Z", + "lastUpdatedDateTime": "2020-10-30T12:54:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0a9d06a7d767874848c04cb8cc00e6b1", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb1733d8-9a5c-48ae-b833-acbc32f24b12", + "apim-request-id": "10dc09fc-207b-46a2-b590-6a2fe5ab5193", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:02 GMT", + "Date": "Fri, 30 Oct 2020 12:54:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", + "modelId": "d1a79e74-6c97-437c-9e8b-b9a4a6492e59", "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" + "createdDateTime": "2020-10-30T12:54:37Z", + "lastUpdatedDateTime": "2020-10-30T12:54:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a4750a84d6f22d5694245ea1e9adff38", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "69e5e1cb-c0b1-4393-b96a-450b51efd37b", + "apim-request-id": "8c198e59-c36c-4755-b4d0-ae869106bcfd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:03 GMT", + "Date": "Fri, 30 Oct 2020 12:54:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", + "modelId": "d1a79e74-6c97-437c-9e8b-b9a4a6492e59", "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" + "createdDateTime": "2020-10-30T12:54:37Z", + "lastUpdatedDateTime": "2020-10-30T12:54:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d74f0e43ace61086df0b58bd927fb41c", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "131c0d72-b138-4293-bbf3-711ac0577d5a", + "apim-request-id": "6ae6d1c8-0447-4c35-9478-c933113c34ce", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:04 GMT", + "Date": "Fri, 30 Oct 2020 12:54:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", + "modelId": "d1a79e74-6c97-437c-9e8b-b9a4a6492e59", "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" + "createdDateTime": "2020-10-30T12:54:37Z", + "lastUpdatedDateTime": "2020-10-30T12:54:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0a08aca79423d0d1af6f754278a69e9b", "x-ms-return-client-request-id": "true" @@ -345,218 +345,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "24b59617-5ae6-406b-b868-0c84c4e8ffcd", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "bd7514c10fb0d7cb8465c5e77e989b15", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d8ee0e62-8443-4e5b-a0fc-195843b482b4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:06 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3cfa4270f4a4af143d7f277636439838", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a5b025a3-7722-4842-85f0-740f162ce816", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:07 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7dfcbc6cf70a986be03086becee95117", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b2459e22-78a8-4669-8c77-5d4919610c69", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:08 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "35d260d461acccf6ffc58031e754a140", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "edc674ad-d788-4041-af9b-b92b1ccef73e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c17a8ccc1d9c780bd6615c746e55e053", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3333f400-3d5c-4399-89e2-e80021ad7fd5", + "apim-request-id": "1754fc0d-5170-42f9-bdf6-f8edc1036cfc", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:10 GMT", + "Date": "Fri, 30 Oct 2020 12:54:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:51:55Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d6a2102d62710b8bc6307e44773ab08c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "28d6d6c3-4aa1-4a78-ad04-85d2c7242d3a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", + "modelId": "d1a79e74-6c97-437c-9e8b-b9a4a6492e59", "status": "ready", - "createdDateTime": "2020-09-10T23:51:55Z", - "lastUpdatedDateTime": "2020-09-10T23:52:10Z" + "createdDateTime": "2020-10-30T12:54:37Z", + "lastUpdatedDateTime": "2020-10-30T12:54:49Z" }, "keys": { "clusters": { @@ -626,278 +428,216 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "479269", "Content-Type": "image/jpeg", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aee9033bb6fb2e46af60cc56291a3a75-a9b7edf0175d5a49-00", + "traceparent": "00-a76293ea20c387498e8b9cb744e4d1ad-b3fbd3ba22236f44-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "42f1468f8f6eb67a55595f4a05825da9", + "x-ms-client-request-id": "bd7514c10fb0d7cb8465c5e77e989b15", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6e7b2808-449d-4718-ba45-a161b16ed8f2", + "apim-request-id": "c3cbf6da-b54f-4974-af8f-ff8bdd2872d6", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:52:11 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2/analyzeresults/8791c0fe-0e64-48a4-b95e-1a3c051b09e7", + "Date": "Fri, 30 Oct 2020 12:54:51 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59/analyzeresults/412beb24-e911-4a65-9552-1f4f1698918d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "274" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2/analyzeResults/8791c0fe-0e64-48a4-b95e-1a3c051b09e7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59/analyzeResults/412beb24-e911-4a65-9552-1f4f1698918d", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d7042de4cab26ace016ffb6b9fc6019b", + "x-ms-client-request-id": "3cfa4270f4a4af143d7f277636439838", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c692a24c-4d84-49ce-9837-3ab242a05e26", + "apim-request-id": "1c654e05-417a-4c4b-b907-5fd6e3aadc77", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:11 GMT", + "Date": "Fri, 30 Oct 2020 12:54:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:52:11Z", - "lastUpdatedDateTime": "2020-09-10T23:52:11Z" + "createdDateTime": "2020-10-30T12:54:51Z", + "lastUpdatedDateTime": "2020-10-30T12:54:51Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2/analyzeResults/8791c0fe-0e64-48a4-b95e-1a3c051b09e7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59/analyzeResults/412beb24-e911-4a65-9552-1f4f1698918d", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "28e5cfb19e639de495eb811802400644", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8f4d6e25-677a-40de-b0a4-c420af96ac79", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:52:11Z", - "lastUpdatedDateTime": "2020-09-10T23:52:12Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2/analyzeResults/8791c0fe-0e64-48a4-b95e-1a3c051b09e7", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4960d4d2d835c4d9778740ff940e178e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5d90d64c-f054-4ee0-942c-19608ca3403b", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:13 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:52:11Z", - "lastUpdatedDateTime": "2020-09-10T23:52:12Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2/analyzeResults/8791c0fe-0e64-48a4-b95e-1a3c051b09e7", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3599c357359c4645496742c649b667c0", + "x-ms-client-request-id": "7dfcbc6cf70a986be03086becee95117", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6a24132c-6b73-4860-8ab3-4674757a3949", + "apim-request-id": "7d3abcf3-3030-41f7-a583-22b0f7e03dfd", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:14 GMT", + "Date": "Fri, 30 Oct 2020 12:54:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:52:11Z", - "lastUpdatedDateTime": "2020-09-10T23:52:12Z", + "createdDateTime": "2020-10-30T12:54:51Z", + "lastUpdatedDateTime": "2020-10-30T12:54:52Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2/analyzeResults/8791c0fe-0e64-48a4-b95e-1a3c051b09e7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59/analyzeResults/412beb24-e911-4a65-9552-1f4f1698918d", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ca99b769b765d866f620b0dc5de40886", + "x-ms-client-request-id": "35d260d461acccf6ffc58031e754a140", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6966c1d3-c10a-4289-be72-a34210d80d3e", + "apim-request-id": "76939196-1e1e-41a9-9fa0-e78c835cc8ba", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:15 GMT", + "Date": "Fri, 30 Oct 2020 12:54:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:52:11Z", - "lastUpdatedDateTime": "2020-09-10T23:52:12Z", + "createdDateTime": "2020-10-30T12:54:51Z", + "lastUpdatedDateTime": "2020-10-30T12:54:52Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2/analyzeResults/8791c0fe-0e64-48a4-b95e-1a3c051b09e7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59/analyzeResults/412beb24-e911-4a65-9552-1f4f1698918d", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3fc0f2d3d0a69ca78f1900ce96137ac1", + "x-ms-client-request-id": "c17a8ccc1d9c780bd6615c746e55e053", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a65fcdeb-f6bf-4717-a088-c4ae241ac5d8", + "apim-request-id": "cec80d1a-fabf-421c-983a-af98cbb26f65", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:16 GMT", + "Date": "Fri, 30 Oct 2020 12:54:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:52:11Z", - "lastUpdatedDateTime": "2020-09-10T23:52:12Z", + "createdDateTime": "2020-10-30T12:54:51Z", + "lastUpdatedDateTime": "2020-10-30T12:54:52Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2/analyzeResults/8791c0fe-0e64-48a4-b95e-1a3c051b09e7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59/analyzeResults/412beb24-e911-4a65-9552-1f4f1698918d", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "dc9680204d75a0285dc13f7c8569e864", + "x-ms-client-request-id": "d6a2102d62710b8bc6307e44773ab08c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1fcd71db-9585-4fc3-9771-ee2fa71843be", + "apim-request-id": "3c3579ff-3daa-4385-a305-dc076648a2e4", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:17 GMT", + "Date": "Fri, 30 Oct 2020 12:54:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:52:11Z", - "lastUpdatedDateTime": "2020-09-10T23:52:12Z", + "createdDateTime": "2020-10-30T12:54:51Z", + "lastUpdatedDateTime": "2020-10-30T12:54:52Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2/analyzeResults/8791c0fe-0e64-48a4-b95e-1a3c051b09e7", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59/analyzeResults/412beb24-e911-4a65-9552-1f4f1698918d", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "56f2bc5e27f5981910fc3b4cb79741e3", + "x-ms-client-request-id": "42f1468f8f6eb67a55595f4a05825da9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7118914-9bc4-4f59-9163-44da7c52cd83", + "apim-request-id": "96fbb16b-5ed2-4bdb-8a0c-17da0067e628", "Content-Length": "8958", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:52:18 GMT", + "Date": "Fri, 30 Oct 2020 12:54:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:52:11Z", - "lastUpdatedDateTime": "2020-09-10T23:52:18Z", + "createdDateTime": "2020-10-30T12:54:51Z", + "lastUpdatedDateTime": "2020-10-30T12:54:57Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1879,28 +1619,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/334b05e4-2c9f-44ee-ac58-3c94eee6fbf2", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d1a79e74-6c97-437c-9e8b-b9a4a6492e59", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-06662008d727f04dbc4a163443c426ac-db3c63242de64c42-00", + "traceparent": "00-b9d39af7c147b841b715cb258ee8fce9-85af7cb29f66d343-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "dcbceea52b4e8610c920e2e5912b1725", + "x-ms-client-request-id": "d7042de4cab26ace016ffb6b9fc6019b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "35bdc581-17d9-431a-9255-7727d6f1f0a0", + "apim-request-id": "257ec124-db03-4236-9384-f3dee0bd1906", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:52:18 GMT", + "Date": "Fri, 30 Oct 2020 12:54:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": [] } @@ -1908,7 +1648,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1572742208" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,False)Async.json index 94ce1ccfd458c..d73614728cd42 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0a82566cb8e9f3458b179e2c3aff6c23-f44ce04b5aeb424c-00", + "traceparent": "00-5ddf3243d1382646940004a58ce5cc31-845229467898694b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "836a3afaab52616da1e31d0af3344aeb", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "8154d9c1-44bb-4bca-9ccc-c74c51c43e0c", + "apim-request-id": "db99db42-ce40-4c5c-bd00-2e5ea615a890", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:54:07 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb", + "Date": "Fri, 30 Oct 2020 13:00:55 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-envoy-upstream-service-time": "91" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e0d345c8bc1c28c85715de79cc6445f8", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1473b7ac-5d42-4b97-82f3-fc93490991f2", + "apim-request-id": "d5f0b8a7-a45d-4114-ba33-96513caadafd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:07 GMT", + "Date": "Fri, 30 Oct 2020 13:00:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "fff30656-43e9-4f8d-b637-e26fc9798ccb", + "modelId": "00f52764-2c1d-4eba-b087-d0785983b030", "status": "creating", - "createdDateTime": "2020-09-10T23:54:07Z", - "lastUpdatedDateTime": "2020-09-10T23:54:07Z" + "createdDateTime": "2020-10-30T13:00:55Z", + "lastUpdatedDateTime": "2020-10-30T13:00:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5bd8d5eb59b8944086e3fb41d40a1c68", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ccc81176-1b8d-4d3c-88b2-81926f3cddd6", + "apim-request-id": "911e8073-1201-444a-8ed5-6015bca8c688", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:08 GMT", + "Date": "Fri, 30 Oct 2020 13:00:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "fff30656-43e9-4f8d-b637-e26fc9798ccb", + "modelId": "00f52764-2c1d-4eba-b087-d0785983b030", "status": "creating", - "createdDateTime": "2020-09-10T23:54:07Z", - "lastUpdatedDateTime": "2020-09-10T23:54:07Z" + "createdDateTime": "2020-10-30T13:00:55Z", + "lastUpdatedDateTime": "2020-10-30T13:00:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3b2226a502933d9672412b3ccdf4943d", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4f6b1b5-f71a-4957-bcbd-98b435ce63d6", + "apim-request-id": "59d22bab-1ef1-4bf1-834c-5e1f127c2ed7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:09 GMT", + "Date": "Fri, 30 Oct 2020 13:00:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "fff30656-43e9-4f8d-b637-e26fc9798ccb", + "modelId": "00f52764-2c1d-4eba-b087-d0785983b030", "status": "creating", - "createdDateTime": "2020-09-10T23:54:07Z", - "lastUpdatedDateTime": "2020-09-10T23:54:07Z" + "createdDateTime": "2020-10-30T13:00:55Z", + "lastUpdatedDateTime": "2020-10-30T13:00:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1e1e249eee5c6e33043e5a39c186544d", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e42c5d0d-16f8-4bd0-876d-abd644647fe3", + "apim-request-id": "06545b21-0d90-4e34-bbb1-04eb118543b8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:10 GMT", + "Date": "Fri, 30 Oct 2020 13:00:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "fff30656-43e9-4f8d-b637-e26fc9798ccb", + "modelId": "00f52764-2c1d-4eba-b087-d0785983b030", "status": "creating", - "createdDateTime": "2020-09-10T23:54:07Z", - "lastUpdatedDateTime": "2020-09-10T23:54:07Z" + "createdDateTime": "2020-10-30T13:00:55Z", + "lastUpdatedDateTime": "2020-10-30T13:00:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a6d475f90942e8653e9ae9762e04c791", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d1584c8-f058-4d9a-9313-a7ae794b1c24", + "apim-request-id": "d1f719e6-5a80-4f44-8d9e-cddba26b151d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:11 GMT", + "Date": "Fri, 30 Oct 2020 13:01:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "fff30656-43e9-4f8d-b637-e26fc9798ccb", + "modelId": "00f52764-2c1d-4eba-b087-d0785983b030", "status": "creating", - "createdDateTime": "2020-09-10T23:54:07Z", - "lastUpdatedDateTime": "2020-09-10T23:54:07Z" + "createdDateTime": "2020-10-30T13:00:55Z", + "lastUpdatedDateTime": "2020-10-30T13:00:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "afa3be4efdebb60bf2b33655a85c7ceb", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b456bfc-1d10-4269-be6f-87c088540bf0", + "apim-request-id": "0df89d6d-115d-49b8-befa-0e15f91ff552", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:12 GMT", + "Date": "Fri, 30 Oct 2020 13:01:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "fff30656-43e9-4f8d-b637-e26fc9798ccb", + "modelId": "00f52764-2c1d-4eba-b087-d0785983b030", "status": "creating", - "createdDateTime": "2020-09-10T23:54:07Z", - "lastUpdatedDateTime": "2020-09-10T23:54:07Z" + "createdDateTime": "2020-10-30T13:00:55Z", + "lastUpdatedDateTime": "2020-10-30T13:00:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5743ddedee1f94fabf36dfc105bc4000", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bcf73fbe-54c3-41ca-ad8b-01d605ac3b2a", + "apim-request-id": "13d1799c-64df-408f-9d9e-54718729e88a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:13 GMT", + "Date": "Fri, 30 Oct 2020 13:01:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "fff30656-43e9-4f8d-b637-e26fc9798ccb", + "modelId": "00f52764-2c1d-4eba-b087-d0785983b030", "status": "creating", - "createdDateTime": "2020-09-10T23:54:07Z", - "lastUpdatedDateTime": "2020-09-10T23:54:07Z" + "createdDateTime": "2020-10-30T13:00:55Z", + "lastUpdatedDateTime": "2020-10-30T13:00:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "03ebc876a4e3fb626a1db38ed20f3fe1", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "182e3843-65bb-4ee7-982b-e289047a0df8", + "apim-request-id": "7701672b-6641-4609-8877-eb00555173e3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:14 GMT", + "Date": "Fri, 30 Oct 2020 13:01:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "modelInfo": { - "modelId": "fff30656-43e9-4f8d-b637-e26fc9798ccb", + "modelId": "00f52764-2c1d-4eba-b087-d0785983b030", "status": "creating", - "createdDateTime": "2020-09-10T23:54:07Z", - "lastUpdatedDateTime": "2020-09-10T23:54:07Z" + "createdDateTime": "2020-10-30T13:00:55Z", + "lastUpdatedDateTime": "2020-10-30T13:00:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5089fd1e70c06072c30ef0b41d4ab136", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8175dda1-e385-4824-964a-d6d66dbe32a1", + "apim-request-id": "c1c6d93c-5c80-44bd-8723-9dbf7cbc6cca", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:15 GMT", + "Date": "Fri, 30 Oct 2020 13:01:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "fff30656-43e9-4f8d-b637-e26fc9798ccb", + "modelId": "00f52764-2c1d-4eba-b087-d0785983b030", "status": "creating", - "createdDateTime": "2020-09-10T23:54:07Z", - "lastUpdatedDateTime": "2020-09-10T23:54:07Z" + "createdDateTime": "2020-10-30T13:00:55Z", + "lastUpdatedDateTime": "2020-10-30T13:00:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e0de3573797148077b47ed013b6cc2af", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b57d2c1-c7a2-4e9f-aceb-f96b4b25b219", + "apim-request-id": "da516c15-9cf9-4f05-8ef0-dc1d7553328e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:16 GMT", + "Date": "Fri, 30 Oct 2020 13:01:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "fff30656-43e9-4f8d-b637-e26fc9798ccb", + "modelId": "00f52764-2c1d-4eba-b087-d0785983b030", "status": "creating", - "createdDateTime": "2020-09-10T23:54:07Z", - "lastUpdatedDateTime": "2020-09-10T23:54:07Z" + "createdDateTime": "2020-10-30T13:00:55Z", + "lastUpdatedDateTime": "2020-10-30T13:00:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "07a3fdf6ef33063f568a3fd5b4aedd20", "x-ms-return-client-request-id": "true" @@ -378,75 +378,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f8e0639-e3aa-4b9e-97a9-c56f660c3193", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fff30656-43e9-4f8d-b637-e26fc9798ccb", - "status": "creating", - "createdDateTime": "2020-09-10T23:54:07Z", - "lastUpdatedDateTime": "2020-09-10T23:54:07Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9c1b7d6c5f31a56ff640d57983702557", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2979a078-9c48-4042-ab2f-49b5b8740be6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fff30656-43e9-4f8d-b637-e26fc9798ccb", - "status": "creating", - "createdDateTime": "2020-09-10T23:54:07Z", - "lastUpdatedDateTime": "2020-09-10T23:54:07Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1fbd404ba9a68302f6d889e6393194cc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4c716c99-9a12-40d6-b2f3-630a251bec55", + "apim-request-id": "6169c8b3-e71e-4e5e-9f14-1f18815c3ce7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:19 GMT", + "Date": "Fri, 30 Oct 2020 13:01:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -454,10 +388,10 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "fff30656-43e9-4f8d-b637-e26fc9798ccb", + "modelId": "00f52764-2c1d-4eba-b087-d0785983b030", "status": "ready", - "createdDateTime": "2020-09-10T23:54:07Z", - "lastUpdatedDateTime": "2020-09-10T23:54:19Z" + "createdDateTime": "2020-10-30T13:00:55Z", + "lastUpdatedDateTime": "2020-10-30T13:01:06Z" }, "keys": { "clusters": { @@ -527,402 +461,216 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "479269", "Content-Type": "image/jpeg", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f27663fdafe67e478bfd922d87406ac0-a3d4aa6fdaba744d-00", + "traceparent": "00-f2b0653b9c6cec448092f7491464a1f6-56909684f74e6a4c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "be95cd692550977e8efe11f219c682e6", + "x-ms-client-request-id": "9c1b7d6c5f31a56ff640d57983702557", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "18d66afe-58c8-4016-a290-9685bc40a3cc", + "apim-request-id": "36afd3f3-52ff-4faf-89f4-132949f74f9f", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:54:25 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyzeresults/b7a8f13f-fac4-465a-924a-7c3bbdd86ad4", + "Date": "Fri, 30 Oct 2020 13:01:08 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/00f52764-2c1d-4eba-b087-d0785983b030/analyzeresults/63d61d18-c9bc-4196-abc9-e899cec42a11", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5228" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyzeResults/b7a8f13f-fac4-465a-924a-7c3bbdd86ad4", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030/analyzeResults/63d61d18-c9bc-4196-abc9-e899cec42a11", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7389e865bdf0c3797a97a659d5886bc5", + "x-ms-client-request-id": "1fbd404ba9a68302f6d889e6393194cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "888a54a3-c4fe-4967-9447-a144a104f1be", + "apim-request-id": "5e47c28b-d420-408d-8247-889b310da74f", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:25 GMT", + "Date": "Fri, 30 Oct 2020 13:01:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:54:25Z", - "lastUpdatedDateTime": "2020-09-10T23:54:25Z" + "createdDateTime": "2020-10-30T13:01:09Z", + "lastUpdatedDateTime": "2020-10-30T13:01:09Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyzeResults/b7a8f13f-fac4-465a-924a-7c3bbdd86ad4", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030/analyzeResults/63d61d18-c9bc-4196-abc9-e899cec42a11", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b61008ac67db2606c22691a798106a2f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4e75f127-e0b5-40c3-878f-d37ce0eb7e12", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:26 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:54:25Z", - "lastUpdatedDateTime": "2020-09-10T23:54:26Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyzeResults/b7a8f13f-fac4-465a-924a-7c3bbdd86ad4", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5181a35521a7abdc53d143b97e24c105", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f2111756-ca7c-4edc-994f-a668b7545054", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:27 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:54:25Z", - "lastUpdatedDateTime": "2020-09-10T23:54:26Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyzeResults/b7a8f13f-fac4-465a-924a-7c3bbdd86ad4", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "10464c93ccb5fe0ae163b0c92cd12a69", + "x-ms-client-request-id": "be95cd692550977e8efe11f219c682e6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19ec09ac-66f5-4c3c-836f-d9b2a23ffb79", + "apim-request-id": "9196c645-51d2-453f-b10d-8dc62817e3b1", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:28 GMT", + "Date": "Fri, 30 Oct 2020 13:01:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:54:25Z", - "lastUpdatedDateTime": "2020-09-10T23:54:26Z", + "createdDateTime": "2020-10-30T13:01:09Z", + "lastUpdatedDateTime": "2020-10-30T13:01:10Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyzeResults/b7a8f13f-fac4-465a-924a-7c3bbdd86ad4", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030/analyzeResults/63d61d18-c9bc-4196-abc9-e899cec42a11", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3203762d1a078b1d2c656309234da79d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "630d1098-0fce-41b0-8b4c-e71c4f912099", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:54:25Z", - "lastUpdatedDateTime": "2020-09-10T23:54:26Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyzeResults/b7a8f13f-fac4-465a-924a-7c3bbdd86ad4", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4c148c6559ca897a98826f4470127f81", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "77fdd5bf-6c22-4b64-9646-a3590c4709f0", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:31 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:54:25Z", - "lastUpdatedDateTime": "2020-09-10T23:54:26Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyzeResults/b7a8f13f-fac4-465a-924a-7c3bbdd86ad4", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "078cdaa68e2078fd2ebbe4506801db94", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4de25c3a-6c85-4ab6-9408-ae7341c9bde2", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:54:25Z", - "lastUpdatedDateTime": "2020-09-10T23:54:26Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyzeResults/b7a8f13f-fac4-465a-924a-7c3bbdd86ad4", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9f6412bbdebdd49ffc7a9985abd91a19", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0132e475-0fe1-4021-a5d3-4455a56f39b5", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:33 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:54:25Z", - "lastUpdatedDateTime": "2020-09-10T23:54:26Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyzeResults/b7a8f13f-fac4-465a-924a-7c3bbdd86ad4", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4862e1e59fc1d67c8f9c1d0e74292097", + "x-ms-client-request-id": "7389e865bdf0c3797a97a659d5886bc5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "52ea2d83-9a19-47f0-806a-9610bfcf6c45", + "apim-request-id": "78a377e9-90cb-4827-8c96-10a8b68deadb", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:34 GMT", + "Date": "Fri, 30 Oct 2020 13:01:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:54:25Z", - "lastUpdatedDateTime": "2020-09-10T23:54:26Z", + "createdDateTime": "2020-10-30T13:01:09Z", + "lastUpdatedDateTime": "2020-10-30T13:01:10Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyzeResults/b7a8f13f-fac4-465a-924a-7c3bbdd86ad4", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030/analyzeResults/63d61d18-c9bc-4196-abc9-e899cec42a11", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5e88daa7dfaec8c43ab80ba6f577cd55", + "x-ms-client-request-id": "b61008ac67db2606c22691a798106a2f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f4ea20f-560d-44b9-bb9f-5711031701b2", + "apim-request-id": "5e9ed8e6-ab3d-45e9-b462-83311319dc89", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:35 GMT", + "Date": "Fri, 30 Oct 2020 13:01:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:54:25Z", - "lastUpdatedDateTime": "2020-09-10T23:54:26Z", + "createdDateTime": "2020-10-30T13:01:09Z", + "lastUpdatedDateTime": "2020-10-30T13:01:10Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyzeResults/b7a8f13f-fac4-465a-924a-7c3bbdd86ad4", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030/analyzeResults/63d61d18-c9bc-4196-abc9-e899cec42a11", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "876acba0929f1bd3958d0f20c0905fd2", + "x-ms-client-request-id": "5181a35521a7abdc53d143b97e24c105", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51a11cae-1132-468e-aa6f-24f6fd002a8a", + "apim-request-id": "b034f2ae-bc6f-470a-80e0-9430afb64651", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:36 GMT", + "Date": "Fri, 30 Oct 2020 13:01:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:54:25Z", - "lastUpdatedDateTime": "2020-09-10T23:54:26Z", + "createdDateTime": "2020-10-30T13:01:09Z", + "lastUpdatedDateTime": "2020-10-30T13:01:10Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb/analyzeResults/b7a8f13f-fac4-465a-924a-7c3bbdd86ad4", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030/analyzeResults/63d61d18-c9bc-4196-abc9-e899cec42a11", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d0de0259bc50066a1d990e0994d6e117", + "x-ms-client-request-id": "10464c93ccb5fe0ae163b0c92cd12a69", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c49496a5-b6fb-4ccc-b188-e8a03e3264b3", + "apim-request-id": "79c06ccd-5e1c-46b5-aaeb-71f978686391", "Content-Length": "8958", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:37 GMT", + "Date": "Fri, 30 Oct 2020 13:01:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:54:25Z", - "lastUpdatedDateTime": "2020-09-10T23:54:36Z", + "createdDateTime": "2020-10-30T13:01:09Z", + "lastUpdatedDateTime": "2020-10-30T13:01:15Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1904,28 +1652,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fff30656-43e9-4f8d-b637-e26fc9798ccb", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00f52764-2c1d-4eba-b087-d0785983b030", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c3b093371de7484780dd90c7c538e2f7-45fa3556eb168b4b-00", + "traceparent": "00-79fcc8c0434878489b754890201c6661-98a7bab39fcd824d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a96dc8ce99bf14f8076cc820d0a308a9", + "x-ms-client-request-id": "3203762d1a078b1d2c656309234da79d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "bad65800-3ee5-4f7d-babc-33c1c96178e5", + "apim-request-id": "acd11e01-6cbb-4e8e-90c8-58f1aeaf09c3", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:54:37 GMT", + "Date": "Fri, 30 Oct 2020 13:01:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": [] } @@ -1933,7 +1681,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "991483851" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,True).json index d51d055e82b48..e66067af237f1 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5f18d8606d8ac741b0314be77d7fbc17-747d640c896dee46-00", + "traceparent": "00-e1ebaf94772154409c69f0aad9ce2d48-66604d83e661e64a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b84f4dcea98b74bf4b51992627ef22a7", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "b0e55afb-f4cc-41a5-90b9-ee137871374d", + "apim-request-id": "d2b0a4ae-ebf4-4da4-b949-6ab93d654b81", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:51:22 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "Date": "Fri, 30 Oct 2020 12:54:12 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "72" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "66cba8ef6d4068292c90bc88fca5fb1b", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "78f7f17f-281d-4898-bcde-ad6a825beb32", + "apim-request-id": "e79637b8-c040-4f65-89ba-c63e39135735", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:22 GMT", + "Date": "Fri, 30 Oct 2020 12:54:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "modelId": "17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" + "createdDateTime": "2020-10-30T12:54:12Z", + "lastUpdatedDateTime": "2020-10-30T12:54:12Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5bb4c6b355092a05cc64786a0e586423", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4fc16280-0aac-4b64-9d2a-575debf2b1f5", + "apim-request-id": "ab0f4493-a4b2-4b7c-958d-908e53fd0936", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:23 GMT", + "Date": "Fri, 30 Oct 2020 12:54:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "modelId": "17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" + "createdDateTime": "2020-10-30T12:54:12Z", + "lastUpdatedDateTime": "2020-10-30T12:54:12Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "73b50ba48ba3619623e78bfaec3777a6", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83b33a78-b8fd-438e-9273-12200fbfc2b3", + "apim-request-id": "49d90021-999e-46d5-b950-40928701cb90", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:24 GMT", + "Date": "Fri, 30 Oct 2020 12:54:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "modelId": "17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" + "createdDateTime": "2020-10-30T12:54:12Z", + "lastUpdatedDateTime": "2020-10-30T12:54:12Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "61727d55c73a999da2a099dcf4be59d3", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "097f814f-3f33-4ba9-9b15-eafa7bf0739f", + "apim-request-id": "bc749404-3697-4c3c-b731-cbb947c0d5e1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:25 GMT", + "Date": "Fri, 30 Oct 2020 12:54:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "modelId": "17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" + "createdDateTime": "2020-10-30T12:54:12Z", + "lastUpdatedDateTime": "2020-10-30T12:54:12Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f1e4992c87f027782f523721ca0a3e95", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e6b5837-e61f-4bd0-bd33-fff3f143a74d", + "apim-request-id": "7b6d2164-d691-4d33-92cc-47a5e6896361", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:26 GMT", + "Date": "Fri, 30 Oct 2020 12:54:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "modelId": "17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" + "createdDateTime": "2020-10-30T12:54:12Z", + "lastUpdatedDateTime": "2020-10-30T12:54:12Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9014d2ec03e5dde86d1bd102f1ba6c65", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ba425bef-0331-4775-b5ed-097a6c623367", + "apim-request-id": "641de6f5-e118-4711-a648-3653b58ca4df", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:27 GMT", + "Date": "Fri, 30 Oct 2020 12:54:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "modelId": "17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" + "createdDateTime": "2020-10-30T12:54:12Z", + "lastUpdatedDateTime": "2020-10-30T12:54:12Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "53ceb78e8652ceb5054b31e88f7ccf97", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2f3dd04d-ca63-4981-b3eb-dfef995dcfc8", + "apim-request-id": "8c5f60bf-545a-49c3-aeb7-d9519baee20f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:28 GMT", + "Date": "Fri, 30 Oct 2020 12:54:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "modelId": "17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" + "createdDateTime": "2020-10-30T12:54:12Z", + "lastUpdatedDateTime": "2020-10-30T12:54:12Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "22ef0462c8a929eeb00683d4b6753674", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1274fe13-f1bc-4452-82d7-ab8284e7195e", + "apim-request-id": "59ca451e-b7dc-47ab-abd0-765a7f35400b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:29 GMT", + "Date": "Fri, 30 Oct 2020 12:54:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "modelId": "17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" + "createdDateTime": "2020-10-30T12:54:12Z", + "lastUpdatedDateTime": "2020-10-30T12:54:12Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1293d2e6ea3c66421d468b9ad1004df1", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0fcaba6f-eb26-460a-aa21-97abe18a6880", + "apim-request-id": "70bc8f31-7e5b-4da3-8eb4-f74e8d66b30d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:30 GMT", + "Date": "Fri, 30 Oct 2020 12:54:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "modelId": "17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" + "createdDateTime": "2020-10-30T12:54:12Z", + "lastUpdatedDateTime": "2020-10-30T12:54:12Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eda0394c4acbc5bbc9a5a24b02e0178f", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c9820f5-1978-4ced-b0fa-b1af9aa5f7ad", + "apim-request-id": "3c781b2f-d41f-4fa7-a23b-fdef7eba271b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:31 GMT", + "Date": "Fri, 30 Oct 2020 12:54:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "143" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "modelId": "17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" + "createdDateTime": "2020-10-30T12:54:12Z", + "lastUpdatedDateTime": "2020-10-30T12:54:12Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bd01bd15bde8775bc18805623c5358b0", "x-ms-return-client-request-id": "true" @@ -378,9 +378,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4263685-5e6e-4ec3-8d5b-2fad046c0269", + "apim-request-id": "42109ecf-5c9f-4227-9ae3-0dd1fa9621b6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:32 GMT", + "Date": "Fri, 30 Oct 2020 12:54:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -388,22 +388,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "modelId": "17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" + "createdDateTime": "2020-10-30T12:54:12Z", + "lastUpdatedDateTime": "2020-10-30T12:54:12Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7c8892b848d59ca916cd489747f7633c", "x-ms-return-client-request-id": "true" @@ -411,108 +411,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cdcd8b3b-bbaa-4aca-926a-4ba794843955", + "apim-request-id": "f805e8b9-77ca-4956-a126-df7f6a522cf0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:33 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1485fc2e90fe8f08de282c4345598875", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b1106ba6-3734-492c-a180-43ed6d3a43dc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "6f92f24c9b58ccb91465a61b74c42fca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f9ad3b0a-be33-4d00-b7d4-191b8437375b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:35 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4033c82443ce28b18af89eac1c6557bd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ce10147f-e6c9-4feb-999a-7dd667bda591", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:37 GMT", + "Date": "Fri, 30 Oct 2020 12:54:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -520,175 +421,43 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "554ad245f46493e443b80098e9ec1a19", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bfe8a587-4184-4263-8798-75571d751b1e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:38 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "modelId": "17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" + "createdDateTime": "2020-10-30T12:54:12Z", + "lastUpdatedDateTime": "2020-10-30T12:54:12Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7c1e61f8482509a7416ae55ffc0cafae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "093ec8fc-acb0-4577-a429-ec4349728d8d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a2d6e90eda7a3065e39ffd1643183e9d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b850a4d3-04d6-44bf-9aa2-e0ee44fdf6c8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "bab384ddda47fc972b4113f90f859736", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e3fa912e-83e4-47e0-bf0b-8cda7905a575", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:42 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "97" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", - "status": "creating", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:22Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ff8a520978161e9ffbed98854b90c529", + "x-ms-client-request-id": "1485fc2e90fe8f08de282c4345598875", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f42d22bc-d350-4aa2-995e-f8cde167b3a1", + "apim-request-id": "9d4a3c9b-f67f-4969-b8f5-5d45ccb2ac04", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:43 GMT", + "Date": "Fri, 30 Oct 2020 12:54:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "modelId": "17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "status": "ready", - "createdDateTime": "2020-09-10T23:51:22Z", - "lastUpdatedDateTime": "2020-09-10T23:51:42Z" + "createdDateTime": "2020-10-30T12:54:12Z", + "lastUpdatedDateTime": "2020-10-30T12:54:25Z" }, "keys": { "clusters": { @@ -758,247 +527,247 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "479269", "Content-Type": "image/jpeg", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4737b9f7fbdf6140829ffdbcfdc05bb6-74699b1454be7944-00", + "traceparent": "00-4c2b9d35ceb64c4491af5b7bbac0cfc1-a6365e172fe5344a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7781472bf458346651d97639c66c215e", + "x-ms-client-request-id": "6f92f24c9b58ccb91465a61b74c42fca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "31b48b70-7af4-431e-a86f-084de33b15bf", + "apim-request-id": "70f6312f-effa-4d11-b701-f8e9a952265a", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:51:43 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07/analyzeresults/d9413aac-330f-425b-ae1f-30fbe4784a24", + "Date": "Fri, 30 Oct 2020 12:54:28 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c/analyzeresults/8b010713-ba40-4c90-8654-4143c5799b76", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "153" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07/analyzeResults/d9413aac-330f-425b-ae1f-30fbe4784a24", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c/analyzeResults/8b010713-ba40-4c90-8654-4143c5799b76", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f10dc6083f8e6586e595bf594112b09a", + "x-ms-client-request-id": "4033c82443ce28b18af89eac1c6557bd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40cb7ec0-e42d-485d-a93d-4cfa1fe7b5f8", + "apim-request-id": "c4c0bb94-3e9e-4095-b1d4-405ce4300676", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:43 GMT", + "Date": "Fri, 30 Oct 2020 12:54:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:51:43Z", - "lastUpdatedDateTime": "2020-09-10T23:51:43Z" + "createdDateTime": "2020-10-30T12:54:28Z", + "lastUpdatedDateTime": "2020-10-30T12:54:28Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07/analyzeResults/d9413aac-330f-425b-ae1f-30fbe4784a24", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c/analyzeResults/8b010713-ba40-4c90-8654-4143c5799b76", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c7ceea7b1f0314ddeb55ae3d0166578f", + "x-ms-client-request-id": "554ad245f46493e443b80098e9ec1a19", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "283ddc00-bf45-427a-b9c9-8153244ef1e5", + "apim-request-id": "151a1d56-1d45-4cfb-9df3-a2ac9d6b366f", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:49 GMT", + "Date": "Fri, 30 Oct 2020 12:54:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5048" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:51:43Z", - "lastUpdatedDateTime": "2020-09-10T23:51:44Z", + "createdDateTime": "2020-10-30T12:54:28Z", + "lastUpdatedDateTime": "2020-10-30T12:54:29Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07/analyzeResults/d9413aac-330f-425b-ae1f-30fbe4784a24", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c/analyzeResults/8b010713-ba40-4c90-8654-4143c5799b76", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "847d3accd383ec9ac01c92c3350cf23f", + "x-ms-client-request-id": "7c1e61f8482509a7416ae55ffc0cafae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd6334b7-0d4f-4dac-b05f-42e4a531eeb4", + "apim-request-id": "3a8d64ac-c5ca-4fc5-b37d-e196fcae2386", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:50 GMT", + "Date": "Fri, 30 Oct 2020 12:54:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:51:43Z", - "lastUpdatedDateTime": "2020-09-10T23:51:44Z", + "createdDateTime": "2020-10-30T12:54:28Z", + "lastUpdatedDateTime": "2020-10-30T12:54:29Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07/analyzeResults/d9413aac-330f-425b-ae1f-30fbe4784a24", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c/analyzeResults/8b010713-ba40-4c90-8654-4143c5799b76", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "dbbddc28599de85be8f805389049637e", + "x-ms-client-request-id": "a2d6e90eda7a3065e39ffd1643183e9d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28501371-7cf1-4df3-9150-63725ed07d57", + "apim-request-id": "6dc2d608-f96e-4800-82b6-a8efdf24a478", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:51 GMT", + "Date": "Fri, 30 Oct 2020 12:54:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:51:43Z", - "lastUpdatedDateTime": "2020-09-10T23:51:44Z", + "createdDateTime": "2020-10-30T12:54:28Z", + "lastUpdatedDateTime": "2020-10-30T12:54:29Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07/analyzeResults/d9413aac-330f-425b-ae1f-30fbe4784a24", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c/analyzeResults/8b010713-ba40-4c90-8654-4143c5799b76", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "078d2f3d2b95a7164fe107e68d1adedf", + "x-ms-client-request-id": "bab384ddda47fc972b4113f90f859736", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1537e1e9-99b5-4d35-a24d-20f33c28c644", + "apim-request-id": "1448f8a1-12b2-4124-bc15-438ad8147204", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:52 GMT", + "Date": "Fri, 30 Oct 2020 12:54:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:51:43Z", - "lastUpdatedDateTime": "2020-09-10T23:51:44Z", + "createdDateTime": "2020-10-30T12:54:28Z", + "lastUpdatedDateTime": "2020-10-30T12:54:29Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07/analyzeResults/d9413aac-330f-425b-ae1f-30fbe4784a24", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c/analyzeResults/8b010713-ba40-4c90-8654-4143c5799b76", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "25146e637ca972f2de949c8bce625b77", + "x-ms-client-request-id": "ff8a520978161e9ffbed98854b90c529", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ccfd97f1-194d-4526-a96f-95f38ef12f9c", + "apim-request-id": "3bb6adb5-39f3-473b-bc6c-1d275a794808", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:53 GMT", + "Date": "Fri, 30 Oct 2020 12:54:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:51:43Z", - "lastUpdatedDateTime": "2020-09-10T23:51:44Z", + "createdDateTime": "2020-10-30T12:54:28Z", + "lastUpdatedDateTime": "2020-10-30T12:54:29Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07/analyzeResults/d9413aac-330f-425b-ae1f-30fbe4784a24", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c/analyzeResults/8b010713-ba40-4c90-8654-4143c5799b76", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "068513b9eb7efcaac5158bbb52745ace", + "x-ms-client-request-id": "7781472bf458346651d97639c66c215e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc46fd4a-117f-4bdd-8f65-b3646960a7c9", + "apim-request-id": "0b7bbab2-9fdf-4e9a-8144-332b2c8534a1", "Content-Length": "30800", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:51:54 GMT", + "Date": "Fri, 30 Oct 2020 12:54:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:51:43Z", - "lastUpdatedDateTime": "2020-09-10T23:51:53Z", + "createdDateTime": "2020-10-30T12:54:28Z", + "lastUpdatedDateTime": "2020-10-30T12:54:35Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -4858,28 +4627,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a52fa6cb-57cb-4baa-8b6e-1e8cabbebd07", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/17f417fd-f6d0-43c4-9ba5-fdd48952ce7c", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-af2fae34314262458e4974b60533419b-2a4b2499b86b054d-00", + "traceparent": "00-1bdd118bba05d5479f6f5216f5ca160d-91f16d9276a3c04a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "22d5261a3d34c1d53d1b28008f8bd9ed", + "x-ms-client-request-id": "f10dc6083f8e6586e595bf594112b09a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "8643721a-5659-42b3-899a-c22105d520b9", + "apim-request-id": "07078856-03dd-4d92-bb04-c231caee4bfa", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:51:54 GMT", + "Date": "Fri, 30 Oct 2020 12:54:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": [] } @@ -4887,7 +4656,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1084832189" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,True)Async.json index acdb5ffcc1063..52f6e27b1898a 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabels(True,True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-48ca45e8d3550749a221ce0bfff67d5a-65338fd466cf514c-00", + "traceparent": "00-3736d7f1136f5d4f89963b5c80d3b883-e56e3c24d4d23348-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "49f8874cea3143fd667cb55b8c753744", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "4b6a0d84-72cb-42f4-a91e-e68384b23b00", + "apim-request-id": "e622c694-0739-4020-9e33-1cf6fd377403", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:43 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9", + "Date": "Fri, 30 Oct 2020 13:00:30 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "185" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4b9ebfdd56368abbe1e11ccce79b6cb8", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7d59024-91cd-4112-afd4-52f80925c9da", + "apim-request-id": "7b7529c9-605e-48d4-9a72-cc6e43f1e9bc", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:43 GMT", + "Date": "Fri, 30 Oct 2020 13:00:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "abca1177-d13c-41cc-8b2f-017394a1acb9", + "modelId": "710862bb-f5c4-4947-aa29-b1e81e12a4a8", "status": "creating", - "createdDateTime": "2020-09-10T23:53:44Z", - "lastUpdatedDateTime": "2020-09-10T23:53:44Z" + "createdDateTime": "2020-10-30T13:00:30Z", + "lastUpdatedDateTime": "2020-10-30T13:00:30Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7d9e466a099e7e3732d8f65ed59ddd8f", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "058d4fbb-ed01-4c33-85e2-8208d2debf09", + "apim-request-id": "255b752c-657b-4858-a192-73afd5143a53", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:44 GMT", + "Date": "Fri, 30 Oct 2020 13:00:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "modelInfo": { - "modelId": "abca1177-d13c-41cc-8b2f-017394a1acb9", + "modelId": "710862bb-f5c4-4947-aa29-b1e81e12a4a8", "status": "creating", - "createdDateTime": "2020-09-10T23:53:44Z", - "lastUpdatedDateTime": "2020-09-10T23:53:44Z" + "createdDateTime": "2020-10-30T13:00:30Z", + "lastUpdatedDateTime": "2020-10-30T13:00:30Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c40eb2e582fbf60acc6e6750cd305cca", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14a507d6-915e-4b81-b606-0098ea56cc44", + "apim-request-id": "cf35e570-b6cb-4015-9fd6-6d13b0825d17", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:45 GMT", + "Date": "Fri, 30 Oct 2020 13:00:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "abca1177-d13c-41cc-8b2f-017394a1acb9", + "modelId": "710862bb-f5c4-4947-aa29-b1e81e12a4a8", "status": "creating", - "createdDateTime": "2020-09-10T23:53:44Z", - "lastUpdatedDateTime": "2020-09-10T23:53:44Z" + "createdDateTime": "2020-10-30T13:00:30Z", + "lastUpdatedDateTime": "2020-10-30T13:00:30Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "45f1fc10bad6d4a6881f195e5f5cb444", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "53f9cf23-48a5-4a86-91df-d1c254c30061", + "apim-request-id": "b8fe3225-5129-49af-93e9-fe35eefd2441", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:46 GMT", + "Date": "Fri, 30 Oct 2020 13:00:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "abca1177-d13c-41cc-8b2f-017394a1acb9", + "modelId": "710862bb-f5c4-4947-aa29-b1e81e12a4a8", "status": "creating", - "createdDateTime": "2020-09-10T23:53:44Z", - "lastUpdatedDateTime": "2020-09-10T23:53:44Z" + "createdDateTime": "2020-10-30T13:00:30Z", + "lastUpdatedDateTime": "2020-10-30T13:00:30Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "34e68d03a78de8bd3ca8b12fa1e7b101", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "13294024-06ba-43dd-ae86-cfd62f252b11", + "apim-request-id": "0084533e-5cf0-4f2c-bc3f-1e9d46acfc33", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:47 GMT", + "Date": "Fri, 30 Oct 2020 13:00:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "abca1177-d13c-41cc-8b2f-017394a1acb9", + "modelId": "710862bb-f5c4-4947-aa29-b1e81e12a4a8", "status": "creating", - "createdDateTime": "2020-09-10T23:53:44Z", - "lastUpdatedDateTime": "2020-09-10T23:53:44Z" + "createdDateTime": "2020-10-30T13:00:30Z", + "lastUpdatedDateTime": "2020-10-30T13:00:30Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d94e2c7c97ab2ab90b393cdb68ab976f", "x-ms-return-client-request-id": "true" @@ -213,9 +213,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bdccb236-c9f6-4a70-b385-9d36106a1a6a", + "apim-request-id": "9cdfcb4a-4e3b-41c2-b8b7-153743c484c9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:49 GMT", + "Date": "Fri, 30 Oct 2020 13:00:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -223,22 +223,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "abca1177-d13c-41cc-8b2f-017394a1acb9", + "modelId": "710862bb-f5c4-4947-aa29-b1e81e12a4a8", "status": "creating", - "createdDateTime": "2020-09-10T23:53:44Z", - "lastUpdatedDateTime": "2020-09-10T23:53:44Z" + "createdDateTime": "2020-10-30T13:00:30Z", + "lastUpdatedDateTime": "2020-10-30T13:00:30Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "404c23b92749693c3f09082e097632a1", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71d0baf8-3f0a-4d34-9a44-b594ceab8864", + "apim-request-id": "2d6aa734-d763-4e86-bc5f-c1dd7e0afee3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:50 GMT", + "Date": "Fri, 30 Oct 2020 13:00:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "abca1177-d13c-41cc-8b2f-017394a1acb9", + "modelId": "710862bb-f5c4-4947-aa29-b1e81e12a4a8", "status": "creating", - "createdDateTime": "2020-09-10T23:53:44Z", - "lastUpdatedDateTime": "2020-09-10T23:53:44Z" + "createdDateTime": "2020-10-30T13:00:30Z", + "lastUpdatedDateTime": "2020-10-30T13:00:30Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "32e2176edb0e6c98d3bc28546ae17f90", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4dcc4357-7348-4bd5-b602-8d263c91df87", + "apim-request-id": "a5c6b9f8-f347-4152-b1bb-bdc6fd09bb10", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:52 GMT", + "Date": "Fri, 30 Oct 2020 13:00:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "abca1177-d13c-41cc-8b2f-017394a1acb9", + "modelId": "710862bb-f5c4-4947-aa29-b1e81e12a4a8", "status": "creating", - "createdDateTime": "2020-09-10T23:53:44Z", - "lastUpdatedDateTime": "2020-09-10T23:53:44Z" + "createdDateTime": "2020-10-30T13:00:30Z", + "lastUpdatedDateTime": "2020-10-30T13:00:30Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7e764110709a54b7f0e599a28f8b2095", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0f96cd9a-9d8e-4bcc-b2c5-47f5130d3981", + "apim-request-id": "4a8a4f3b-8790-4fa9-abf6-7257d38b4551", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:53 GMT", + "Date": "Fri, 30 Oct 2020 13:00:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "abca1177-d13c-41cc-8b2f-017394a1acb9", + "modelId": "710862bb-f5c4-4947-aa29-b1e81e12a4a8", "status": "creating", - "createdDateTime": "2020-09-10T23:53:44Z", - "lastUpdatedDateTime": "2020-09-10T23:53:44Z" + "createdDateTime": "2020-10-30T13:00:30Z", + "lastUpdatedDateTime": "2020-10-30T13:00:30Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "506d9b0764c9de608ae06c8dfee8fe5e", "x-ms-return-client-request-id": "true" @@ -345,9 +345,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6cee5b3-43ae-47bc-b6c0-66d16b06b6c6", + "apim-request-id": "6ec3b42e-9450-42d2-9f09-9b82c9fda3e0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:54 GMT", + "Date": "Fri, 30 Oct 2020 13:00:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -355,22 +355,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "abca1177-d13c-41cc-8b2f-017394a1acb9", + "modelId": "710862bb-f5c4-4947-aa29-b1e81e12a4a8", "status": "creating", - "createdDateTime": "2020-09-10T23:53:44Z", - "lastUpdatedDateTime": "2020-09-10T23:53:44Z" + "createdDateTime": "2020-10-30T13:00:30Z", + "lastUpdatedDateTime": "2020-10-30T13:00:30Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c81d778ab300fd06608d422941f6dd48", "x-ms-return-client-request-id": "true" @@ -378,53 +378,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dcad9a99-6b46-48f7-ae08-efdf2361a6aa", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "abca1177-d13c-41cc-8b2f-017394a1acb9", - "status": "creating", - "createdDateTime": "2020-09-10T23:53:44Z", - "lastUpdatedDateTime": "2020-09-10T23:53:44Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cf4c939b2e74abc6e197f3ba032a5508", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8544a6ec-153d-4236-868f-0418ccfa5252", + "apim-request-id": "dd570306-f22a-4615-89fd-0fac53fcaccc", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:56 GMT", + "Date": "Fri, 30 Oct 2020 13:00:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "abca1177-d13c-41cc-8b2f-017394a1acb9", + "modelId": "710862bb-f5c4-4947-aa29-b1e81e12a4a8", "status": "ready", - "createdDateTime": "2020-09-10T23:53:44Z", - "lastUpdatedDateTime": "2020-09-10T23:53:56Z" + "createdDateTime": "2020-10-30T13:00:30Z", + "lastUpdatedDateTime": "2020-10-30T13:00:42Z" }, "keys": { "clusters": { @@ -494,371 +461,307 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "479269", "Content-Type": "image/jpeg", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-83377eb594467f46bcf687e9dc2c7a23-61b9d22af4ca2246-00", + "traceparent": "00-18d9d9782ffcf34a85bc37f5227d30e0-724627d2173b7a46-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "17173be6586e5394946ff03c22369c94", + "x-ms-client-request-id": "cf4c939b2e74abc6e197f3ba032a5508", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "f29dee66-b2e1-4bd8-be06-648c7b1ba3c1", + "apim-request-id": "e591348a-1a7d-4284-ad68-549f426b1f6f", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:53:56 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9/analyzeresults/0bb1d805-197e-4f32-bdd4-7a94158896c5", + "Date": "Fri, 30 Oct 2020 13:00:44 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8/analyzeresults/1f07212f-db28-49a6-b56b-ae54e166712c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "150" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9/analyzeResults/0bb1d805-197e-4f32-bdd4-7a94158896c5", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8/analyzeResults/1f07212f-db28-49a6-b56b-ae54e166712c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6bf124032e9b5be9b071e668c04cfa36", + "x-ms-client-request-id": "17173be6586e5394946ff03c22369c94", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bcf7db47-b5bd-43d1-9a3f-efcf15514e68", + "apim-request-id": "c6555cd8-6479-4f01-ab6d-25cab430dd17", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:56 GMT", + "Date": "Fri, 30 Oct 2020 13:00:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-10T23:53:56Z", - "lastUpdatedDateTime": "2020-09-10T23:53:56Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9/analyzeResults/0bb1d805-197e-4f32-bdd4-7a94158896c5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "05423a38c5de43dafff93a043e8a89aa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b2d35907-ee74-4296-a5e2-c41de45cde9b", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:53:56Z", - "lastUpdatedDateTime": "2020-09-10T23:53:57Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9/analyzeResults/0bb1d805-197e-4f32-bdd4-7a94158896c5", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "dfb65ffaea38b76c51bb66fc712b9348", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a52912b4-0aef-45a0-93ba-f89c8cf5607a", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:53:56Z", - "lastUpdatedDateTime": "2020-09-10T23:53:57Z", - "analyzeResult": null + "createdDateTime": "2020-10-30T13:00:44Z", + "lastUpdatedDateTime": "2020-10-30T13:00:44Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9/analyzeResults/0bb1d805-197e-4f32-bdd4-7a94158896c5", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8/analyzeResults/1f07212f-db28-49a6-b56b-ae54e166712c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e803ba7596f43db64aae6ba1f4e51d25", + "x-ms-client-request-id": "6bf124032e9b5be9b071e668c04cfa36", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f8ca751-795b-4301-8a01-7cd4595eb3ba", - "Content-Length": "127", + "apim-request-id": "24646b04-89e0-42b5-aa0f-841bfa9d2fd3", + "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:53:59 GMT", + "Date": "Fri, 30 Oct 2020 13:00:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:53:56Z", - "lastUpdatedDateTime": "2020-09-10T23:53:57Z", - "analyzeResult": null + "status": "notStarted", + "createdDateTime": "2020-10-30T13:00:44Z", + "lastUpdatedDateTime": "2020-10-30T13:00:44Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9/analyzeResults/0bb1d805-197e-4f32-bdd4-7a94158896c5", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8/analyzeResults/1f07212f-db28-49a6-b56b-ae54e166712c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "616e3ce81a954efdcd8bb4225eddd1d3", + "x-ms-client-request-id": "05423a38c5de43dafff93a043e8a89aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eab56559-a621-4ba2-ac53-ba32475c868e", - "Content-Length": "127", + "apim-request-id": "15416f0f-0ed8-4a63-91fe-f2a87344bc27", + "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:00 GMT", + "Date": "Fri, 30 Oct 2020 13:00:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-10T23:53:56Z", - "lastUpdatedDateTime": "2020-09-10T23:53:57Z", - "analyzeResult": null + "status": "notStarted", + "createdDateTime": "2020-10-30T13:00:44Z", + "lastUpdatedDateTime": "2020-10-30T13:00:44Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9/analyzeResults/0bb1d805-197e-4f32-bdd4-7a94158896c5", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8/analyzeResults/1f07212f-db28-49a6-b56b-ae54e166712c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "838ff266a08763b6a87994897ecbc36c", + "x-ms-client-request-id": "dfb65ffaea38b76c51bb66fc712b9348", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "000523d2-9748-4f88-8d52-0c7546530633", + "apim-request-id": "0c0b593e-f0ac-4143-b79d-a974f87017de", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:01 GMT", + "Date": "Fri, 30 Oct 2020 13:00:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:53:56Z", - "lastUpdatedDateTime": "2020-09-10T23:53:57Z", + "createdDateTime": "2020-10-30T13:00:44Z", + "lastUpdatedDateTime": "2020-10-30T13:00:46Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9/analyzeResults/0bb1d805-197e-4f32-bdd4-7a94158896c5", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8/analyzeResults/1f07212f-db28-49a6-b56b-ae54e166712c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3414419e32bd5ab2bcb51b68e293df6c", + "x-ms-client-request-id": "e803ba7596f43db64aae6ba1f4e51d25", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "706180f5-8d02-42da-9462-05d406662561", + "apim-request-id": "d4b89528-0761-4391-884a-f8aff53efe77", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:02 GMT", + "Date": "Fri, 30 Oct 2020 13:00:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:53:56Z", - "lastUpdatedDateTime": "2020-09-10T23:53:57Z", + "createdDateTime": "2020-10-30T13:00:44Z", + "lastUpdatedDateTime": "2020-10-30T13:00:46Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9/analyzeResults/0bb1d805-197e-4f32-bdd4-7a94158896c5", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8/analyzeResults/1f07212f-db28-49a6-b56b-ae54e166712c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "013b98dd9956479e860ab81c8574cf02", + "x-ms-client-request-id": "616e3ce81a954efdcd8bb4225eddd1d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "08c78d22-cce9-4074-8c22-b880adcfec6f", + "apim-request-id": "d55993e0-b320-4da9-acaf-062e0938cc27", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:03 GMT", + "Date": "Fri, 30 Oct 2020 13:00:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:53:56Z", - "lastUpdatedDateTime": "2020-09-10T23:53:57Z", + "createdDateTime": "2020-10-30T13:00:44Z", + "lastUpdatedDateTime": "2020-10-30T13:00:46Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9/analyzeResults/0bb1d805-197e-4f32-bdd4-7a94158896c5", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8/analyzeResults/1f07212f-db28-49a6-b56b-ae54e166712c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1d8447c79cc934153f34c7d1854d8115", + "x-ms-client-request-id": "838ff266a08763b6a87994897ecbc36c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "feebf17b-432d-4849-9d01-2d3f38c6c413", + "apim-request-id": "7007ba77-8165-41c6-b210-7625d6d4b718", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:04 GMT", + "Date": "Fri, 30 Oct 2020 13:00:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:53:56Z", - "lastUpdatedDateTime": "2020-09-10T23:53:57Z", + "createdDateTime": "2020-10-30T13:00:44Z", + "lastUpdatedDateTime": "2020-10-30T13:00:46Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9/analyzeResults/0bb1d805-197e-4f32-bdd4-7a94158896c5", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8/analyzeResults/1f07212f-db28-49a6-b56b-ae54e166712c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e5ac2899c18f0416a2ccaeb37996d448", + "x-ms-client-request-id": "3414419e32bd5ab2bcb51b68e293df6c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "234c0f8f-47d7-4373-80cb-fda2c1b2b9d0", + "apim-request-id": "62b773f1-097a-4902-8d34-f54fdecf016b", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:05 GMT", + "Date": "Fri, 30 Oct 2020 13:00:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-10T23:53:56Z", - "lastUpdatedDateTime": "2020-09-10T23:53:57Z", + "createdDateTime": "2020-10-30T13:00:44Z", + "lastUpdatedDateTime": "2020-10-30T13:00:46Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9/analyzeResults/0bb1d805-197e-4f32-bdd4-7a94158896c5", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8/analyzeResults/1f07212f-db28-49a6-b56b-ae54e166712c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9aa119e5c10f40a38307c121d2cdc239", + "x-ms-client-request-id": "013b98dd9956479e860ab81c8574cf02", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "29421e91-c958-4f02-a180-331ed4fc4800", + "apim-request-id": "ff78038d-6fb8-4cea-8f61-d6e0d4834b34", "Content-Length": "30800", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 10 Sep 2020 23:54:07 GMT", + "Date": "Fri, 30 Oct 2020 13:00:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-10T23:53:56Z", - "lastUpdatedDateTime": "2020-09-10T23:54:06Z", + "createdDateTime": "2020-10-30T13:00:44Z", + "lastUpdatedDateTime": "2020-10-30T13:00:52Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -4718,28 +4621,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/abca1177-d13c-41cc-8b2f-017394a1acb9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/710862bb-f5c4-4947-aa29-b1e81e12a4a8", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-416a4db5844baa4b919c21f26f64f209-9584785856534b45-00", + "traceparent": "00-d31bade0413081448a6f7799bedf84f0-fe4471c462d7294b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200910.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5d82a389eac70572317f7bfcee62baa9", + "x-ms-client-request-id": "1d8447c79cc934153f34c7d1854d8115", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "10308304-43c6-43e3-8b46-737f660c234b", + "apim-request-id": "64808d4b-177c-4fbe-9057-40a4a8125de8", "Content-Length": "0", - "Date": "Thu, 10 Sep 2020 23:54:07 GMT", + "Date": "Fri, 30 Oct 2020 13:00:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": [] } @@ -4747,7 +4650,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1967656205" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseBlankPage.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseBlankPage.json index 8a6f9fadd7bb9..915b2148f8902 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseBlankPage.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseBlankPage.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-11f51a14fd20434994bedc1d1877531e-5194e7082e7e764b-00", + "traceparent": "00-b855c89d87f4ce408b90a325d2090537-8847ebd5448d624e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b067a373a2505d8d86960ef96352f5ae", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "4d6d8ad1-1743-4fb2-896e-4b682f4255bb", + "apim-request-id": "d7b7cabc-d8bf-4f61-be14-995c5ce9a727", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:28:58 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633", + "Date": "Fri, 30 Oct 2020 12:51:05 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "260" + "x-envoy-upstream-service-time": "209" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "725bfe62e9a0f7b6cb6e060d3a45943f", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4247f38c-d078-42c5-8271-bbd3abd15fe5", + "apim-request-id": "2d862cbe-ebc3-48fd-962d-fcacfa96dac9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:58 GMT", + "Date": "Fri, 30 Oct 2020 12:51:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { "modelInfo": { - "modelId": "ff4a5acf-f3e3-48b7-bb28-70491cf08633", + "modelId": "2e03b053-5faa-4f2a-8f43-3128ca5d2f59", "status": "creating", - "createdDateTime": "2020-09-09T22:28:58Z", - "lastUpdatedDateTime": "2020-09-09T22:28:58Z" + "createdDateTime": "2020-10-30T12:51:05Z", + "lastUpdatedDateTime": "2020-10-30T12:51:05Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6b848f633cbc80f75e6ca714cc277098", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "de67ce21-38c2-4b90-bdea-e61b8bfc9b97", + "apim-request-id": "34c47fb4-f106-499e-be9d-4a5749621cd3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:28:59 GMT", + "Date": "Fri, 30 Oct 2020 12:51:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "modelInfo": { - "modelId": "ff4a5acf-f3e3-48b7-bb28-70491cf08633", + "modelId": "2e03b053-5faa-4f2a-8f43-3128ca5d2f59", "status": "creating", - "createdDateTime": "2020-09-09T22:28:58Z", - "lastUpdatedDateTime": "2020-09-09T22:28:58Z" + "createdDateTime": "2020-10-30T12:51:05Z", + "lastUpdatedDateTime": "2020-10-30T12:51:05Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8146cb7517788af5ed6fe4e29b7f2240", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "838201f1-8fbf-4534-a4d0-c05cc13d56b7", + "apim-request-id": "278609cf-917a-488e-aa2c-ee4c0ba4245b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:00 GMT", + "Date": "Fri, 30 Oct 2020 12:51:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "142" }, "ResponseBody": { "modelInfo": { - "modelId": "ff4a5acf-f3e3-48b7-bb28-70491cf08633", + "modelId": "2e03b053-5faa-4f2a-8f43-3128ca5d2f59", "status": "creating", - "createdDateTime": "2020-09-09T22:28:58Z", - "lastUpdatedDateTime": "2020-09-09T22:28:58Z" + "createdDateTime": "2020-10-30T12:51:05Z", + "lastUpdatedDateTime": "2020-10-30T12:51:05Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d396ce018acd25f107db143441a22aa3", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35c3d0f1-f957-484c-a100-7d4c21059fed", + "apim-request-id": "d792a032-178a-4da3-9c71-8b4f476811fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:01 GMT", + "Date": "Fri, 30 Oct 2020 12:51:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "95" }, "ResponseBody": { "modelInfo": { - "modelId": "ff4a5acf-f3e3-48b7-bb28-70491cf08633", + "modelId": "2e03b053-5faa-4f2a-8f43-3128ca5d2f59", "status": "creating", - "createdDateTime": "2020-09-09T22:28:58Z", - "lastUpdatedDateTime": "2020-09-09T22:28:58Z" + "createdDateTime": "2020-10-30T12:51:05Z", + "lastUpdatedDateTime": "2020-10-30T12:51:05Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6f986dfd12ff4cc69afa7e4d5714e4de", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "834a2c8c-6f9c-46db-aa2f-fb88525fb612", + "apim-request-id": "ec62a797-83db-47ef-b6f1-8e4c07c6a080", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:02 GMT", + "Date": "Fri, 30 Oct 2020 12:51:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "modelInfo": { - "modelId": "ff4a5acf-f3e3-48b7-bb28-70491cf08633", + "modelId": "2e03b053-5faa-4f2a-8f43-3128ca5d2f59", "status": "creating", - "createdDateTime": "2020-09-09T22:28:58Z", - "lastUpdatedDateTime": "2020-09-09T22:28:58Z" + "createdDateTime": "2020-10-30T12:51:05Z", + "lastUpdatedDateTime": "2020-10-30T12:51:05Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fe1267499c91ebcbd9207a9d03c1484b", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0990a8e9-77cb-42eb-9539-77b57effbd10", + "apim-request-id": "f7107270-edfe-45b2-a6a4-7419183e64a5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:03 GMT", + "Date": "Fri, 30 Oct 2020 12:51:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "modelInfo": { - "modelId": "ff4a5acf-f3e3-48b7-bb28-70491cf08633", + "modelId": "2e03b053-5faa-4f2a-8f43-3128ca5d2f59", "status": "creating", - "createdDateTime": "2020-09-09T22:28:58Z", - "lastUpdatedDateTime": "2020-09-09T22:28:58Z" + "createdDateTime": "2020-10-30T12:51:05Z", + "lastUpdatedDateTime": "2020-10-30T12:51:05Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2ee44145b3e7ee40074939d30ba4cef2", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aceb859a-1284-4165-bfc2-5109ea4c5608", + "apim-request-id": "7b96a04d-dfb1-4cfa-84ae-7265a355d1b4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:04 GMT", + "Date": "Fri, 30 Oct 2020 12:51:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "modelInfo": { - "modelId": "ff4a5acf-f3e3-48b7-bb28-70491cf08633", + "modelId": "2e03b053-5faa-4f2a-8f43-3128ca5d2f59", "status": "creating", - "createdDateTime": "2020-09-09T22:28:58Z", - "lastUpdatedDateTime": "2020-09-09T22:28:58Z" + "createdDateTime": "2020-10-30T12:51:05Z", + "lastUpdatedDateTime": "2020-10-30T12:51:05Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d9ea35f62c8f6012a2ac95df982948d8", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "49b62076-60cf-4119-9a78-7badfc20e419", + "apim-request-id": "9c584786-67d5-4ee9-a07a-aaecf936757e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:05 GMT", + "Date": "Fri, 30 Oct 2020 12:51:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "ff4a5acf-f3e3-48b7-bb28-70491cf08633", + "modelId": "2e03b053-5faa-4f2a-8f43-3128ca5d2f59", "status": "creating", - "createdDateTime": "2020-09-09T22:28:58Z", - "lastUpdatedDateTime": "2020-09-09T22:28:58Z" + "createdDateTime": "2020-10-30T12:51:05Z", + "lastUpdatedDateTime": "2020-10-30T12:51:05Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "160733b1b63095f62623f64763f8df34", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "42e8d4d7-93aa-4a9b-9699-abe662a25a55", + "apim-request-id": "ef3ba822-eda0-4334-be41-fc283e28a010", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:06 GMT", + "Date": "Fri, 30 Oct 2020 12:51:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "ff4a5acf-f3e3-48b7-bb28-70491cf08633", + "modelId": "2e03b053-5faa-4f2a-8f43-3128ca5d2f59", "status": "creating", - "createdDateTime": "2020-09-09T22:28:58Z", - "lastUpdatedDateTime": "2020-09-09T22:28:58Z" + "createdDateTime": "2020-10-30T12:51:05Z", + "lastUpdatedDateTime": "2020-10-30T12:51:05Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cda788516fd619bb2e838b3a1d6156de", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7fcd3131-8586-4a36-861e-d467de92ad74", + "apim-request-id": "4e9331e5-3719-41e6-8159-a0eff54a8d87", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:07 GMT", + "Date": "Fri, 30 Oct 2020 12:51:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "ff4a5acf-f3e3-48b7-bb28-70491cf08633", + "modelId": "2e03b053-5faa-4f2a-8f43-3128ca5d2f59", "status": "creating", - "createdDateTime": "2020-09-09T22:28:58Z", - "lastUpdatedDateTime": "2020-09-09T22:28:58Z" + "createdDateTime": "2020-10-30T12:51:05Z", + "lastUpdatedDateTime": "2020-10-30T12:51:05Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d8216001b79c40c13e54b36b35cafcaa", "x-ms-return-client-request-id": "true" @@ -378,86 +378,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "740bb4e7-9927-43b1-90a8-8c2155251cc6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "ff4a5acf-f3e3-48b7-bb28-70491cf08633", - "status": "creating", - "createdDateTime": "2020-09-09T22:28:58Z", - "lastUpdatedDateTime": "2020-09-09T22:28:58Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "108d61cc7a81420277eee7ac2abc78c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "55a83848-1468-4b4e-8520-e228547e6cc4", + "apim-request-id": "d5c453ba-2b0d-442d-a0cf-8c10cbbbf7da", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:10 GMT", + "Date": "Fri, 30 Oct 2020 12:51:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "ff4a5acf-f3e3-48b7-bb28-70491cf08633", - "status": "creating", - "createdDateTime": "2020-09-09T22:28:58Z", - "lastUpdatedDateTime": "2020-09-09T22:28:58Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "034617cc07d69a97c6678f81bc4fe364", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f057d81a-867a-407a-b88e-bb06f4841919", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "ff4a5acf-f3e3-48b7-bb28-70491cf08633", + "modelId": "2e03b053-5faa-4f2a-8f43-3128ca5d2f59", "status": "ready", - "createdDateTime": "2020-09-09T22:28:58Z", - "lastUpdatedDateTime": "2020-09-09T22:29:10Z" + "createdDateTime": "2020-10-30T12:51:05Z", + "lastUpdatedDateTime": "2020-10-30T12:51:17Z" }, "keys": { "clusters": { @@ -527,371 +461,309 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "25662", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-865c75c40b6be54db313cbc8f6ee1ed5-46a3b04f5bb54744-00", + "traceparent": "00-d4c85071b821cd4794a7a347482971d7-eaec90646aa37046-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "bc6ee18646d3865c5ede61aecf151582", + "x-ms-client-request-id": "108d61cc7a81420277eee7ac2abc78c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "5a4114dc-abb8-4515-bc11-401b2a19ee6a", + "apim-request-id": "960d908f-724e-4dbe-939b-58c58bf5267f", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:29:11 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633/analyzeresults/998d2a48-69bc-4c6c-b1cd-8b6fffe8d099", + "Date": "Fri, 30 Oct 2020 12:51:18 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59/analyzeresults/b5dca0ef-b649-4173-ab97-f3dd89183b48", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "111" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633/analyzeResults/998d2a48-69bc-4c6c-b1cd-8b6fffe8d099", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59/analyzeResults/b5dca0ef-b649-4173-ab97-f3dd89183b48", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1d9eeddcf984c5d3c9f3491aeb808627", + "x-ms-client-request-id": "034617cc07d69a97c6678f81bc4fe364", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4e49ed0b-3f65-4ab2-b7fc-db29e3d03fb0", + "apim-request-id": "ba0c84f7-9fa8-4c8f-8cc4-65629ea61ddc", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:29:11Z", - "lastUpdatedDateTime": "2020-09-09T22:29:11Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633/analyzeResults/998d2a48-69bc-4c6c-b1cd-8b6fffe8d099", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4925830bbb4e86f2bbc0a5f7a6e9cab1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cccc530e-1f1a-4fb4-ab13-9def8e216d44", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:29:11Z", - "lastUpdatedDateTime": "2020-09-09T22:29:12Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633/analyzeResults/998d2a48-69bc-4c6c-b1cd-8b6fffe8d099", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cea40c51c6b08ddf0da8f2e0fd429add", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ea2e48f6-c7c2-4acd-aa73-3993d4f3231d", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:13 GMT", + "Date": "Fri, 30 Oct 2020 12:51:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "24" }, "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:29:11Z", - "lastUpdatedDateTime": "2020-09-09T22:29:12Z", - "analyzeResult": null + "status": "notStarted", + "createdDateTime": "2020-10-30T12:51:18Z", + "lastUpdatedDateTime": "2020-10-30T12:51:18Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633/analyzeResults/998d2a48-69bc-4c6c-b1cd-8b6fffe8d099", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59/analyzeResults/b5dca0ef-b649-4173-ab97-f3dd89183b48", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4ca23958ccef2034fa1862c453db1ee0", + "x-ms-client-request-id": "bc6ee18646d3865c5ede61aecf151582", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "49346098-48d8-4b40-980d-8c08d689a250", + "apim-request-id": "1115544a-20db-4060-a818-f12951361034", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:14 GMT", + "Date": "Fri, 30 Oct 2020 12:51:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:11Z", - "lastUpdatedDateTime": "2020-09-09T22:29:12Z", + "createdDateTime": "2020-10-30T12:51:18Z", + "lastUpdatedDateTime": "2020-10-30T12:51:19Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633/analyzeResults/998d2a48-69bc-4c6c-b1cd-8b6fffe8d099", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59/analyzeResults/b5dca0ef-b649-4173-ab97-f3dd89183b48", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "dfc89728b7db4576a4983ba5c9118978", + "x-ms-client-request-id": "1d9eeddcf984c5d3c9f3491aeb808627", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ff66bf7-3e77-4ae4-95e0-caf5cc271759", + "apim-request-id": "7b72d83a-9ab2-4469-b9e7-a9e0b772472f", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:15 GMT", + "Date": "Fri, 30 Oct 2020 12:51:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:11Z", - "lastUpdatedDateTime": "2020-09-09T22:29:12Z", + "createdDateTime": "2020-10-30T12:51:18Z", + "lastUpdatedDateTime": "2020-10-30T12:51:19Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633/analyzeResults/998d2a48-69bc-4c6c-b1cd-8b6fffe8d099", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59/analyzeResults/b5dca0ef-b649-4173-ab97-f3dd89183b48", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6d9fc8257e4685c2d883d398631b3931", + "x-ms-client-request-id": "4925830bbb4e86f2bbc0a5f7a6e9cab1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1224c7c0-7338-459c-8eb0-8bd2fd22cbf1", + "apim-request-id": "7f9d7210-2488-4d65-892e-71e9736f541a", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:16 GMT", + "Date": "Fri, 30 Oct 2020 12:51:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:11Z", - "lastUpdatedDateTime": "2020-09-09T22:29:12Z", + "createdDateTime": "2020-10-30T12:51:18Z", + "lastUpdatedDateTime": "2020-10-30T12:51:19Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633/analyzeResults/998d2a48-69bc-4c6c-b1cd-8b6fffe8d099", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59/analyzeResults/b5dca0ef-b649-4173-ab97-f3dd89183b48", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "65b71289bb79a001c25da857908e57e9", + "x-ms-client-request-id": "cea40c51c6b08ddf0da8f2e0fd429add", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea95439e-8712-4913-896f-ce0e54bd6679", + "apim-request-id": "6744b625-4508-4b2d-acaa-9f0f840bf3b9", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:17 GMT", + "Date": "Fri, 30 Oct 2020 12:51:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:11Z", - "lastUpdatedDateTime": "2020-09-09T22:29:12Z", + "createdDateTime": "2020-10-30T12:51:18Z", + "lastUpdatedDateTime": "2020-10-30T12:51:19Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633/analyzeResults/998d2a48-69bc-4c6c-b1cd-8b6fffe8d099", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59/analyzeResults/b5dca0ef-b649-4173-ab97-f3dd89183b48", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8b9ee98fb13caa99d5430657e3dee188", + "x-ms-client-request-id": "4ca23958ccef2034fa1862c453db1ee0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5450f522-79f3-4e4b-ad2d-5206e8560e7f", + "apim-request-id": "a0e919ae-761a-4749-add4-fe72e634a4ae", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:18 GMT", + "Date": "Fri, 30 Oct 2020 12:51:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:11Z", - "lastUpdatedDateTime": "2020-09-09T22:29:12Z", + "createdDateTime": "2020-10-30T12:51:18Z", + "lastUpdatedDateTime": "2020-10-30T12:51:19Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633/analyzeResults/998d2a48-69bc-4c6c-b1cd-8b6fffe8d099", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59/analyzeResults/b5dca0ef-b649-4173-ab97-f3dd89183b48", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b71b095e235a6affc6ffaae9d66af449", + "x-ms-client-request-id": "dfc89728b7db4576a4983ba5c9118978", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3d014767-7624-4dfe-9b5c-7024700da31f", + "apim-request-id": "261c9895-acc4-44ca-b4e4-be1a5d446329", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:19 GMT", + "Date": "Fri, 30 Oct 2020 12:51:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "318" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:11Z", - "lastUpdatedDateTime": "2020-09-09T22:29:12Z", + "createdDateTime": "2020-10-30T12:51:18Z", + "lastUpdatedDateTime": "2020-10-30T12:51:19Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633/analyzeResults/998d2a48-69bc-4c6c-b1cd-8b6fffe8d099", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59/analyzeResults/b5dca0ef-b649-4173-ab97-f3dd89183b48", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7908ea2cae7cd7f5780c9036b4a9bce3", + "x-ms-client-request-id": "6d9fc8257e4685c2d883d398631b3931", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f9ec707b-3ac7-40e5-b7ca-59b1ab0f413e", + "apim-request-id": "c08132b6-4beb-443c-8092-9e80a3915f28", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:20 GMT", + "Date": "Fri, 30 Oct 2020 12:51:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "77" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:29:11Z", - "lastUpdatedDateTime": "2020-09-09T22:29:12Z", + "createdDateTime": "2020-10-30T12:51:18Z", + "lastUpdatedDateTime": "2020-10-30T12:51:19Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633/analyzeResults/998d2a48-69bc-4c6c-b1cd-8b6fffe8d099", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59/analyzeResults/b5dca0ef-b649-4173-ab97-f3dd89183b48", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "87f91f7ca0736c8eea34c53d07b0d46a", + "x-ms-client-request-id": "65b71289bb79a001c25da857908e57e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f952d5bf-dd23-4f26-adba-29318f0973bc", + "apim-request-id": "6fd58d67-792f-4868-9082-3f4d80e19aab", "Content-Length": "340", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:29:21 GMT", + "Date": "Fri, 30 Oct 2020 12:51:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:29:11Z", - "lastUpdatedDateTime": "2020-09-09T22:29:21Z", + "createdDateTime": "2020-10-30T12:51:18Z", + "lastUpdatedDateTime": "2020-10-30T12:51:28Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -918,28 +790,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ff4a5acf-f3e3-48b7-bb28-70491cf08633", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e03b053-5faa-4f2a-8f43-3128ca5d2f59", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5e2a308f33d6124997c0e83838ff073f-cdfaef050fc4a842-00", + "traceparent": "00-e9688d019fafc445b4b1717f8fa69c30-4ea01d119ff4b34d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f92bbd4e67d6b00b14433e4d93c8b51c", + "x-ms-client-request-id": "8b9ee98fb13caa99d5430657e3dee188", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "6d292cea-ad90-4ace-95e5-186d4691fda3", + "apim-request-id": "d71b34b4-5014-4b9a-8688-8ab9256e7522", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:29:21 GMT", + "Date": "Fri, 30 Oct 2020 12:51:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "71" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": [] } @@ -947,7 +819,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1907558408" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseBlankPageAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseBlankPageAsync.json index 4a34e0c2d660e..dedab4ff5782d 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseBlankPageAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseBlankPageAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1bda2b41d234ec499b2c6a93f16d1531-8b414ebc37649a44-00", + "traceparent": "00-5a71a65d287f80449cdd6217ca4b6ac1-9f55eb485464a44b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9140bf9e437f40743a31918a14c580ca", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "201dd5df-b04c-4a35-b087-be09f246265d", + "apim-request-id": "afbe22a7-3738-4390-97f5-f779ab96baff", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:33:56 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27", + "Date": "Fri, 30 Oct 2020 12:57:18 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "283" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fc2161c93a306737e564ae09a76fe154", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60269db8-7a35-47bb-ba5f-24d0418476d5", + "apim-request-id": "2d7ac275-35d5-464a-ab73-2e71f6e6de0e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:57 GMT", + "Date": "Fri, 30 Oct 2020 12:57:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "e8e275a9-13f4-423e-9dfc-38d554234b27", + "modelId": "789651c7-a048-411e-8a60-7209c285d6c6", "status": "creating", - "createdDateTime": "2020-09-09T22:33:57Z", - "lastUpdatedDateTime": "2020-09-09T22:33:57Z" + "createdDateTime": "2020-10-30T12:57:19Z", + "lastUpdatedDateTime": "2020-10-30T12:57:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "588e85fb999b667e3dd3792addbc007d", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca774276-9a9d-4535-937c-eca1b19919bb", + "apim-request-id": "a07160f9-7a23-4af7-a5cd-fa2a45c975cf", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:58 GMT", + "Date": "Fri, 30 Oct 2020 12:57:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "e8e275a9-13f4-423e-9dfc-38d554234b27", + "modelId": "789651c7-a048-411e-8a60-7209c285d6c6", "status": "creating", - "createdDateTime": "2020-09-09T22:33:57Z", - "lastUpdatedDateTime": "2020-09-09T22:33:57Z" + "createdDateTime": "2020-10-30T12:57:19Z", + "lastUpdatedDateTime": "2020-10-30T12:57:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9e670515f14364c487d8ab1b956b98cb", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "82fc7f2e-554a-4c07-af35-faa7cfa55831", + "apim-request-id": "788e9cd8-840f-4598-b505-7a6c48ee075f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:33:59 GMT", + "Date": "Fri, 30 Oct 2020 12:57:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "e8e275a9-13f4-423e-9dfc-38d554234b27", + "modelId": "789651c7-a048-411e-8a60-7209c285d6c6", "status": "creating", - "createdDateTime": "2020-09-09T22:33:57Z", - "lastUpdatedDateTime": "2020-09-09T22:33:57Z" + "createdDateTime": "2020-10-30T12:57:19Z", + "lastUpdatedDateTime": "2020-10-30T12:57:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8f8f3d5028372f2ee2bbbf5dc00d8a28", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1710d1b6-6b3b-49ac-bab1-75b3aff08cfa", + "apim-request-id": "d3c5b193-2b74-4bec-9150-406e1d65162a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:00 GMT", + "Date": "Fri, 30 Oct 2020 12:57:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "e8e275a9-13f4-423e-9dfc-38d554234b27", + "modelId": "789651c7-a048-411e-8a60-7209c285d6c6", "status": "creating", - "createdDateTime": "2020-09-09T22:33:57Z", - "lastUpdatedDateTime": "2020-09-09T22:33:57Z" + "createdDateTime": "2020-10-30T12:57:19Z", + "lastUpdatedDateTime": "2020-10-30T12:57:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a2f4306343070911c129d0c3ed63d1d1", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4268301d-41c6-45e8-a905-7fd51c8d1c39", + "apim-request-id": "af31d873-0f90-4606-a9d6-9fc0563ae4a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:01 GMT", + "Date": "Fri, 30 Oct 2020 12:57:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "e8e275a9-13f4-423e-9dfc-38d554234b27", + "modelId": "789651c7-a048-411e-8a60-7209c285d6c6", "status": "creating", - "createdDateTime": "2020-09-09T22:33:57Z", - "lastUpdatedDateTime": "2020-09-09T22:33:57Z" + "createdDateTime": "2020-10-30T12:57:19Z", + "lastUpdatedDateTime": "2020-10-30T12:57:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a0daad3a712ded46d638bb873266a37a", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b47c814-63cc-400c-8167-78b849d34181", + "apim-request-id": "8e66e914-925d-4d61-9255-73e00acc463a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:02 GMT", + "Date": "Fri, 30 Oct 2020 12:57:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "152" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "modelInfo": { - "modelId": "e8e275a9-13f4-423e-9dfc-38d554234b27", + "modelId": "789651c7-a048-411e-8a60-7209c285d6c6", "status": "creating", - "createdDateTime": "2020-09-09T22:33:57Z", - "lastUpdatedDateTime": "2020-09-09T22:33:57Z" + "createdDateTime": "2020-10-30T12:57:19Z", + "lastUpdatedDateTime": "2020-10-30T12:57:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "64b8834ef6770cc32b85cd0d576b417f", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e85d1848-a2d4-467d-8db9-86aa93ff528d", + "apim-request-id": "b1ab1ad9-7445-4b0d-95f6-cac25ff6f609", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:03 GMT", + "Date": "Fri, 30 Oct 2020 12:57:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "e8e275a9-13f4-423e-9dfc-38d554234b27", + "modelId": "789651c7-a048-411e-8a60-7209c285d6c6", "status": "creating", - "createdDateTime": "2020-09-09T22:33:57Z", - "lastUpdatedDateTime": "2020-09-09T22:33:57Z" + "createdDateTime": "2020-10-30T12:57:19Z", + "lastUpdatedDateTime": "2020-10-30T12:57:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1322edeae933f1faea07cbcf8789d75a", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "443b4e4a-7561-41c1-9bc1-5f03cf6c9d6d", + "apim-request-id": "26588b6b-d574-4578-b256-b0ea85c0e96a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:04 GMT", + "Date": "Fri, 30 Oct 2020 12:57:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "e8e275a9-13f4-423e-9dfc-38d554234b27", + "modelId": "789651c7-a048-411e-8a60-7209c285d6c6", "status": "creating", - "createdDateTime": "2020-09-09T22:33:57Z", - "lastUpdatedDateTime": "2020-09-09T22:33:57Z" + "createdDateTime": "2020-10-30T12:57:19Z", + "lastUpdatedDateTime": "2020-10-30T12:57:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6a7556866cab435ae9cd74a8a438956b", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23fa187d-9ed4-4cf8-8f6c-adc257d29eff", + "apim-request-id": "51488f4b-7904-42e3-a503-5c4157d6a167", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:05 GMT", + "Date": "Fri, 30 Oct 2020 12:57:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "e8e275a9-13f4-423e-9dfc-38d554234b27", + "modelId": "789651c7-a048-411e-8a60-7209c285d6c6", "status": "creating", - "createdDateTime": "2020-09-09T22:33:57Z", - "lastUpdatedDateTime": "2020-09-09T22:33:57Z" + "createdDateTime": "2020-10-30T12:57:19Z", + "lastUpdatedDateTime": "2020-10-30T12:57:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "449d3cf69044644688c67a702bf485a2", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "756d65b4-8cfa-45d0-adaf-0a29e7d896f8", + "apim-request-id": "6d03db6b-857a-43bf-aa9f-a519e9886dae", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:06 GMT", + "Date": "Fri, 30 Oct 2020 12:57:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "175" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "modelInfo": { - "modelId": "e8e275a9-13f4-423e-9dfc-38d554234b27", + "modelId": "789651c7-a048-411e-8a60-7209c285d6c6", "status": "creating", - "createdDateTime": "2020-09-09T22:33:57Z", - "lastUpdatedDateTime": "2020-09-09T22:33:57Z" + "createdDateTime": "2020-10-30T12:57:19Z", + "lastUpdatedDateTime": "2020-10-30T12:57:19Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "018673add6f67dd393df296675524db1", "x-ms-return-client-request-id": "true" @@ -378,86 +378,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d2499327-24b6-48dd-b42c-c7df6c08b511", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:07 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "e8e275a9-13f4-423e-9dfc-38d554234b27", - "status": "creating", - "createdDateTime": "2020-09-09T22:33:57Z", - "lastUpdatedDateTime": "2020-09-09T22:33:57Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4ad95f7193ebf6160f11e2e4f1ea17f5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ba4ebd63-ec1d-4bcc-b6fd-7cbce815e6bf", + "apim-request-id": "7c7c99bf-f0be-413c-8b37-a0e8464f31bc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:08 GMT", + "Date": "Fri, 30 Oct 2020 12:57:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "e8e275a9-13f4-423e-9dfc-38d554234b27", - "status": "creating", - "createdDateTime": "2020-09-09T22:33:57Z", - "lastUpdatedDateTime": "2020-09-09T22:33:57Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "31fad14793b21f746820b06466dfee35", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f13c573d-62c2-436a-8c48-820945c501c3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "modelInfo": { - "modelId": "e8e275a9-13f4-423e-9dfc-38d554234b27", + "modelId": "789651c7-a048-411e-8a60-7209c285d6c6", "status": "ready", - "createdDateTime": "2020-09-09T22:33:57Z", - "lastUpdatedDateTime": "2020-09-09T22:34:10Z" + "createdDateTime": "2020-10-30T12:57:19Z", + "lastUpdatedDateTime": "2020-10-30T12:57:31Z" }, "keys": { "clusters": { @@ -527,371 +461,309 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "25662", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e9e6f877670d354fb2bb477c511adab1-79c3944f72ece840-00", + "traceparent": "00-98fb662d2cb00f4d9d8cf9a097a05b2c-04ee6999da686148-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "cbfec9793a1b1ab75c90f1e5f4ee8ba9", + "x-ms-client-request-id": "4ad95f7193ebf6160f11e2e4f1ea17f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "8d258f63-4b88-461c-976c-59ca9ee77c57", + "apim-request-id": "e3eeaab4-476d-461b-9ec5-acee1e136e47", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:34:10 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27/analyzeresults/0591d1fb-f9c5-4cb9-836c-db4430cb647f", + "Date": "Fri, 30 Oct 2020 12:57:32 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/789651c7-a048-411e-8a60-7209c285d6c6/analyzeresults/0a1f2d37-e763-4eca-b2c4-fd7dcdadf4c9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "142" + "x-envoy-upstream-service-time": "95" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27/analyzeResults/0591d1fb-f9c5-4cb9-836c-db4430cb647f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6/analyzeResults/0a1f2d37-e763-4eca-b2c4-fd7dcdadf4c9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a31e34c71b58ddfeeab9e2cbe3b18f30", + "x-ms-client-request-id": "31fad14793b21f746820b06466dfee35", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ae81a805-d46c-46b2-8dd8-c27fac568974", + "apim-request-id": "51b0f5a3-6674-4abd-a078-69f1979c7f70", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:10 GMT", + "Date": "Fri, 30 Oct 2020 12:57:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:34:10Z", - "lastUpdatedDateTime": "2020-09-09T22:34:10Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27/analyzeResults/0591d1fb-f9c5-4cb9-836c-db4430cb647f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "286aad224ceb0dda1ae0d421a18f2b79", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bef81683-9e7a-4623-a7da-b322c3433931", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:34:10Z", - "lastUpdatedDateTime": "2020-09-09T22:34:11Z", - "analyzeResult": null + "createdDateTime": "2020-10-30T12:57:33Z", + "lastUpdatedDateTime": "2020-10-30T12:57:33Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27/analyzeResults/0591d1fb-f9c5-4cb9-836c-db4430cb647f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6/analyzeResults/0a1f2d37-e763-4eca-b2c4-fd7dcdadf4c9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "329d07944bc05dddca20e06158ec37ab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9da6a7be-e5aa-4eb6-8472-f299be19e13b", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:13 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:34:10Z", - "lastUpdatedDateTime": "2020-09-09T22:34:11Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27/analyzeResults/0591d1fb-f9c5-4cb9-836c-db4430cb647f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "47c3c10063847bbe5911897747dd3c5b", + "x-ms-client-request-id": "cbfec9793a1b1ab75c90f1e5f4ee8ba9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c6c5d543-6f44-402a-bdb8-bc0b6d48a661", + "apim-request-id": "41163ff8-49b5-46de-aa0b-689b2e036ac7", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:14 GMT", + "Date": "Fri, 30 Oct 2020 12:57:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:10Z", - "lastUpdatedDateTime": "2020-09-09T22:34:11Z", + "createdDateTime": "2020-10-30T12:57:33Z", + "lastUpdatedDateTime": "2020-10-30T12:57:33Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27/analyzeResults/0591d1fb-f9c5-4cb9-836c-db4430cb647f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6/analyzeResults/0a1f2d37-e763-4eca-b2c4-fd7dcdadf4c9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "db36688e5d13d76fcf0d5dca6b79b42e", + "x-ms-client-request-id": "a31e34c71b58ddfeeab9e2cbe3b18f30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e5b96452-6e80-4edf-a3f2-027dbe35a4c3", + "apim-request-id": "8565d1a7-e4bb-4bdb-b0a8-addc9f1462e0", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:15 GMT", + "Date": "Fri, 30 Oct 2020 12:57:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:10Z", - "lastUpdatedDateTime": "2020-09-09T22:34:11Z", + "createdDateTime": "2020-10-30T12:57:33Z", + "lastUpdatedDateTime": "2020-10-30T12:57:33Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27/analyzeResults/0591d1fb-f9c5-4cb9-836c-db4430cb647f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6/analyzeResults/0a1f2d37-e763-4eca-b2c4-fd7dcdadf4c9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e02129a9e3cc31f54822d8afc26516ed", + "x-ms-client-request-id": "286aad224ceb0dda1ae0d421a18f2b79", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6dc8dfcb-6044-43d2-bc09-8dc906147b2a", + "apim-request-id": "40a6c854-4572-4a91-bf88-4f0b4b6d879d", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:16 GMT", + "Date": "Fri, 30 Oct 2020 12:57:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:10Z", - "lastUpdatedDateTime": "2020-09-09T22:34:11Z", + "createdDateTime": "2020-10-30T12:57:33Z", + "lastUpdatedDateTime": "2020-10-30T12:57:33Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27/analyzeResults/0591d1fb-f9c5-4cb9-836c-db4430cb647f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6/analyzeResults/0a1f2d37-e763-4eca-b2c4-fd7dcdadf4c9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f0d285e45bb5a29752eb777606f30fe0", + "x-ms-client-request-id": "329d07944bc05dddca20e06158ec37ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "828c5667-c025-4310-af5d-b03af1bb8c84", + "apim-request-id": "0258ec37-9a0a-484e-937a-f9d717665781", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:17 GMT", + "Date": "Fri, 30 Oct 2020 12:57:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:10Z", - "lastUpdatedDateTime": "2020-09-09T22:34:11Z", + "createdDateTime": "2020-10-30T12:57:33Z", + "lastUpdatedDateTime": "2020-10-30T12:57:33Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27/analyzeResults/0591d1fb-f9c5-4cb9-836c-db4430cb647f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6/analyzeResults/0a1f2d37-e763-4eca-b2c4-fd7dcdadf4c9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1dce5a5c5bbbaa8f720592f184bf156a", + "x-ms-client-request-id": "47c3c10063847bbe5911897747dd3c5b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a556df9c-3a1a-4359-9d8a-9ad5461eb80d", + "apim-request-id": "850fed92-1dbb-449f-bb01-c696507cf3c5", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:18 GMT", + "Date": "Fri, 30 Oct 2020 12:57:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:10Z", - "lastUpdatedDateTime": "2020-09-09T22:34:11Z", + "createdDateTime": "2020-10-30T12:57:33Z", + "lastUpdatedDateTime": "2020-10-30T12:57:33Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27/analyzeResults/0591d1fb-f9c5-4cb9-836c-db4430cb647f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6/analyzeResults/0a1f2d37-e763-4eca-b2c4-fd7dcdadf4c9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e5e56ff6c4a64e78927e8de06c7f2b55", + "x-ms-client-request-id": "db36688e5d13d76fcf0d5dca6b79b42e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "96d8a0d5-e7c5-416d-8cdb-06e5af828801", + "apim-request-id": "1a4da7a3-116d-4796-97fe-939dce6c1679", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:19 GMT", + "Date": "Fri, 30 Oct 2020 12:57:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:10Z", - "lastUpdatedDateTime": "2020-09-09T22:34:11Z", + "createdDateTime": "2020-10-30T12:57:33Z", + "lastUpdatedDateTime": "2020-10-30T12:57:33Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27/analyzeResults/0591d1fb-f9c5-4cb9-836c-db4430cb647f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6/analyzeResults/0a1f2d37-e763-4eca-b2c4-fd7dcdadf4c9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6752f812f8968831f6277eb0c8a61d92", + "x-ms-client-request-id": "e02129a9e3cc31f54822d8afc26516ed", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6d43d5b-f294-4908-8921-158e3e10a7dc", + "apim-request-id": "15250d46-1e71-426c-9a1a-4801ee14058d", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:20 GMT", + "Date": "Fri, 30 Oct 2020 12:57:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:34:10Z", - "lastUpdatedDateTime": "2020-09-09T22:34:11Z", + "createdDateTime": "2020-10-30T12:57:33Z", + "lastUpdatedDateTime": "2020-10-30T12:57:33Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27/analyzeResults/0591d1fb-f9c5-4cb9-836c-db4430cb647f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6/analyzeResults/0a1f2d37-e763-4eca-b2c4-fd7dcdadf4c9", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "967f0cd62a0d9839e1808b3dceae3ef3", + "x-ms-client-request-id": "f0d285e45bb5a29752eb777606f30fe0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8cb526d7-e02e-4d63-807c-68c7658f62e0", + "apim-request-id": "57d7a32b-0f16-49a6-8591-b1cd4badefe4", "Content-Length": "340", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:34:21 GMT", + "Date": "Fri, 30 Oct 2020 12:57:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:34:10Z", - "lastUpdatedDateTime": "2020-09-09T22:34:20Z", + "createdDateTime": "2020-10-30T12:57:33Z", + "lastUpdatedDateTime": "2020-10-30T12:57:42Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -918,28 +790,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e8e275a9-13f4-423e-9dfc-38d554234b27", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/789651c7-a048-411e-8a60-7209c285d6c6", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2142f5ee2a2fd542a4e1d1e4e4ede4ce-2b4e21a9d7051044-00", + "traceparent": "00-95abfa620ab4b74ca8e19eb1e20e1446-20272c606c46004f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8cde3ddaad6dfed43e5cef7e46c885eb", + "x-ms-client-request-id": "1dce5a5c5bbbaa8f720592f184bf156a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "9e239a46-5ddb-4ef1-9854-73ade2e499a9", + "apim-request-id": "d921f624-446e-4845-a4de-815c07885ab0", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:34:21 GMT", + "Date": "Fri, 30 Oct 2020 12:57:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": [] } @@ -947,7 +819,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1670903421" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageForm(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageForm(True).json index a5f972d496b37..7fe91237dc2d6 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageForm(True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageForm(True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-613ec38d1d5f7d4f81f0e3947b10b234-31c1ffc27314f744-00", + "traceparent": "00-65a9eaf47370a44dad6e189a268ce31f-c71d9ee23930b142-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a090d77538efe23bd6964863cb0fc764", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "2eab415c-cd46-46bc-9458-a624b7b60d88", + "apim-request-id": "35a522d9-68de-452a-8993-a3b5cb12ee09", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:31:36 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d", + "Date": "Fri, 30 Oct 2020 12:55:40 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "206" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0c26828739e5e7de93c01d27aa2f6c27", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b7101ca-6cd3-460b-ab29-358c84ce56e8", + "apim-request-id": "0c8209e9-3333-48ae-84ac-782b13ee2ff8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:36 GMT", + "Date": "Fri, 30 Oct 2020 12:55:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6b3b0298def5644f6268971abdee6909", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8c86c8f-74cf-4a84-8e63-3e1ce88d9caf", + "apim-request-id": "7dc18fa3-d8f7-442d-9d8d-d4f9173d6bdf", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:37 GMT", + "Date": "Fri, 30 Oct 2020 12:55:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "af7cf5b284673bd2f8a90c2e1b1437a6", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a45f415-b022-44af-9ef0-6ea9ef139250", + "apim-request-id": "5b188e70-7b75-4ab9-b549-68c205c73e08", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:38 GMT", + "Date": "Fri, 30 Oct 2020 12:55:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c8cb202a5bd3a86e33c2aa7ca1c32aa5", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a097cac-39f1-4713-bd3a-99d47b407fa0", + "apim-request-id": "7e390257-977c-4f91-b40b-86c99c357457", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:39 GMT", + "Date": "Fri, 30 Oct 2020 12:55:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b4741357bdb214c02fff734cd221494d", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb471634-e87d-43f8-a109-a2a1763eb662", + "apim-request-id": "e32e321c-8c6a-447c-91bd-981e97ed32dd", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:40 GMT", + "Date": "Fri, 30 Oct 2020 12:55:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9df0f031a023563587d47ba5d9559934", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5710ddd5-ecd9-45fc-8c0f-3174f8850ec3", + "apim-request-id": "6fe5b643-ccd9-4c36-a821-5fe6e3bfbc6c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:41 GMT", + "Date": "Fri, 30 Oct 2020 12:55:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "07d6677e83a06df35fb799d3e821d512", "x-ms-return-client-request-id": "true" @@ -246,9 +246,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e0e75f5-6fc9-47ba-bd16-ad6395e39ba3", + "apim-request-id": "4db4fff7-8d03-4251-baf7-22a5ff2000a5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:42 GMT", + "Date": "Fri, 30 Oct 2020 12:55:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -256,22 +256,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b14b5c788dd3b782de1d2dde411b3ad9", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "802fbb10-7553-4641-9c7a-b643ae1b4e91", + "apim-request-id": "59aa6b5a-36ce-4793-842a-4933858e6f03", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:44 GMT", + "Date": "Fri, 30 Oct 2020 12:55:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6bce3e66424aaeadfc833d6b07616e65", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4ca824d-b042-4d97-91dc-a209fc64d287", + "apim-request-id": "4ad877bc-6b2a-4061-889b-89e25856d1bd", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:45 GMT", + "Date": "Fri, 30 Oct 2020 12:55:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7c2c69fee80af061e51f288255152c44", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "69f913af-8893-405c-9f37-2ee3139e0d3e", + "apim-request-id": "5fba3f17-a275-4f42-b63c-a41bb0934537", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:46 GMT", + "Date": "Fri, 30 Oct 2020 12:55:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aa6dbf7c6a5336c8af9db4505016b07c", "x-ms-return-client-request-id": "true" @@ -378,32 +378,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a1be168-3c5b-43d3-8b3b-bb4d2d45bc8e", + "apim-request-id": "340c2cef-4737-4dce-9f5a-07eb6248a852", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:47 GMT", + "Date": "Fri, 30 Oct 2020 12:55:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d7dfc7afbdee7dcfdcdd862a192a58e7", "x-ms-return-client-request-id": "true" @@ -411,32 +411,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad6231fb-7a74-4a5b-9b35-65b56ece1cc8", + "apim-request-id": "a9f5382c-b70b-42cb-a000-05bea2699e4f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:48 GMT", + "Date": "Fri, 30 Oct 2020 12:55:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "47eff857c3f39311a1f5cd6d3411a0ce", "x-ms-return-client-request-id": "true" @@ -444,32 +444,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c8fc687-89da-4a0e-80f3-443ee438c788", + "apim-request-id": "a125511c-402f-402a-9177-695e5be922a1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:49 GMT", + "Date": "Fri, 30 Oct 2020 12:55:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8dd3ac6f5435be56eff0cd76e49d1d84", "x-ms-return-client-request-id": "true" @@ -477,9 +477,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c6d8904-5be5-45b6-8da3-e48556605533", + "apim-request-id": "b3cdce38-ff6e-49ad-8dc9-1cad537a3a9b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:50 GMT", + "Date": "Fri, 30 Oct 2020 12:55:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -487,22 +487,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "57f9cc446826eb89b64b36f8f06248ca", "x-ms-return-client-request-id": "true" @@ -510,32 +510,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3323bae0-7b61-494b-b87c-c3a3b5a6855d", + "apim-request-id": "a42a7390-6d4d-4c1a-94ae-d7c35de06f76", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:51 GMT", + "Date": "Fri, 30 Oct 2020 12:55:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6dbbb73cca5702b1a2305802f59aaf03", "x-ms-return-client-request-id": "true" @@ -543,32 +543,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b9a020fe-b33b-4b42-9cdd-2fddbece6061", + "apim-request-id": "89ed861b-918a-45fd-8a80-020e8bafc6ae", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:52 GMT", + "Date": "Fri, 30 Oct 2020 12:55:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "672848d7491806a722e7d7e91d5dce8d", "x-ms-return-client-request-id": "true" @@ -576,32 +576,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "467b8d85-754b-4630-b59f-e22fdfd11e89", + "apim-request-id": "05342bce-e6cb-4248-9bf0-d8c84758d427", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:53 GMT", + "Date": "Fri, 30 Oct 2020 12:56:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:55:40Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2c3a03a7b0e17a2c1af6b4f61086f51b", "x-ms-return-client-request-id": "true" @@ -609,98 +609,46 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "764f2f19-f93c-428a-9226-251281bf5381", + "apim-request-id": "409913ea-4724-456c-a4f7-3cbc3ac72d20", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:54 GMT", + "Date": "Fri, 30 Oct 2020 12:56:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", - "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a821339ce13af3b20fb54a70f2c8e545", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a88c1a41-479b-4667-b9de-2d7b9a105b07", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", - "status": "creating", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:36Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f25bcb62836027211bae4c2294b1f69c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c8388fc3-c76a-4d30-beea-fbb7679339a6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2344a02d-154a-494b-97b7-6d389cdccd8d", + "modelId": "577a5a06-7f1b-4cf7-916a-b79161669818", "status": "ready", - "createdDateTime": "2020-09-09T22:31:36Z", - "lastUpdatedDateTime": "2020-09-09T22:31:56Z" + "createdDateTime": "2020-10-30T12:55:40Z", + "lastUpdatedDateTime": "2020-10-30T12:56:01Z" }, "keys": { "clusters": { "0": [ + "25% discount on program guide", + "50% discount on program guide", + "Bronze Sponsor", "Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in", + "Full Booth", + "Full booth", + "Full page ad in program guide", + "Gold Sponsor", + "Half Booth", + "Half page ad in program guide", "Included", + "Logo on poster", "Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person", "Package", + "Post-keynote thank you", + "Pre-keynote thank you", "Price", "Rates:", + "Silver Sponsor", "Vendor #:", "Vendor Registration", + "advertisements", "below, and attach a check made out to:", "waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form" ], @@ -752,433 +700,371 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "711607", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e3225a33ac80b747975b43552994ad97-baccc5d5635bc84b-00", + "traceparent": "00-edb13f3d2fee0c48a12e7778ff3444e6-b6947699e4199045-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ea4dbcf1263cc65350471c2c66bc8752", + "x-ms-client-request-id": "a821339ce13af3b20fb54a70f2c8e545", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7b14a73f-59bd-4d3d-b153-3e1359d81c03", + "apim-request-id": "5814ad2e-d72e-4803-99a7-b563e85c021b", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:31:58 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeresults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", + "Date": "Fri, 30 Oct 2020 12:56:02 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818/analyzeresults/f0e54b7f-864e-40cf-ad84-7bda4bc2257a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "204" + "x-envoy-upstream-service-time": "212" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeResults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818/analyzeResults/f0e54b7f-864e-40cf-ad84-7bda4bc2257a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "45946f11032b19ba11f98c8b958f5e5e", + "x-ms-client-request-id": "f25bcb62836027211bae4c2294b1f69c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92d1f566-2032-435e-ab33-d7eee6914a34", + "apim-request-id": "1c569bd5-1e32-454f-adae-3363d9b8fd55", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:58 GMT", + "Date": "Fri, 30 Oct 2020 12:56:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:31:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:58Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeResults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "367faebefa7a3c097795a11866f4c05e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f979c2fb-7dc0-4e19-80df-0db92eceab2f", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:31:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:31:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:59Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeResults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2411f926b01ced710134d94299c731c0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1a93374e-4511-443f-bd32-2f44015bd405", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:31:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:59Z", - "analyzeResult": null + "createdDateTime": "2020-10-30T12:56:03Z", + "lastUpdatedDateTime": "2020-10-30T12:56:03Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeResults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818/analyzeResults/f0e54b7f-864e-40cf-ad84-7bda4bc2257a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b86ebee8513d16d76658cd9561a2b21c", + "x-ms-client-request-id": "ea4dbcf1263cc65350471c2c66bc8752", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ebd3a9d-c658-41f2-8654-6ba6f091ec45", + "apim-request-id": "091cc115-109f-4083-b694-3c9e9c5202db", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:01 GMT", + "Date": "Fri, 30 Oct 2020 12:56:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:31:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:59Z", + "createdDateTime": "2020-10-30T12:56:03Z", + "lastUpdatedDateTime": "2020-10-30T12:56:04Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeResults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818/analyzeResults/f0e54b7f-864e-40cf-ad84-7bda4bc2257a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9b642d393a7e0e413c91344621c6a2b0", + "x-ms-client-request-id": "45946f11032b19ba11f98c8b958f5e5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a6e0aab-7fec-463c-9e85-91b1e07208de", + "apim-request-id": "3c014823-0f44-4a88-a9ca-6249a1b869d8", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:02 GMT", + "Date": "Fri, 30 Oct 2020 12:56:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:31:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:59Z", + "createdDateTime": "2020-10-30T12:56:03Z", + "lastUpdatedDateTime": "2020-10-30T12:56:04Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeResults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818/analyzeResults/f0e54b7f-864e-40cf-ad84-7bda4bc2257a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a730e0640886d52121fabdc4e3db8c5f", + "x-ms-client-request-id": "367faebefa7a3c097795a11866f4c05e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "68a5cba2-42cd-41d0-abfa-f186a32d4473", + "apim-request-id": "667674a3-d3f4-479f-bb99-0800c05ca7e0", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:03 GMT", + "Date": "Fri, 30 Oct 2020 12:56:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:31:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:59Z", + "createdDateTime": "2020-10-30T12:56:03Z", + "lastUpdatedDateTime": "2020-10-30T12:56:04Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeResults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818/analyzeResults/f0e54b7f-864e-40cf-ad84-7bda4bc2257a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6b09bc819562ae417c5f7bab1d91f59f", + "x-ms-client-request-id": "2411f926b01ced710134d94299c731c0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0320670d-1695-4c6d-a3c4-4caf22f749c6", + "apim-request-id": "ed544861-74f0-4ee5-a5b5-fa0426e09289", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:04 GMT", + "Date": "Fri, 30 Oct 2020 12:56:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:31:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:59Z", + "createdDateTime": "2020-10-30T12:56:03Z", + "lastUpdatedDateTime": "2020-10-30T12:56:04Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeResults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818/analyzeResults/f0e54b7f-864e-40cf-ad84-7bda4bc2257a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "80311cb50b7130960b8f79847c7d2a61", + "x-ms-client-request-id": "b86ebee8513d16d76658cd9561a2b21c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cdfa25ae-2ed9-45f3-9cb1-1da6af196263", + "apim-request-id": "a215098f-d3a5-49ab-9314-f114e4132c04", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:05 GMT", + "Date": "Fri, 30 Oct 2020 12:56:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:31:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:59Z", + "createdDateTime": "2020-10-30T12:56:03Z", + "lastUpdatedDateTime": "2020-10-30T12:56:04Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeResults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818/analyzeResults/f0e54b7f-864e-40cf-ad84-7bda4bc2257a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "65c5d40437bdce4d9e812a268d76b890", + "x-ms-client-request-id": "9b642d393a7e0e413c91344621c6a2b0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed4c1a26-86af-496d-b4f7-d1d75f9c44dc", + "apim-request-id": "c634979c-b0bb-4f41-a75b-4c10af11c88d", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:06 GMT", + "Date": "Fri, 30 Oct 2020 12:56:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:31:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:59Z", + "createdDateTime": "2020-10-30T12:56:03Z", + "lastUpdatedDateTime": "2020-10-30T12:56:04Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeResults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818/analyzeResults/f0e54b7f-864e-40cf-ad84-7bda4bc2257a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c60e1d050ba976ed26d85fd31cbd32ff", + "x-ms-client-request-id": "a730e0640886d52121fabdc4e3db8c5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9d7fadb5-89b2-42cb-a8c8-fa9f9858a27d", + "apim-request-id": "2b933492-5df9-4724-8eea-0b57baace507", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:07 GMT", + "Date": "Fri, 30 Oct 2020 12:56:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:31:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:59Z", + "createdDateTime": "2020-10-30T12:56:03Z", + "lastUpdatedDateTime": "2020-10-30T12:56:04Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeResults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818/analyzeResults/f0e54b7f-864e-40cf-ad84-7bda4bc2257a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "48a619358fcc7de2cf63e1f0e06fa395", + "x-ms-client-request-id": "6b09bc819562ae417c5f7bab1d91f59f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f830d39-d022-43d7-babd-be21221ac5d8", + "apim-request-id": "93c25613-0665-401f-97c6-943378f8e7d5", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:08 GMT", + "Date": "Fri, 30 Oct 2020 12:56:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:31:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:59Z", + "createdDateTime": "2020-10-30T12:56:03Z", + "lastUpdatedDateTime": "2020-10-30T12:56:04Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeResults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818/analyzeResults/f0e54b7f-864e-40cf-ad84-7bda4bc2257a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5e7ee9d6646ef9b8e64e3ee5d87ab2e1", + "x-ms-client-request-id": "80311cb50b7130960b8f79847c7d2a61", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d7e274b1-a430-4c5a-be60-ccda5d72ec79", + "apim-request-id": "4577e531-2eaa-4597-9f3d-321af794f807", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:10 GMT", + "Date": "Fri, 30 Oct 2020 12:56:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:31:58Z", - "lastUpdatedDateTime": "2020-09-09T22:31:59Z", + "createdDateTime": "2020-10-30T12:56:03Z", + "lastUpdatedDateTime": "2020-10-30T12:56:04Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d/analyzeResults/6758eba6-c5ca-4c47-acdd-c640b7a83c35", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818/analyzeResults/f0e54b7f-864e-40cf-ad84-7bda4bc2257a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "73f12b4f6fcf75c33b91f7462afd95b7", + "x-ms-client-request-id": "65c5d40437bdce4d9e812a268d76b890", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "928b204f-c368-4d90-af4e-99d61f4fb2da", - "Content-Length": "29754", + "apim-request-id": "de4c2740-5211-45b0-8c73-982e59283f9b", + "Content-Length": "24800", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:11 GMT", + "Date": "Fri, 30 Oct 2020 12:56:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:31:58Z", - "lastUpdatedDateTime": "2020-09-09T22:32:11Z", + "createdDateTime": "2020-10-30T12:56:03Z", + "lastUpdatedDateTime": "2020-10-30T12:56:14Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -4103,6 +3989,186 @@ }, "confidence": 1.0 }, + { + "key": { + "text": "Full Booth", + "boundingBox": [ + 3.2139, + 4.917, + 3.8722, + 4.917, + 3.8722, + 5.033, + 3.2139, + 5.033 + ], + "elements": [ + "#/readResults/0/lines/15/words/0", + "#/readResults/0/lines/15/words/1" + ] + }, + "value": { + "text": "$1,500", + "boundingBox": [ + 5.8319, + 4.8976, + 6.2833, + 4.8976, + 6.2833, + 5.0469, + 5.8319, + 5.0469 + ], + "elements": [ + "#/readResults/0/lines/16/words/0" + ] + }, + "confidence": 0.36 + }, + { + "key": { + "text": "Full Booth", + "boundingBox": [ + 3.2139, + 5.9868, + 3.8722, + 5.9868, + 3.8722, + 6.1031, + 3.2139, + 6.1031 + ], + "elements": [ + "#/readResults/0/lines/21/words/0", + "#/readResults/0/lines/21/words/1" + ] + }, + "value": { + "text": "$1,200", + "boundingBox": [ + 5.8319, + 5.9677, + 6.2833, + 5.9677, + 6.2833, + 6.1167, + 5.8319, + 6.1167 + ], + "elements": [ + "#/readResults/0/lines/22/words/0" + ] + }, + "confidence": 0.36 + }, + { + "key": { + "text": "Full Booth", + "boundingBox": [ + 3.2139, + 6.842, + 3.8722, + 6.842, + 3.8722, + 6.958, + 3.2139, + 6.958 + ], + "elements": [ + "#/readResults/0/lines/27/words/0", + "#/readResults/0/lines/27/words/1" + ] + }, + "value": { + "text": "$1,000", + "boundingBox": [ + 5.8319, + 6.8226, + 6.2833, + 6.8226, + 6.2833, + 6.9719, + 5.8319, + 6.9719 + ], + "elements": [ + "#/readResults/0/lines/28/words/0" + ] + }, + "confidence": 0.36 + }, + { + "key": { + "text": "Full Booth", + "boundingBox": [ + 3.2139, + 7.6903, + 3.8722, + 7.6903, + 3.8722, + 7.8063, + 3.2139, + 7.8063 + ], + "elements": [ + "#/readResults/0/lines/33/words/0", + "#/readResults/0/lines/33/words/1" + ] + }, + "value": { + "text": "$600", + "boundingBox": [ + 5.8319, + 7.6712, + 6.1583, + 7.6712, + 6.1583, + 7.8167, + 5.8319, + 7.8167 + ], + "elements": [ + "#/readResults/0/lines/34/words/0" + ] + }, + "confidence": 0.36 + }, + { + "key": { + "text": "Full Booth", + "boundingBox": [ + 3.2139, + 8.3253, + 3.8722, + 8.3253, + 3.8722, + 8.4413, + 3.2139, + 8.4413 + ], + "elements": [ + "#/readResults/0/lines/38/words/0", + "#/readResults/0/lines/38/words/1" + ] + }, + "value": { + "text": "$350", + "boundingBox": [ + 5.8319, + 8.3062, + 6.1583, + 8.3062, + 6.1583, + 8.4514, + 5.8319, + 8.4514 + ], + "elements": [ + "#/readResults/0/lines/39/words/0" + ] + }, + "confidence": 0.36 + }, { "key": { "text": "__Address__1", @@ -4135,483 +4201,7 @@ "confidence": 1.0 } ], - "tables": [ - { - "rows": 6, - "columns": 3, - "cells": [ - { - "text": "Package", - "rowIndex": 0, - "columnIndex": 0, - "boundingBox": [ - 1.0931, - 4.6986, - 1.6236, - 4.6986, - 1.6236, - 4.8427, - 1.0931, - 4.8427 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/11/words/0" - ], - "isHeader": true, - "isFooter": false - }, - { - "text": "Included", - "rowIndex": 0, - "columnIndex": 1, - "boundingBox": [ - 2.7125, - 4.6986, - 3.2708, - 4.6986, - 3.2708, - 4.8146, - 2.7125, - 4.8146 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/12/words/0" - ], - "isHeader": true, - "isFooter": false - }, - { - "text": "Price", - "rowIndex": 0, - "columnIndex": 2, - "boundingBox": [ - 5.8375, - 4.7038, - 6.1514, - 4.7038, - 6.1514, - 4.8146, - 5.8375, - 4.8146 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/13/words/0" - ], - "isHeader": true, - "isFooter": false - }, - { - "text": "Gold Sponsor", - "rowIndex": 1, - "columnIndex": 0, - "boundingBox": [ - 1.0861, - 4.9125, - 1.9833, - 4.9125, - 1.9833, - 5.042, - 1.0861, - 5.042 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/14/words/0", - "#/readResults/0/lines/14/words/1" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Full booth Pre-keynote thank you Logo on poster Full page ad in program guide", - "rowIndex": 1, - "columnIndex": 1, - "boundingBox": [ - 3.2139, - 4.917, - 5.2014, - 4.917, - 5.2014, - 5.6885, - 3.2139, - 5.6885 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/15/words/0", - "#/readResults/0/lines/15/words/1", - "#/readResults/0/lines/17/words/0", - "#/readResults/0/lines/17/words/1", - "#/readResults/0/lines/17/words/2", - "#/readResults/0/lines/18/words/0", - "#/readResults/0/lines/18/words/1", - "#/readResults/0/lines/18/words/2", - "#/readResults/0/lines/19/words/0", - "#/readResults/0/lines/19/words/1", - "#/readResults/0/lines/19/words/2", - "#/readResults/0/lines/19/words/3", - "#/readResults/0/lines/19/words/4", - "#/readResults/0/lines/19/words/5" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "$1,500", - "rowIndex": 1, - "columnIndex": 2, - "boundingBox": [ - 5.8319, - 4.8976, - 6.2833, - 4.8976, - 6.2833, - 5.0469, - 5.8319, - 5.0469 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/16/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Silver Sponsor", - "rowIndex": 2, - "columnIndex": 0, - "boundingBox": [ - 1.0833, - 5.982, - 2.0333, - 5.982, - 2.0333, - 6.1098, - 1.0833, - 6.1098 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/20/words/0", - "#/readResults/0/lines/20/words/1" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Full booth Post-keynote thank you Logo on poster Half page ad in program guide", - "rowIndex": 2, - "columnIndex": 1, - "boundingBox": [ - 3.2139, - 5.9868, - 5.2306, - 5.9868, - 5.2306, - 6.7569, - 3.2139, - 6.7569 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/21/words/0", - "#/readResults/0/lines/21/words/1", - "#/readResults/0/lines/23/words/0", - "#/readResults/0/lines/23/words/1", - "#/readResults/0/lines/23/words/2", - "#/readResults/0/lines/24/words/0", - "#/readResults/0/lines/24/words/1", - "#/readResults/0/lines/24/words/2", - "#/readResults/0/lines/25/words/0", - "#/readResults/0/lines/25/words/1", - "#/readResults/0/lines/25/words/2", - "#/readResults/0/lines/25/words/3", - "#/readResults/0/lines/25/words/4", - "#/readResults/0/lines/25/words/5" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "$1,200", - "rowIndex": 2, - "columnIndex": 2, - "boundingBox": [ - 5.8319, - 5.9677, - 6.2833, - 5.9677, - 6.2833, - 6.1167, - 5.8319, - 6.1167 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/22/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Bronze Sponsor", - "rowIndex": 3, - "columnIndex": 0, - "boundingBox": [ - 1.0931, - 6.8407, - 2.1361, - 6.8407, - 2.1361, - 6.9647, - 1.0931, - 6.9647 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/26/words/0", - "#/readResults/0/lines/26/words/1" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Full booth Logo on poster 50% discount on program guide advertisements", - "rowIndex": 3, - "columnIndex": 1, - "boundingBox": [ - 3.2069, - 6.842, - 5.3417, - 6.842, - 5.3417, - 7.5865, - 3.2069, - 7.5865 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/27/words/0", - "#/readResults/0/lines/27/words/1", - "#/readResults/0/lines/29/words/0", - "#/readResults/0/lines/29/words/1", - "#/readResults/0/lines/29/words/2", - "#/readResults/0/lines/30/words/0", - "#/readResults/0/lines/30/words/1", - "#/readResults/0/lines/30/words/2", - "#/readResults/0/lines/30/words/3", - "#/readResults/0/lines/30/words/4", - "#/readResults/0/lines/31/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "$1,000", - "rowIndex": 3, - "columnIndex": 2, - "boundingBox": [ - 5.8319, - 6.8226, - 6.2833, - 6.8226, - 6.2833, - 6.9719, - 5.8319, - 6.9719 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/28/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Full Booth", - "rowIndex": 4, - "columnIndex": 0, - "boundingBox": [ - 1.0931, - 7.6819, - 1.7542, - 7.6819, - 1.7542, - 7.7979, - 1.0931, - 7.7979 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/32/words/0", - "#/readResults/0/lines/32/words/1" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Full booth 50% discount on program guide advertisements", - "rowIndex": 4, - "columnIndex": 1, - "boundingBox": [ - 3.2069, - 7.6903, - 5.3417, - 7.6903, - 5.3417, - 8.2212, - 3.2069, - 8.2212 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/33/words/0", - "#/readResults/0/lines/33/words/1", - "#/readResults/0/lines/35/words/0", - "#/readResults/0/lines/35/words/1", - "#/readResults/0/lines/35/words/2", - "#/readResults/0/lines/35/words/3", - "#/readResults/0/lines/35/words/4", - "#/readResults/0/lines/36/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "$600", - "rowIndex": 4, - "columnIndex": 2, - "boundingBox": [ - 5.8319, - 7.6712, - 6.1583, - 7.6712, - 6.1583, - 7.8167, - 5.8319, - 7.8167 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/34/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Half Booth", - "rowIndex": 5, - "columnIndex": 0, - "boundingBox": [ - 1.0931, - 8.3167, - 1.7861, - 8.3167, - 1.7861, - 8.433, - 1.0931, - 8.433 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/37/words/0", - "#/readResults/0/lines/37/words/1" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Full booth 25% discount on program guide advertisements", - "rowIndex": 5, - "columnIndex": 1, - "boundingBox": [ - 3.2069, - 8.3253, - 5.3417, - 8.3253, - 5.3417, - 8.8563, - 3.2069, - 8.8563 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/38/words/0", - "#/readResults/0/lines/38/words/1", - "#/readResults/0/lines/40/words/0", - "#/readResults/0/lines/40/words/1", - "#/readResults/0/lines/40/words/2", - "#/readResults/0/lines/40/words/3", - "#/readResults/0/lines/40/words/4", - "#/readResults/0/lines/41/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "$350", - "rowIndex": 5, - "columnIndex": 2, - "boundingBox": [ - 5.8319, - 8.3062, - 6.1583, - 8.3062, - 6.1583, - 8.4514, - 5.8319, - 8.4514 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/39/words/0" - ], - "isHeader": false, - "isFooter": false - } - ] - } - ], + "tables": [], "clusterId": 0 }, { @@ -4808,35 +4398,35 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2344a02d-154a-494b-97b7-6d389cdccd8d", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/577a5a06-7f1b-4cf7-916a-b79161669818", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cfc98be57563b24c96a2dc6418c5fc35-7a21d88ef3712347-00", + "traceparent": "00-0b7648c69427d641ac939ad5a85fdb03-8ab6ab5431620f46-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "32fcc934d33ed09161ad617d51fca554", + "x-ms-client-request-id": "c60e1d050ba976ed26d85fd31cbd32ff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "874a4022-3ba2-42e8-95cc-dedd8d507e4f", + "apim-request-id": "cd1f7b6e-fe3d-4137-a58f-ebb74c0b0608", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:32:11 GMT", + "Date": "Fri, 30 Oct 2020 12:56:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": [] } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_MULTIPAGE_BLOB_CONTAINER_SAS_URL": "https://azuresdktrainingdata.blob.core.windows.net/multipage-vendor-forms?sp=rl\u0026st=2020-06-25T04:55:22Z\u0026se=2021-06-26T04:55:00Z\u0026sv=2019-10-10\u0026sr=c\u0026sig=Z25JFTIsP3tbxDjHP2CK05HxIS9uz1E%2FDaRfjeEUyaU%3D", "RandomSeed": "589125165" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageForm(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageForm(True)Async.json index 0e7cd0b7b407c..ca32af1c87533 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageForm(True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageForm(True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-63c698ce3520ea44bd3f276423a618f5-9f664e04ad60f341-00", + "traceparent": "00-f297ea6ef6ada043959cf657ca55e6de-e4cd046812fb4947-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bfea17b284de08fd72eb68cc646200ad", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "925a3582-2d72-4bf2-9b2f-cbb64cb25b6a", + "apim-request-id": "90138584-a486-4b1f-82d5-515b71cbdc01", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:37:05 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "Date": "Fri, 30 Oct 2020 13:02:01 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "234" + "x-envoy-upstream-service-time": "73" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ef318fc5ada391d744d87ebf0aa09516", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0e948976-ebde-4dfe-b6a9-a8ad354ba614", + "apim-request-id": "35f154e4-1c31-4b60-82a1-48022c40dfd0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:05 GMT", + "Date": "Fri, 30 Oct 2020 13:02:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3379c705f276f2489be5d39edf2737d5", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3853a88a-817d-46a8-b7b0-b767394982ec", + "apim-request-id": "f4d400cb-07a2-4e17-ad82-ef5f62f6af5a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:06 GMT", + "Date": "Fri, 30 Oct 2020 13:02:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "311a0d20258c040e40597a05063dfed2", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7436bebb-3b56-4615-b455-db79f402775e", + "apim-request-id": "43ec1447-1481-44fd-b55c-56d335be5abc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:07 GMT", + "Date": "Fri, 30 Oct 2020 13:02:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9dc75156cde9d236463e54bed938b21d", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3775ff3e-cd95-495b-9764-45bfbcf2eeb7", + "apim-request-id": "04a2ec67-1b5e-4f05-b7b7-d205b67a2225", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:08 GMT", + "Date": "Fri, 30 Oct 2020 13:02:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fd9fa9a16385df89b875f21d7743ec5d", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "862c350a-4342-4de7-80c9-149bd316efea", + "apim-request-id": "49d70d8d-5e74-4053-8621-30807703020c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:09 GMT", + "Date": "Fri, 30 Oct 2020 13:02:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8e4801e79a5f53ecd648eb4ed1502a07", "x-ms-return-client-request-id": "true" @@ -213,9 +213,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ebbcb363-b60b-4018-8ee5-958168cca384", + "apim-request-id": "2db6cb94-db6b-411f-b110-992ae6a81ac9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:11 GMT", + "Date": "Fri, 30 Oct 2020 13:02:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -223,22 +223,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5d645da7019df24dc7e7e473da195a03", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a22d8346-cda9-40bb-bddf-c5765b31e658", + "apim-request-id": "dbbb07d3-eb0e-4ec1-a917-65b515945bdd", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:12 GMT", + "Date": "Fri, 30 Oct 2020 13:02:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d8d6f65124ef06bebc4c263d783b0e67", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3b8bc4c-50a8-4e4c-a279-f4333a9c8644", + "apim-request-id": "75180e25-ad8f-4372-b7fe-8f545691490e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:13 GMT", + "Date": "Fri, 30 Oct 2020 13:02:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1a75ea4a8fdee6c0b456c677b57878bd", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "148a329d-5869-44b5-9f95-adf24c02a0d9", + "apim-request-id": "835337f8-78df-4718-8af9-1920e8fade74", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:14 GMT", + "Date": "Fri, 30 Oct 2020 13:02:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dafce7ed517983189e5da051da0f798b", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c30f983d-39ea-4cfb-906c-86fd41e9f4bd", + "apim-request-id": "100c75bb-7199-49dc-a1e8-b89d2c182fb0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:15 GMT", + "Date": "Fri, 30 Oct 2020 13:02:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ef287dd940a3c22436f024995d465144", "x-ms-return-client-request-id": "true" @@ -378,32 +378,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9045d4f3-1427-4257-bd55-67b2bb3b1b61", + "apim-request-id": "280e5ec9-0fa7-4d39-acb0-d9085923bb88", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:16 GMT", + "Date": "Fri, 30 Oct 2020 13:02:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "904f68d3333ff9edd2f27b80ef6e0ba4", "x-ms-return-client-request-id": "true" @@ -411,32 +411,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cec6cb0f-dec5-405f-81b3-90de6123c827", + "apim-request-id": "cee30f70-75d1-46e7-ac8b-9dc887636263", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:17 GMT", + "Date": "Fri, 30 Oct 2020 13:02:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "389e3bdc884fac19c339a4892c7e2558", "x-ms-return-client-request-id": "true" @@ -444,32 +444,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "76cefa1d-4602-4ea8-9915-a1409bbde0b4", + "apim-request-id": "47c5aff2-6ca7-418e-820a-ea38b1b05e6e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:18 GMT", + "Date": "Fri, 30 Oct 2020 13:02:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "717e5b0ce8c0a54b8f2f1db1c4a3d2c7", "x-ms-return-client-request-id": "true" @@ -477,32 +477,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ccec770b-688c-4c9b-9f71-b2868995ad23", + "apim-request-id": "5411ffb7-7b90-439f-a6e9-bbc26bb2a348", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:19 GMT", + "Date": "Fri, 30 Oct 2020 13:02:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "22bd80e519a84af54fa2cd058e64cc53", "x-ms-return-client-request-id": "true" @@ -510,32 +510,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b501981-5634-4bd1-b777-ca7479a34737", + "apim-request-id": "94551857-5f6b-49d3-8517-e669a26d621e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:20 GMT", + "Date": "Fri, 30 Oct 2020 13:02:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "947423cc99f0f3e4eff9a81f6b68e81f", "x-ms-return-client-request-id": "true" @@ -543,32 +543,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aba52e59-b2c2-42f9-bcf6-0b5f71e476a1", + "apim-request-id": "0dd7af95-f2bc-4a5a-9b42-f53f05cbfe21", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:21 GMT", + "Date": "Fri, 30 Oct 2020 13:02:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:01Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aca3dd6703c1f3af6633221d1b46162b", "x-ms-return-client-request-id": "true" @@ -576,164 +576,46 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bd62994a-fb9b-4e6b-9af9-1bc3b7bc8f6d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:22 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", - "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a1e4c9633e2f4cd79cc932af70d5dee6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d3310873-3594-4e3d-ba02-e0b937a50525", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "247" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", - "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b19eaeba20c1c99273812dbc76c6d8a9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "034a84cd-f48e-4719-a224-2a892e587772", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:24 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", - "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a2bc7de2468428ef05560ff8d0008391", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dbdb4e96-de49-4d26-9d44-a8f472b8649a", + "apim-request-id": "fdcb7a8c-d4ed-4a65-8d4c-ac2a0c97a975", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:25 GMT", + "Date": "Fri, 30 Oct 2020 13:02:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", - "status": "creating", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:05Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "6d623b5464a74269371a2dae101ad5d5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "10d5a910-b1dd-4f62-9025-b4e28a208620", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:26 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "modelId": "4d1991a7-efa9-4205-867f-39a92607b15c", "status": "ready", - "createdDateTime": "2020-09-09T22:37:05Z", - "lastUpdatedDateTime": "2020-09-09T22:37:27Z" + "createdDateTime": "2020-10-30T13:02:01Z", + "lastUpdatedDateTime": "2020-10-30T13:02:25Z" }, "keys": { "clusters": { "0": [ + "25% discount on program guide", + "50% discount on program guide", + "Bronze Sponsor", "Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in", + "Full Booth", + "Full booth", + "Full page ad in program guide", + "Gold Sponsor", + "Half Booth", + "Half page ad in program guide", "Included", + "Logo on poster", "Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person", "Package", + "Post-keynote thank you", + "Pre-keynote thank you", "Price", "Rates:", + "Silver Sponsor", "Vendor #:", "Vendor Registration", + "advertisements", "below, and attach a check made out to:", "waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form" ], @@ -785,463 +667,340 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "711607", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-48bd54b627198f45b139b6dabb4cded4-05c3b02e64bf4f47-00", + "traceparent": "00-1bafcf3687386b41bf62e1b9a61a98c0-3029e52cf6a2ec40-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f2cc89f03c187362be75ab6a1099f873", + "x-ms-client-request-id": "a1e4c9633e2f4cd79cc932af70d5dee6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e82b5953-6b05-41cb-a295-c493deee14b4", + "apim-request-id": "35f55d93-2d5c-4875-95f7-f6c967acf43f", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:37:28 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeresults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", + "Date": "Fri, 30 Oct 2020 13:02:25 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c/analyzeresults/78a5100f-e5ef-4659-aac4-6d928f6c51f2", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "185" + "x-envoy-upstream-service-time": "195" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c/analyzeResults/78a5100f-e5ef-4659-aac4-6d928f6c51f2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3a679cfe6b647e0113796b69194118eb", + "x-ms-client-request-id": "b19eaeba20c1c99273812dbc76c6d8a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5390eaa0-7b3e-4ba5-87b5-513362caa53c", + "apim-request-id": "a40da475-1296-42df-8c83-48b43543c6f5", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:28 GMT", + "Date": "Fri, 30 Oct 2020 13:02:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:28Z" + "createdDateTime": "2020-10-30T13:02:26Z", + "lastUpdatedDateTime": "2020-10-30T13:02:26Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c/analyzeResults/78a5100f-e5ef-4659-aac4-6d928f6c51f2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "46073a8190341878d9eeae32b8ff329d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "129427a2-2141-4a79-a382-857cc2dd78ba", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:28Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "73b0ba219ab28571884ddf9ed1f85a7c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "05b50986-b1e9-43f5-b44f-40a165dba792", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:30 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:29Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d6e9c05db1916d3f244f6175bccec513", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5bc92b21-fde8-4f07-b140-aad9e5a800c4", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:31 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:29Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5f47cd47a491e638c882bee6b1da47e1", + "x-ms-client-request-id": "a2bc7de2468428ef05560ff8d0008391", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e37cb25f-dab0-47d0-8f12-0759ae39b893", + "apim-request-id": "0041ff05-6a95-43aa-97d3-5cba1d228df1", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:32 GMT", + "Date": "Fri, 30 Oct 2020 13:02:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:29Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f8d531945c16700b7b424f6339fcc8b9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f2c5c242-b234-42d8-959c-8c6ef63238ed", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:33 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:29Z", + "createdDateTime": "2020-10-30T13:02:26Z", + "lastUpdatedDateTime": "2020-10-30T13:02:26Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c/analyzeResults/78a5100f-e5ef-4659-aac4-6d928f6c51f2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0357cb88fab0b8eb87030d0ff358bc4a", + "x-ms-client-request-id": "6d623b5464a74269371a2dae101ad5d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6c5c969-e174-4a19-b825-5189248bc171", + "apim-request-id": "caa7028f-6f42-4b9f-bfcd-a4015f570e5e", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:34 GMT", + "Date": "Fri, 30 Oct 2020 13:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:29Z", + "createdDateTime": "2020-10-30T13:02:26Z", + "lastUpdatedDateTime": "2020-10-30T13:02:26Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c/analyzeResults/78a5100f-e5ef-4659-aac4-6d928f6c51f2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8ae07f07ccf9eafdc1d7e44e54d5accc", + "x-ms-client-request-id": "f2cc89f03c187362be75ab6a1099f873", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8b3e8fc-1e48-48b8-83f0-4161c90c2572", + "apim-request-id": "ee7f3065-1a46-4f39-a170-6e8ad7f1f103", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:35 GMT", + "Date": "Fri, 30 Oct 2020 13:02:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:29Z", + "createdDateTime": "2020-10-30T13:02:26Z", + "lastUpdatedDateTime": "2020-10-30T13:02:26Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c/analyzeResults/78a5100f-e5ef-4659-aac4-6d928f6c51f2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e55e04b943829930451c71134efb7c22", + "x-ms-client-request-id": "3a679cfe6b647e0113796b69194118eb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb927695-6377-4f6b-930a-aa3d73b3de26", + "apim-request-id": "bcd30dc3-8caa-4e35-9a62-ab2db60c6432", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:36 GMT", + "Date": "Fri, 30 Oct 2020 13:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:29Z", + "createdDateTime": "2020-10-30T13:02:26Z", + "lastUpdatedDateTime": "2020-10-30T13:02:26Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c/analyzeResults/78a5100f-e5ef-4659-aac4-6d928f6c51f2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b95b05853e1bbbbfcd6c42d8169d63b1", + "x-ms-client-request-id": "46073a8190341878d9eeae32b8ff329d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c0b9f5d-5bbd-4615-b109-d988cbd0e81a", + "apim-request-id": "14077e74-2ff7-4ae0-806f-a28963c6f9aa", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:37 GMT", + "Date": "Fri, 30 Oct 2020 13:02:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:29Z", + "createdDateTime": "2020-10-30T13:02:26Z", + "lastUpdatedDateTime": "2020-10-30T13:02:26Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c/analyzeResults/78a5100f-e5ef-4659-aac4-6d928f6c51f2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ee564156d7fac4c74f4744dd5bea9cc5", + "x-ms-client-request-id": "73b0ba219ab28571884ddf9ed1f85a7c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fefaa3fa-af92-4def-ad7f-346300a3035f", + "apim-request-id": "b1501c82-3593-4cde-9caa-4a95fb534c42", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:38 GMT", + "Date": "Fri, 30 Oct 2020 13:02:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:29Z", + "createdDateTime": "2020-10-30T13:02:26Z", + "lastUpdatedDateTime": "2020-10-30T13:02:26Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c/analyzeResults/78a5100f-e5ef-4659-aac4-6d928f6c51f2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4fc8c15bf27a7ab045a21716015782a8", + "x-ms-client-request-id": "d6e9c05db1916d3f244f6175bccec513", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0be77ade-c5f3-4004-8412-bdda9bc498e7", + "apim-request-id": "80570474-ce2e-48b9-b883-304751c1fcf0", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:39 GMT", + "Date": "Fri, 30 Oct 2020 13:02:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:29Z", + "createdDateTime": "2020-10-30T13:02:26Z", + "lastUpdatedDateTime": "2020-10-30T13:02:26Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c/analyzeResults/78a5100f-e5ef-4659-aac4-6d928f6c51f2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0dbcbfb88da4ae283e966ad3f9e25fe3", + "x-ms-client-request-id": "5f47cd47a491e638c882bee6b1da47e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43cc3079-e5cd-497f-8b15-33be195e8c2b", + "apim-request-id": "2957a7bb-730f-41bd-af1f-ca12a09b3644", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:40 GMT", + "Date": "Fri, 30 Oct 2020 13:02:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:29Z", + "createdDateTime": "2020-10-30T13:02:26Z", + "lastUpdatedDateTime": "2020-10-30T13:02:26Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6/analyzeResults/707e0d99-f65b-4c0b-8fe3-cae1441d9929", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c/analyzeResults/78a5100f-e5ef-4659-aac4-6d928f6c51f2", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "547d7cd014d4643790dca957bfb0c3f7", + "x-ms-client-request-id": "f8d531945c16700b7b424f6339fcc8b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7df491b5-619f-4c86-949f-e825aaa7a47f", - "Content-Length": "29754", + "apim-request-id": "5decc061-8043-4470-84d6-3c29baedcfe5", + "Content-Length": "24800", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:41 GMT", + "Date": "Fri, 30 Oct 2020 13:02:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:37:28Z", - "lastUpdatedDateTime": "2020-09-09T22:37:41Z", + "createdDateTime": "2020-10-30T13:02:26Z", + "lastUpdatedDateTime": "2020-10-30T13:02:37Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -4166,6 +3925,186 @@ }, "confidence": 1.0 }, + { + "key": { + "text": "Full Booth", + "boundingBox": [ + 3.2139, + 4.917, + 3.8722, + 4.917, + 3.8722, + 5.033, + 3.2139, + 5.033 + ], + "elements": [ + "#/readResults/0/lines/15/words/0", + "#/readResults/0/lines/15/words/1" + ] + }, + "value": { + "text": "$1,500", + "boundingBox": [ + 5.8319, + 4.8976, + 6.2833, + 4.8976, + 6.2833, + 5.0469, + 5.8319, + 5.0469 + ], + "elements": [ + "#/readResults/0/lines/16/words/0" + ] + }, + "confidence": 0.36 + }, + { + "key": { + "text": "Full Booth", + "boundingBox": [ + 3.2139, + 5.9868, + 3.8722, + 5.9868, + 3.8722, + 6.1031, + 3.2139, + 6.1031 + ], + "elements": [ + "#/readResults/0/lines/21/words/0", + "#/readResults/0/lines/21/words/1" + ] + }, + "value": { + "text": "$1,200", + "boundingBox": [ + 5.8319, + 5.9677, + 6.2833, + 5.9677, + 6.2833, + 6.1167, + 5.8319, + 6.1167 + ], + "elements": [ + "#/readResults/0/lines/22/words/0" + ] + }, + "confidence": 0.36 + }, + { + "key": { + "text": "Full Booth", + "boundingBox": [ + 3.2139, + 6.842, + 3.8722, + 6.842, + 3.8722, + 6.958, + 3.2139, + 6.958 + ], + "elements": [ + "#/readResults/0/lines/27/words/0", + "#/readResults/0/lines/27/words/1" + ] + }, + "value": { + "text": "$1,000", + "boundingBox": [ + 5.8319, + 6.8226, + 6.2833, + 6.8226, + 6.2833, + 6.9719, + 5.8319, + 6.9719 + ], + "elements": [ + "#/readResults/0/lines/28/words/0" + ] + }, + "confidence": 0.36 + }, + { + "key": { + "text": "Full Booth", + "boundingBox": [ + 3.2139, + 7.6903, + 3.8722, + 7.6903, + 3.8722, + 7.8063, + 3.2139, + 7.8063 + ], + "elements": [ + "#/readResults/0/lines/33/words/0", + "#/readResults/0/lines/33/words/1" + ] + }, + "value": { + "text": "$600", + "boundingBox": [ + 5.8319, + 7.6712, + 6.1583, + 7.6712, + 6.1583, + 7.8167, + 5.8319, + 7.8167 + ], + "elements": [ + "#/readResults/0/lines/34/words/0" + ] + }, + "confidence": 0.36 + }, + { + "key": { + "text": "Full Booth", + "boundingBox": [ + 3.2139, + 8.3253, + 3.8722, + 8.3253, + 3.8722, + 8.4413, + 3.2139, + 8.4413 + ], + "elements": [ + "#/readResults/0/lines/38/words/0", + "#/readResults/0/lines/38/words/1" + ] + }, + "value": { + "text": "$350", + "boundingBox": [ + 5.8319, + 8.3062, + 6.1583, + 8.3062, + 6.1583, + 8.4514, + 5.8319, + 8.4514 + ], + "elements": [ + "#/readResults/0/lines/39/words/0" + ] + }, + "confidence": 0.36 + }, { "key": { "text": "__Address__1", @@ -4198,483 +4137,7 @@ "confidence": 1.0 } ], - "tables": [ - { - "rows": 6, - "columns": 3, - "cells": [ - { - "text": "Package", - "rowIndex": 0, - "columnIndex": 0, - "boundingBox": [ - 1.0931, - 4.6986, - 1.6236, - 4.6986, - 1.6236, - 4.8427, - 1.0931, - 4.8427 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/11/words/0" - ], - "isHeader": true, - "isFooter": false - }, - { - "text": "Included", - "rowIndex": 0, - "columnIndex": 1, - "boundingBox": [ - 2.7125, - 4.6986, - 3.2708, - 4.6986, - 3.2708, - 4.8146, - 2.7125, - 4.8146 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/12/words/0" - ], - "isHeader": true, - "isFooter": false - }, - { - "text": "Price", - "rowIndex": 0, - "columnIndex": 2, - "boundingBox": [ - 5.8375, - 4.7038, - 6.1514, - 4.7038, - 6.1514, - 4.8146, - 5.8375, - 4.8146 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/13/words/0" - ], - "isHeader": true, - "isFooter": false - }, - { - "text": "Gold Sponsor", - "rowIndex": 1, - "columnIndex": 0, - "boundingBox": [ - 1.0861, - 4.9125, - 1.9833, - 4.9125, - 1.9833, - 5.042, - 1.0861, - 5.042 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/14/words/0", - "#/readResults/0/lines/14/words/1" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Full booth Pre-keynote thank you Logo on poster Full page ad in program guide", - "rowIndex": 1, - "columnIndex": 1, - "boundingBox": [ - 3.2139, - 4.917, - 5.2014, - 4.917, - 5.2014, - 5.6885, - 3.2139, - 5.6885 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/15/words/0", - "#/readResults/0/lines/15/words/1", - "#/readResults/0/lines/17/words/0", - "#/readResults/0/lines/17/words/1", - "#/readResults/0/lines/17/words/2", - "#/readResults/0/lines/18/words/0", - "#/readResults/0/lines/18/words/1", - "#/readResults/0/lines/18/words/2", - "#/readResults/0/lines/19/words/0", - "#/readResults/0/lines/19/words/1", - "#/readResults/0/lines/19/words/2", - "#/readResults/0/lines/19/words/3", - "#/readResults/0/lines/19/words/4", - "#/readResults/0/lines/19/words/5" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "$1,500", - "rowIndex": 1, - "columnIndex": 2, - "boundingBox": [ - 5.8319, - 4.8976, - 6.2833, - 4.8976, - 6.2833, - 5.0469, - 5.8319, - 5.0469 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/16/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Silver Sponsor", - "rowIndex": 2, - "columnIndex": 0, - "boundingBox": [ - 1.0833, - 5.982, - 2.0333, - 5.982, - 2.0333, - 6.1098, - 1.0833, - 6.1098 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/20/words/0", - "#/readResults/0/lines/20/words/1" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Full booth Post-keynote thank you Logo on poster Half page ad in program guide", - "rowIndex": 2, - "columnIndex": 1, - "boundingBox": [ - 3.2139, - 5.9868, - 5.2306, - 5.9868, - 5.2306, - 6.7569, - 3.2139, - 6.7569 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/21/words/0", - "#/readResults/0/lines/21/words/1", - "#/readResults/0/lines/23/words/0", - "#/readResults/0/lines/23/words/1", - "#/readResults/0/lines/23/words/2", - "#/readResults/0/lines/24/words/0", - "#/readResults/0/lines/24/words/1", - "#/readResults/0/lines/24/words/2", - "#/readResults/0/lines/25/words/0", - "#/readResults/0/lines/25/words/1", - "#/readResults/0/lines/25/words/2", - "#/readResults/0/lines/25/words/3", - "#/readResults/0/lines/25/words/4", - "#/readResults/0/lines/25/words/5" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "$1,200", - "rowIndex": 2, - "columnIndex": 2, - "boundingBox": [ - 5.8319, - 5.9677, - 6.2833, - 5.9677, - 6.2833, - 6.1167, - 5.8319, - 6.1167 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/22/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Bronze Sponsor", - "rowIndex": 3, - "columnIndex": 0, - "boundingBox": [ - 1.0931, - 6.8407, - 2.1361, - 6.8407, - 2.1361, - 6.9647, - 1.0931, - 6.9647 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/26/words/0", - "#/readResults/0/lines/26/words/1" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Full booth Logo on poster 50% discount on program guide advertisements", - "rowIndex": 3, - "columnIndex": 1, - "boundingBox": [ - 3.2069, - 6.842, - 5.3417, - 6.842, - 5.3417, - 7.5865, - 3.2069, - 7.5865 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/27/words/0", - "#/readResults/0/lines/27/words/1", - "#/readResults/0/lines/29/words/0", - "#/readResults/0/lines/29/words/1", - "#/readResults/0/lines/29/words/2", - "#/readResults/0/lines/30/words/0", - "#/readResults/0/lines/30/words/1", - "#/readResults/0/lines/30/words/2", - "#/readResults/0/lines/30/words/3", - "#/readResults/0/lines/30/words/4", - "#/readResults/0/lines/31/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "$1,000", - "rowIndex": 3, - "columnIndex": 2, - "boundingBox": [ - 5.8319, - 6.8226, - 6.2833, - 6.8226, - 6.2833, - 6.9719, - 5.8319, - 6.9719 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/28/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Full Booth", - "rowIndex": 4, - "columnIndex": 0, - "boundingBox": [ - 1.0931, - 7.6819, - 1.7542, - 7.6819, - 1.7542, - 7.7979, - 1.0931, - 7.7979 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/32/words/0", - "#/readResults/0/lines/32/words/1" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Full booth 50% discount on program guide advertisements", - "rowIndex": 4, - "columnIndex": 1, - "boundingBox": [ - 3.2069, - 7.6903, - 5.3417, - 7.6903, - 5.3417, - 8.2212, - 3.2069, - 8.2212 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/33/words/0", - "#/readResults/0/lines/33/words/1", - "#/readResults/0/lines/35/words/0", - "#/readResults/0/lines/35/words/1", - "#/readResults/0/lines/35/words/2", - "#/readResults/0/lines/35/words/3", - "#/readResults/0/lines/35/words/4", - "#/readResults/0/lines/36/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "$600", - "rowIndex": 4, - "columnIndex": 2, - "boundingBox": [ - 5.8319, - 7.6712, - 6.1583, - 7.6712, - 6.1583, - 7.8167, - 5.8319, - 7.8167 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/34/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Half Booth", - "rowIndex": 5, - "columnIndex": 0, - "boundingBox": [ - 1.0931, - 8.3167, - 1.7861, - 8.3167, - 1.7861, - 8.433, - 1.0931, - 8.433 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/37/words/0", - "#/readResults/0/lines/37/words/1" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "Full booth 25% discount on program guide advertisements", - "rowIndex": 5, - "columnIndex": 1, - "boundingBox": [ - 3.2069, - 8.3253, - 5.3417, - 8.3253, - 5.3417, - 8.8563, - 3.2069, - 8.8563 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/38/words/0", - "#/readResults/0/lines/38/words/1", - "#/readResults/0/lines/40/words/0", - "#/readResults/0/lines/40/words/1", - "#/readResults/0/lines/40/words/2", - "#/readResults/0/lines/40/words/3", - "#/readResults/0/lines/40/words/4", - "#/readResults/0/lines/41/words/0" - ], - "isHeader": false, - "isFooter": false - }, - { - "text": "$350", - "rowIndex": 5, - "columnIndex": 2, - "boundingBox": [ - 5.8319, - 8.3062, - 6.1583, - 8.3062, - 6.1583, - 8.4514, - 5.8319, - 8.4514 - ], - "confidence": 1.0, - "rowSpan": 1, - "columnSpan": 1, - "elements": [ - "#/readResults/0/lines/39/words/0" - ], - "isHeader": false, - "isFooter": false - } - ] - } - ], + "tables": [], "clusterId": 0 }, { @@ -4871,35 +4334,35 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/96fde7c8-9ce2-4be1-9295-a5067f04a3e6", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4d1991a7-efa9-4205-867f-39a92607b15c", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-30ef5ededffcc449b89325d1cc5479aa-436dbe71741c8547-00", + "traceparent": "00-e3944458a6833343b1c28c1c796e0b32-04b452fbc95d7445-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9c259cc48f2dcd20991a10e387dd8162", + "x-ms-client-request-id": "0357cb88fab0b8eb87030d0ff358bc4a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "ae080114-65b1-41de-aabc-baecd76b2526", + "apim-request-id": "0d92f436-aa88-4e9a-af98-3919cfd2657e", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:37:41 GMT", + "Date": "Fri, 30 Oct 2020 13:02:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": [] } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_MULTIPAGE_BLOB_CONTAINER_SAS_URL": "https://azuresdktrainingdata.blob.core.windows.net/multipage-vendor-forms?sp=rl\u0026st=2020-06-25T04:55:22Z\u0026se=2021-06-26T04:55:00Z\u0026sv=2019-10-10\u0026sr=c\u0026sig=Z25JFTIsP3tbxDjHP2CK05HxIS9uz1E%2FDaRfjeEUyaU%3D", "RandomSeed": "2033833437" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageFormWithBlankPage(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageFormWithBlankPage(True).json index 6d1b33c4e8b87..649761a733813 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageFormWithBlankPage(True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageFormWithBlankPage(True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1547949385b56e48b3bb6d8287d39062-132a1722b983a743-00", + "traceparent": "00-6695a5f5d9b5054c9d9b124ab952dadc-f179bfed9091d149-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "786bf463f3662d7c5354c8a7eda3535d", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "7432af07-f085-4979-955d-641c4bbfef30", + "apim-request-id": "ae09f97c-5c08-4144-b24f-671afe54a80e", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:32:12 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84", + "Date": "Fri, 30 Oct 2020 12:56:16 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "225" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6492729162b49d614f6ab39af10ed923", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ffa199ca-489b-4f41-b11b-7bbf905d6dc2", + "apim-request-id": "dd1fb141-491b-42d6-bda3-a5b2413b8c12", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:12 GMT", + "Date": "Fri, 30 Oct 2020 12:56:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", + "modelId": "cba70025-de26-4572-a15f-7855b796a6f3", "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" + "createdDateTime": "2020-10-30T12:56:16Z", + "lastUpdatedDateTime": "2020-10-30T12:56:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5c4af82938d8bdd662befb1968529018", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3944910b-7491-4b28-9f05-83a36c5d10a0", + "apim-request-id": "8a38154b-a8d7-4922-ad1a-572a647ec8c3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:13 GMT", + "Date": "Fri, 30 Oct 2020 12:56:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", + "modelId": "cba70025-de26-4572-a15f-7855b796a6f3", "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" + "createdDateTime": "2020-10-30T12:56:16Z", + "lastUpdatedDateTime": "2020-10-30T12:56:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "db4f566c4e5600cb93cd29fc3fe23c45", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "678a449f-fd6e-427c-a049-86871b3a94ac", + "apim-request-id": "b55c6c61-3b2a-4094-9d0a-ac9a751cfb1b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:14 GMT", + "Date": "Fri, 30 Oct 2020 12:56:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", + "modelId": "cba70025-de26-4572-a15f-7855b796a6f3", "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" + "createdDateTime": "2020-10-30T12:56:16Z", + "lastUpdatedDateTime": "2020-10-30T12:56:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f57da57bf75958859cd502f5674734fc", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "10b4068b-8e21-4535-933b-42d0ac9fd1d4", + "apim-request-id": "28e2cab1-e021-48a9-82b6-0dfd8c3ea44e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:15 GMT", + "Date": "Fri, 30 Oct 2020 12:56:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", + "modelId": "cba70025-de26-4572-a15f-7855b796a6f3", "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" + "createdDateTime": "2020-10-30T12:56:16Z", + "lastUpdatedDateTime": "2020-10-30T12:56:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9a2e9bd9febedbcc2c49c80b0fd97d80", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "821c94dc-f633-4a49-8773-cd586da09c5e", + "apim-request-id": "ecfea410-1ae4-4dd4-b7eb-53c6656b068e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:16 GMT", + "Date": "Fri, 30 Oct 2020 12:56:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", + "modelId": "cba70025-de26-4572-a15f-7855b796a6f3", "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" + "createdDateTime": "2020-10-30T12:56:16Z", + "lastUpdatedDateTime": "2020-10-30T12:56:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c39eb6829bd474bfd1f63f804bd5994b", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b65036ba-aad0-4278-aea3-675104cbb412", + "apim-request-id": "90e2570b-4009-477e-9aee-4d1f13b4ff1a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:17 GMT", + "Date": "Fri, 30 Oct 2020 12:56:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "163" }, "ResponseBody": { "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", + "modelId": "cba70025-de26-4572-a15f-7855b796a6f3", "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" + "createdDateTime": "2020-10-30T12:56:16Z", + "lastUpdatedDateTime": "2020-10-30T12:56:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a3232c98a1b37c86d8a2c80f2e7a49c2", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "536f20e6-3b0a-4aea-85d0-5b5feb46dd33", + "apim-request-id": "50352728-bbaa-443c-b4d9-cd6831c7cc43", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:18 GMT", + "Date": "Fri, 30 Oct 2020 12:56:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", + "modelId": "cba70025-de26-4572-a15f-7855b796a6f3", "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" + "createdDateTime": "2020-10-30T12:56:16Z", + "lastUpdatedDateTime": "2020-10-30T12:56:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b173815771a93d28dcbac9c8be4b8f57", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8db708d-8b1c-435c-a537-8d9b7c1285fd", + "apim-request-id": "6a02832b-9b6f-43b5-8c23-b5adb443a421", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:19 GMT", + "Date": "Fri, 30 Oct 2020 12:56:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", + "modelId": "cba70025-de26-4572-a15f-7855b796a6f3", "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" + "createdDateTime": "2020-10-30T12:56:16Z", + "lastUpdatedDateTime": "2020-10-30T12:56:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e3727db0d9b6e0cc2f21ea32d3af4557", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a01fcd1f-e253-4a78-9fc6-092b17f0f33c", + "apim-request-id": "258d5f3d-8906-480e-8a6c-e10326b7268b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:20 GMT", + "Date": "Fri, 30 Oct 2020 12:56:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", + "modelId": "cba70025-de26-4572-a15f-7855b796a6f3", "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" + "createdDateTime": "2020-10-30T12:56:16Z", + "lastUpdatedDateTime": "2020-10-30T12:56:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c9287cade76127a104e5c7f9d8bdbd8d", "x-ms-return-client-request-id": "true" @@ -345,141 +345,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf8f2f16-6aca-4f7a-855d-ee48a470322a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", - "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b15e711265077d0cb593818886f56a2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ccdbb70e-49fe-45a0-a68d-a6332d93bee2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:22 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", - "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "421b7174c622c9f5dc4bdfd012d30771", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "db71f733-fcc5-4122-a2e8-b1f658f12332", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", - "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "61205d639451475070aa14ce6619a00e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "70977e8b-88d6-4769-9fd0-6370e86aa6d4", + "apim-request-id": "4f5a7002-14a9-4d1b-9b01-71ce994061dc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:24 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", - "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "66849a7a7ba24c6a7c94d5bb863b6be2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d5f247e7-06a0-4caa-8b9c-aa378ca23102", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:25 GMT", + "Date": "Fri, 30 Oct 2020 12:56:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -487,43 +355,10 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", - "status": "creating", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:12Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "29240f8b09d5e0da21d3d177b12663c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e326dc0b-dc60-434f-86b1-9fe84377a52d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:26 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "def6573e-ddbf-4d65-b963-892d034c0b84", + "modelId": "cba70025-de26-4572-a15f-7855b796a6f3", "status": "ready", - "createdDateTime": "2020-09-09T22:32:12Z", - "lastUpdatedDateTime": "2020-09-09T22:32:25Z" + "createdDateTime": "2020-10-30T12:56:16Z", + "lastUpdatedDateTime": "2020-10-30T12:56:27Z" }, "keys": { "clusters": { @@ -593,433 +428,340 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "108935", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2e30fd4c54093d43b91562f49d7f9752-de160fd7c679f346-00", + "traceparent": "00-0ead57434e09554eb4f76a208cb564c9-708064caf0fd3245-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7755d0aba04ee7cff2d3e5bcbf94c035", + "x-ms-client-request-id": "b15e711265077d0cb593818886f56a2c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "30d09684-d165-41f3-9d0f-f5d6a00db7d5", + "apim-request-id": "38c6e042-d9ec-43c9-bc68-db7cc568dcee", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:32:26 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeresults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", + "Date": "Fri, 30 Oct 2020 12:56:29 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/cba70025-de26-4572-a15f-7855b796a6f3/analyzeresults/bb836fb6-76bc-4ddf-8fa8-60e908ef1508", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "98" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeResults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3/analyzeResults/bb836fb6-76bc-4ddf-8fa8-60e908ef1508", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5642323f77f47139bfa445cea9f39a55", + "x-ms-client-request-id": "421b7174c622c9f5dc4bdfd012d30771", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3296808-79b3-4d6a-8fcf-dabd177691f7", + "apim-request-id": "4beaa00d-a34c-4a6e-878a-223c7a6d0c0c", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:26 GMT", + "Date": "Fri, 30 Oct 2020 12:56:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:32:27Z", - "lastUpdatedDateTime": "2020-09-09T22:32:27Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeResults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b5101231f3e5ea94403c3601231e218d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "89db3eb0-1cd7-46cb-9b74-aba160cb195d", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:27 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:32:27Z", - "lastUpdatedDateTime": "2020-09-09T22:32:27Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeResults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7f389c120ce333cd96e4b7a95b003eff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f4ec86b3-2908-4bfe-91a8-9faee7654f1c", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:32:27Z", - "lastUpdatedDateTime": "2020-09-09T22:32:27Z", - "analyzeResult": null + "createdDateTime": "2020-10-30T12:56:30Z", + "lastUpdatedDateTime": "2020-10-30T12:56:30Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeResults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3/analyzeResults/bb836fb6-76bc-4ddf-8fa8-60e908ef1508", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ac8a8f380b834c509e5716b840384ea1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2517f38f-61e4-4b14-ba0d-2c78c000fd4a", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:32:27Z", - "lastUpdatedDateTime": "2020-09-09T22:32:27Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeResults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "0dbcb8831bbb257144dc1f013bea8f3f", + "x-ms-client-request-id": "61205d639451475070aa14ce6619a00e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79ce4078-996e-44ac-ae83-0d910c6d568a", + "apim-request-id": "85cf923a-485d-4a2b-a465-6d6b1e1689fd", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:30 GMT", + "Date": "Fri, 30 Oct 2020 12:56:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:32:27Z", - "lastUpdatedDateTime": "2020-09-09T22:32:27Z", + "createdDateTime": "2020-10-30T12:56:30Z", + "lastUpdatedDateTime": "2020-10-30T12:56:31Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeResults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3/analyzeResults/bb836fb6-76bc-4ddf-8fa8-60e908ef1508", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "94c836fe749307094cece08bf615f25e", + "x-ms-client-request-id": "66849a7a7ba24c6a7c94d5bb863b6be2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65d8f073-4cd7-4064-b274-b453ddec254c", + "apim-request-id": "5b95866e-d8a5-442e-9e2d-9da747f358b5", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:31 GMT", + "Date": "Fri, 30 Oct 2020 12:56:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:32:27Z", - "lastUpdatedDateTime": "2020-09-09T22:32:27Z", + "createdDateTime": "2020-10-30T12:56:30Z", + "lastUpdatedDateTime": "2020-10-30T12:56:31Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeResults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3/analyzeResults/bb836fb6-76bc-4ddf-8fa8-60e908ef1508", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a326159531441d441d6568a6eb4e10b3", + "x-ms-client-request-id": "29240f8b09d5e0da21d3d177b12663c2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a07fe59e-fe17-4699-b151-784cc7c5622c", + "apim-request-id": "c2b9f396-ff24-4fad-abd8-13b308f7359f", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:32 GMT", + "Date": "Fri, 30 Oct 2020 12:56:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:32:27Z", - "lastUpdatedDateTime": "2020-09-09T22:32:27Z", + "createdDateTime": "2020-10-30T12:56:30Z", + "lastUpdatedDateTime": "2020-10-30T12:56:31Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeResults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3/analyzeResults/bb836fb6-76bc-4ddf-8fa8-60e908ef1508", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0ab9d6c8b9700e0eaeb4c0ce3be52f2e", + "x-ms-client-request-id": "7755d0aba04ee7cff2d3e5bcbf94c035", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac98ecf5-5918-4b53-be5e-f0278d38f9ca", + "apim-request-id": "2139ddb8-053d-43a6-8b20-4617884dc69e", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:33 GMT", + "Date": "Fri, 30 Oct 2020 12:56:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:32:27Z", - "lastUpdatedDateTime": "2020-09-09T22:32:27Z", + "createdDateTime": "2020-10-30T12:56:30Z", + "lastUpdatedDateTime": "2020-10-30T12:56:31Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeResults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3/analyzeResults/bb836fb6-76bc-4ddf-8fa8-60e908ef1508", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "256bc1eaecc4cdfbf2ab762d0c621bfd", + "x-ms-client-request-id": "5642323f77f47139bfa445cea9f39a55", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1f975c8-03e6-4e4c-9b6a-c8692cb7d4d6", + "apim-request-id": "ad696643-df0c-49aa-ae41-b499bec3b3a2", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:35 GMT", + "Date": "Fri, 30 Oct 2020 12:56:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:32:27Z", - "lastUpdatedDateTime": "2020-09-09T22:32:27Z", + "createdDateTime": "2020-10-30T12:56:30Z", + "lastUpdatedDateTime": "2020-10-30T12:56:31Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeResults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3/analyzeResults/bb836fb6-76bc-4ddf-8fa8-60e908ef1508", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1fc32cdbe85cdced0717f4907075e137", + "x-ms-client-request-id": "b5101231f3e5ea94403c3601231e218d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b2c15cb4-3d7f-4d9e-80f5-fde7ff772d89", + "apim-request-id": "90ed4369-7adb-4c99-bb74-61d65dd375ff", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:36 GMT", + "Date": "Fri, 30 Oct 2020 12:56:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:32:27Z", - "lastUpdatedDateTime": "2020-09-09T22:32:27Z", + "createdDateTime": "2020-10-30T12:56:30Z", + "lastUpdatedDateTime": "2020-10-30T12:56:31Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeResults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3/analyzeResults/bb836fb6-76bc-4ddf-8fa8-60e908ef1508", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2abc3936eae3dcefdaec17c543e1024c", + "x-ms-client-request-id": "7f389c120ce333cd96e4b7a95b003eff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f96e286d-100e-4657-8b21-44d77b8295ea", + "apim-request-id": "339a7ced-47b4-48e2-bf10-46ef245aec91", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:37 GMT", + "Date": "Fri, 30 Oct 2020 12:56:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "70" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:32:27Z", - "lastUpdatedDateTime": "2020-09-09T22:32:27Z", + "createdDateTime": "2020-10-30T12:56:30Z", + "lastUpdatedDateTime": "2020-10-30T12:56:31Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeResults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3/analyzeResults/bb836fb6-76bc-4ddf-8fa8-60e908ef1508", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0ef3c2980f2201d2d38f1eacf76b5c7c", + "x-ms-client-request-id": "ac8a8f380b834c509e5716b840384ea1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71d83220-5506-4dbf-a102-4780ed742a3d", + "apim-request-id": "5018878b-9644-4c6f-8d7f-2365dfc45d18", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:38 GMT", + "Date": "Fri, 30 Oct 2020 12:56:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:32:27Z", - "lastUpdatedDateTime": "2020-09-09T22:32:27Z", + "createdDateTime": "2020-10-30T12:56:30Z", + "lastUpdatedDateTime": "2020-10-30T12:56:31Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84/analyzeResults/af3f4594-dd94-487b-a3dc-3a44213d3ff9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3/analyzeResults/bb836fb6-76bc-4ddf-8fa8-60e908ef1508", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d3f73ec9f1a5f0193de7446fd0289825", + "x-ms-client-request-id": "0dbcb8831bbb257144dc1f013bea8f3f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "55f18ef3-708f-4938-99b4-32361d279f0f", + "apim-request-id": "0de15a0a-b4f0-42e9-a1dc-6dac5fafddbc", "Content-Length": "33822", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:32:39 GMT", + "Date": "Fri, 30 Oct 2020 12:56:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:32:27Z", - "lastUpdatedDateTime": "2020-09-09T22:32:39Z", + "createdDateTime": "2020-10-30T12:56:30Z", + "lastUpdatedDateTime": "2020-10-30T12:56:41Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -5298,28 +5040,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/def6573e-ddbf-4d65-b963-892d034c0b84", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cba70025-de26-4572-a15f-7855b796a6f3", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5e16a6190a1f6d45b809edbd936b6c0a-d429ee6771a6a34d-00", + "traceparent": "00-2cf6efdeb3668c41820a53b09a2e905c-d30dcf0e0d6ce741-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "adf7a814d382261566bb5754cc42e46f", + "x-ms-client-request-id": "94c836fe749307094cece08bf615f25e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "50c83b7d-788f-4cba-86c2-ee7efe6e4d1d", + "apim-request-id": "340257e4-1bb7-4a43-a43e-0555caf85bb2", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:32:39 GMT", + "Date": "Fri, 30 Oct 2020 12:56:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": [] } @@ -5327,7 +5069,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1584991278" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageFormWithBlankPage(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageFormWithBlankPage(True)Async.json index 9f4d672675576..5545c16666f0d 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageFormWithBlankPage(True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormRecognizerClientLiveTests/StartRecognizeCustomFormsWithoutLabelsCanParseMultipageFormWithBlankPage(True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-858e442b6132e842b80d14d59b309ab5-3e37fc53e709fb4e-00", + "traceparent": "00-1537d5675758d54f99d9b09191cfcb77-4c3a7a39b8341c41-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e80d4d3bbbf9190f32faa451ed67c144", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "b3b6f9fc-28e5-4546-bccb-0067c43be868", + "apim-request-id": "708cb0f2-5609-4556-8a86-00c00b862627", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:37:41 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef", + "Date": "Fri, 30 Oct 2020 13:02:39 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "03b4e3fba6363896162516162f08e3df", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8b0a59e-54ce-497a-ac1c-3610ce066ea6", + "apim-request-id": "09462f3c-dee6-46ae-9659-89dd7d705f52", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:41 GMT", + "Date": "Fri, 30 Oct 2020 13:02:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", + "modelId": "2066d1ff-b08b-466b-8833-507558001c7a", "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" + "createdDateTime": "2020-10-30T13:02:39Z", + "lastUpdatedDateTime": "2020-10-30T13:02:39Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a6daad07858b944352e37feac1f02c4d", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ef380bd-7671-4353-8af9-e759bffe813b", + "apim-request-id": "71bfc53f-612c-4735-8a24-c9573fb43fd5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:43 GMT", + "Date": "Fri, 30 Oct 2020 13:02:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", + "modelId": "2066d1ff-b08b-466b-8833-507558001c7a", "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" + "createdDateTime": "2020-10-30T13:02:39Z", + "lastUpdatedDateTime": "2020-10-30T13:02:39Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aa2f87b893ec95cdb7d5d2d3a4f9ea29", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a30c3670-60b2-47fc-973d-16b3422ce9b2", + "apim-request-id": "097c2b49-f721-4221-aed3-ade1205cd7ca", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:44 GMT", + "Date": "Fri, 30 Oct 2020 13:02:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", + "modelId": "2066d1ff-b08b-466b-8833-507558001c7a", "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" + "createdDateTime": "2020-10-30T13:02:39Z", + "lastUpdatedDateTime": "2020-10-30T13:02:39Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3f49c4171b8d76b89f1fb05226ac7625", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9bcf554c-4d94-43ab-8e01-5041536a5662", + "apim-request-id": "d998af10-c99b-4f67-b41b-c5c398964679", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:46 GMT", + "Date": "Fri, 30 Oct 2020 13:02:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", + "modelId": "2066d1ff-b08b-466b-8833-507558001c7a", "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" + "createdDateTime": "2020-10-30T13:02:39Z", + "lastUpdatedDateTime": "2020-10-30T13:02:39Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a75ec9f939d874f3e045eeb6b370f059", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e56f1e4-d045-465a-8146-6249aa7ab33f", + "apim-request-id": "3aaefd7e-f39e-436c-94f6-c9c987878415", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:47 GMT", + "Date": "Fri, 30 Oct 2020 13:02:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", + "modelId": "2066d1ff-b08b-466b-8833-507558001c7a", "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" + "createdDateTime": "2020-10-30T13:02:39Z", + "lastUpdatedDateTime": "2020-10-30T13:02:39Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fdd356f9eda79dbfceb90acce27a6e0b", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85506503-9d18-4d4a-a2e3-56af9b8d6389", + "apim-request-id": "93c3b665-47c2-48c4-8e6a-f7e705b0337d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:48 GMT", + "Date": "Fri, 30 Oct 2020 13:02:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", + "modelId": "2066d1ff-b08b-466b-8833-507558001c7a", "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" + "createdDateTime": "2020-10-30T13:02:39Z", + "lastUpdatedDateTime": "2020-10-30T13:02:39Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dad9ac5e429bde50d1d55f482c02c32e", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b6f018d-e06f-4d77-b914-5030cf6e95e3", + "apim-request-id": "1e90f71d-ca30-40b3-9921-f5284d4becc7", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:49 GMT", + "Date": "Fri, 30 Oct 2020 13:02:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", + "modelId": "2066d1ff-b08b-466b-8833-507558001c7a", "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" + "createdDateTime": "2020-10-30T13:02:39Z", + "lastUpdatedDateTime": "2020-10-30T13:02:39Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d058572f79d80c7e0ac0d91f2e269165", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "366ee56d-3872-4de4-815a-949933188064", + "apim-request-id": "f513c65e-962c-4767-a7f2-0dc289b49183", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:50 GMT", + "Date": "Fri, 30 Oct 2020 13:02:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", + "modelId": "2066d1ff-b08b-466b-8833-507558001c7a", "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" + "createdDateTime": "2020-10-30T13:02:39Z", + "lastUpdatedDateTime": "2020-10-30T13:02:39Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0658e3d61596b7be05f52cd18d7671cc", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b72a0a4c-18fc-407e-9d21-25c25527772a", + "apim-request-id": "f3cc4b58-e7d7-4f03-b4d1-42e9e720442b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:51 GMT", + "Date": "Fri, 30 Oct 2020 13:02:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", + "modelId": "2066d1ff-b08b-466b-8833-507558001c7a", "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" + "createdDateTime": "2020-10-30T13:02:39Z", + "lastUpdatedDateTime": "2020-10-30T13:02:39Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8b9ddbf59d22e4322ecdd0da6830afaa", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "237a20fe-6133-45ce-b6b4-427348a9ef10", + "apim-request-id": "409caf64-dc84-4646-822c-cdc9c4d24935", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:52 GMT", + "Date": "Fri, 30 Oct 2020 13:02:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", + "modelId": "2066d1ff-b08b-466b-8833-507558001c7a", "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" + "createdDateTime": "2020-10-30T13:02:39Z", + "lastUpdatedDateTime": "2020-10-30T13:02:39Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4871f944bdaa1a9798a1cae34dac7e93", "x-ms-return-client-request-id": "true" @@ -378,185 +378,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67d04527-171c-4376-9f33-a85a63a24d4b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", - "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "52290d4f05893843b173d7c945e34ed5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2f28b32a-2080-4894-aff4-61d9da75d4e4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:54 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", - "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "938c8145280538214482f280d34e9781", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "50fc9b78-a686-4da2-9ab9-3524fd101ec7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", - "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5b8b3d4f5c063f21b6399737e5ced5b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6a0310e7-a24b-4c1b-956f-338f134a0ceb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", - "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cc9ef552ea20278eebf10e0612c26562", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ddd9f2d4-6707-4f62-89f8-fdc09dd34d31", + "apim-request-id": "7f2427c2-d254-454c-b649-26b65367219a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:57 GMT", + "Date": "Fri, 30 Oct 2020 13:02:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", - "status": "creating", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:42Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "077a55dcf358e8ce604dddcb90ea5375", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ddb5e964-a679-458b-99ec-af8cf7449b86", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "651959be-b619-481d-b743-b9733e99a0ef", + "modelId": "2066d1ff-b08b-466b-8833-507558001c7a", "status": "ready", - "createdDateTime": "2020-09-09T22:37:42Z", - "lastUpdatedDateTime": "2020-09-09T22:37:58Z" + "createdDateTime": "2020-10-30T13:02:39Z", + "lastUpdatedDateTime": "2020-10-30T13:02:51Z" }, "keys": { "clusters": { @@ -626,433 +461,371 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyze?includeTextDetails=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a/analyze?includeTextDetails=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "108935", "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7d19071e922d41449d515c15679a0d54-54982541ff46aa4a-00", + "traceparent": "00-91bba19b4153b041bded03abecab29d9-a1c7ab3a29d5ca4c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "de2d3dadcbaf6461ae6470154e1a2cf4", + "x-ms-client-request-id": "52290d4f05893843b173d7c945e34ed5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7f2be741-dad7-4dc4-972d-cd4d69bf0a73", + "apim-request-id": "685fa780-1112-4307-bb13-cc0926c91ad0", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:37:58 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeresults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", + "Date": "Fri, 30 Oct 2020 13:02:52 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2066d1ff-b08b-466b-8833-507558001c7a/analyzeresults/d7daa1c9-67b3-4eff-862b-40ea56ed58c8", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "118" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeResults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a/analyzeResults/d7daa1c9-67b3-4eff-862b-40ea56ed58c8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8f5a35d3cd545f5c26b56bd20dc29600", + "x-ms-client-request-id": "938c8145280538214482f280d34e9781", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "212b20a6-0584-4ea4-9c86-0f0db4b701c7", + "apim-request-id": "650ea3c6-cede-4d6d-96ee-77d50349c414", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:58 GMT", + "Date": "Fri, 30 Oct 2020 13:02:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:37:59Z", - "lastUpdatedDateTime": "2020-09-09T22:37:59Z" + "createdDateTime": "2020-10-30T13:02:53Z", + "lastUpdatedDateTime": "2020-10-30T13:02:53Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeResults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a/analyzeResults/d7daa1c9-67b3-4eff-862b-40ea56ed58c8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d559989e879411b2f41559f482b99a46", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ed65a955-f93d-4a43-81f9-40ade1aba7a2", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:37:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:37:59Z", - "lastUpdatedDateTime": "2020-09-09T22:37:59Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeResults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5bf8e921c38fe021e0ceb7fa5f8f57ec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "826135ae-ec0e-4bb9-bfb0-810bbccefd27", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:38:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:37:59Z", - "lastUpdatedDateTime": "2020-09-09T22:37:59Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeResults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b5766fcd56c14c5f82499b3f7468dd6d", + "x-ms-client-request-id": "5b8b3d4f5c063f21b6399737e5ced5b5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "051636a7-52ff-4a89-a2dd-8b3395661569", + "apim-request-id": "f50ca2cc-fed3-4ec0-8e7c-9938d543dc85", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:38:01 GMT", + "Date": "Fri, 30 Oct 2020 13:02:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:59Z", - "lastUpdatedDateTime": "2020-09-09T22:37:59Z", + "createdDateTime": "2020-10-30T13:02:53Z", + "lastUpdatedDateTime": "2020-10-30T13:02:54Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeResults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a/analyzeResults/d7daa1c9-67b3-4eff-862b-40ea56ed58c8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "23b0251b3bcadb707778f4c6cfb8b165", + "x-ms-client-request-id": "cc9ef552ea20278eebf10e0612c26562", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12e59d7b-1e75-4898-bd94-94437b9c4d2a", + "apim-request-id": "a1121bc7-d35d-4a97-974a-680a33d801ff", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:38:02 GMT", + "Date": "Fri, 30 Oct 2020 13:02:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:59Z", - "lastUpdatedDateTime": "2020-09-09T22:37:59Z", + "createdDateTime": "2020-10-30T13:02:53Z", + "lastUpdatedDateTime": "2020-10-30T13:02:54Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeResults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a/analyzeResults/d7daa1c9-67b3-4eff-862b-40ea56ed58c8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "13266cbde442ca8589abd94628e26c78", + "x-ms-client-request-id": "077a55dcf358e8ce604dddcb90ea5375", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0f457212-df8d-4f11-8180-c4f7a59ce42d", + "apim-request-id": "3be26e8e-8d11-4b6a-9fdf-df9838336f49", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:38:03 GMT", + "Date": "Fri, 30 Oct 2020 13:02:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:59Z", - "lastUpdatedDateTime": "2020-09-09T22:37:59Z", + "createdDateTime": "2020-10-30T13:02:53Z", + "lastUpdatedDateTime": "2020-10-30T13:02:54Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeResults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a/analyzeResults/d7daa1c9-67b3-4eff-862b-40ea56ed58c8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3ade49f133de9222ff9b3e4862987cc9", + "x-ms-client-request-id": "de2d3dadcbaf6461ae6470154e1a2cf4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "891193b3-891b-4ab9-bd1e-6dd682c0d9f0", + "apim-request-id": "500acde7-0b3d-4fa2-bc7d-8be2dcbda2a7", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:38:04 GMT", + "Date": "Fri, 30 Oct 2020 13:02:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:59Z", - "lastUpdatedDateTime": "2020-09-09T22:37:59Z", + "createdDateTime": "2020-10-30T13:02:53Z", + "lastUpdatedDateTime": "2020-10-30T13:02:54Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeResults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a/analyzeResults/d7daa1c9-67b3-4eff-862b-40ea56ed58c8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "07813598c941362ba0e69a1e622ab294", + "x-ms-client-request-id": "8f5a35d3cd545f5c26b56bd20dc29600", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4c3e373-f3a1-4ff3-a41f-125fbc8f22cf", + "apim-request-id": "00acde8b-3dc9-4be7-bcdf-25ab31d43eb7", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:38:05 GMT", + "Date": "Fri, 30 Oct 2020 13:02:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:59Z", - "lastUpdatedDateTime": "2020-09-09T22:37:59Z", + "createdDateTime": "2020-10-30T13:02:53Z", + "lastUpdatedDateTime": "2020-10-30T13:02:54Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeResults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a/analyzeResults/d7daa1c9-67b3-4eff-862b-40ea56ed58c8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "86d57c0c77d98987499414a6a63c68f1", + "x-ms-client-request-id": "d559989e879411b2f41559f482b99a46", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19560d6e-827c-4474-b863-4e9ffceeac1b", + "apim-request-id": "baac8451-53ff-46ae-adc5-621ee564f808", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:38:06 GMT", + "Date": "Fri, 30 Oct 2020 13:03:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:59Z", - "lastUpdatedDateTime": "2020-09-09T22:37:59Z", + "createdDateTime": "2020-10-30T13:02:53Z", + "lastUpdatedDateTime": "2020-10-30T13:02:54Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeResults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a/analyzeResults/d7daa1c9-67b3-4eff-862b-40ea56ed58c8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f2ad0f2e646027361ea899f8990430d4", + "x-ms-client-request-id": "5bf8e921c38fe021e0ceb7fa5f8f57ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f0002d0-c404-4ad0-af3b-93febe269583", + "apim-request-id": "7a4dc821-a0df-4c95-a93e-b3cde53cbb96", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:38:07 GMT", + "Date": "Fri, 30 Oct 2020 13:03:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:59Z", - "lastUpdatedDateTime": "2020-09-09T22:37:59Z", + "createdDateTime": "2020-10-30T13:02:53Z", + "lastUpdatedDateTime": "2020-10-30T13:02:54Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeResults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a/analyzeResults/d7daa1c9-67b3-4eff-862b-40ea56ed58c8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e53ca9e9f6c321f0aef8beacb5849063", + "x-ms-client-request-id": "b5766fcd56c14c5f82499b3f7468dd6d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06f93d1c-773f-4b01-9848-7ac6ab76c084", + "apim-request-id": "2d9f4dd0-ef43-42fa-a93a-47e129ce2ad5", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:38:08 GMT", + "Date": "Fri, 30 Oct 2020 13:03:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:59Z", - "lastUpdatedDateTime": "2020-09-09T22:37:59Z", + "createdDateTime": "2020-10-30T13:02:53Z", + "lastUpdatedDateTime": "2020-10-30T13:02:54Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeResults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a/analyzeResults/d7daa1c9-67b3-4eff-862b-40ea56ed58c8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "53efa87dc07ca73445ae6831dd8eef45", + "x-ms-client-request-id": "23b0251b3bcadb707778f4c6cfb8b165", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a62e966-184e-43d7-94ba-af7034eb9cb6", + "apim-request-id": "67fc3dfd-0d50-4dde-8f58-1cb613438c69", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:38:09 GMT", + "Date": "Fri, 30 Oct 2020 13:03:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:37:59Z", - "lastUpdatedDateTime": "2020-09-09T22:37:59Z", + "createdDateTime": "2020-10-30T13:02:53Z", + "lastUpdatedDateTime": "2020-10-30T13:02:54Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef/analyzeResults/3cf394d4-ae90-4b2c-a06d-8af6394a1023", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a/analyzeResults/d7daa1c9-67b3-4eff-862b-40ea56ed58c8", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "fcbd3f648200382d1e8c4367a68a7199", + "x-ms-client-request-id": "13266cbde442ca8589abd94628e26c78", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c6fc3135-eb28-4fe8-9802-7ecf8340d6b3", + "apim-request-id": "6447296f-0aa4-4856-8f9a-f75de6d63586", "Content-Length": "33822", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:38:11 GMT", + "Date": "Fri, 30 Oct 2020 13:03:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:37:59Z", - "lastUpdatedDateTime": "2020-09-09T22:38:11Z", + "createdDateTime": "2020-10-30T13:02:53Z", + "lastUpdatedDateTime": "2020-10-30T13:03:04Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -5331,28 +5104,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/651959be-b619-481d-b743-b9733e99a0ef", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2066d1ff-b08b-466b-8833-507558001c7a", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-506597624b0983458fb4b6eadc9aafe9-66ca08d189edda4d-00", + "traceparent": "00-88fff0b44bd56443a6bcb30f8c791d98-ae14108f22c8d246-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f07a3617dd1428577594a0158ebe4320", + "x-ms-client-request-id": "3ade49f133de9222ff9b3e4862987cc9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "4192ecaa-4fe5-4d77-bd25-798c479b1615", + "apim-request-id": "f31e4084-6251-4dc8-9b63-daf3f2752545", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:38:11 GMT", + "Date": "Fri, 30 Oct 2020 13:03:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": [] } @@ -5360,7 +5133,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1552024379" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(False).json index 7d92180fa11b6..3b2e4445b2b75 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8b8619f5772b5a4bbdf15b78784c6569-036cb0fa7954f540-00", + "traceparent": "00-828a7237dc1c55419b9d00c7e31874d4-a757fcfb526ed44f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9b4852d2859090f266336770dfc891fd", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "4650c60f-fcc0-4e63-b024-13ee5c718362", + "apim-request-id": "09db3c38-2a56-4060-a666-b98d1ea6b6ee", "Content-Length": "0", - "Date": "Wed, 30 Sep 2020 17:33:26 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de", + "Date": "Fri, 30 Oct 2020 13:21:14 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "474" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cd31057e324b13a7db93254854390f91", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "972b4e34-bd3a-4316-9c45-9b1d7598113a", + "apim-request-id": "0a54de35-a772-440f-b2bc-4eb30078c2c4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:26 GMT", + "Date": "Fri, 30 Oct 2020 13:21:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", + "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", "status": "creating", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:27Z" + "createdDateTime": "2020-10-30T13:21:15Z", + "lastUpdatedDateTime": "2020-10-30T13:21:15Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f25fd13c76a2ea3d7d47efb1f03ff216", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30613aec-1325-4a7e-be0f-f19841ed1cc6", + "apim-request-id": "a7c0c965-f4af-4e59-8a41-f1a65ddf7dd8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:27 GMT", + "Date": "Fri, 30 Oct 2020 13:21:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", + "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", "status": "creating", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:27Z" + "createdDateTime": "2020-10-30T13:21:15Z", + "lastUpdatedDateTime": "2020-10-30T13:21:15Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2e9e059d41dea082aa34c0fc60a93c2c", "x-ms-return-client-request-id": "true" @@ -114,9 +114,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "76b8cb27-fb60-4513-bb9f-d45e0b92c49b", + "apim-request-id": "25c5c0e0-6ea4-4f99-9a88-4a895ac9a42c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:28 GMT", + "Date": "Fri, 30 Oct 2020 13:21:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -124,22 +124,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", + "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", "status": "creating", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:27Z" + "createdDateTime": "2020-10-30T13:21:15Z", + "lastUpdatedDateTime": "2020-10-30T13:21:15Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0d33d6239e69085bc747500342f5239b", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ccfebf3-917f-49bf-ac2e-07792d3c6007", + "apim-request-id": "23479bd2-1a78-4dbe-bd14-b314b4068f1f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:29 GMT", + "Date": "Fri, 30 Oct 2020 13:21:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", + "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", "status": "creating", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:27Z" + "createdDateTime": "2020-10-30T13:21:15Z", + "lastUpdatedDateTime": "2020-10-30T13:21:15Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4fab0ea0e09afbb34ebf476db64189d3", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e913822b-51a1-4fa2-8e5e-482ce0f218f2", + "apim-request-id": "5719aba6-3bf3-4507-90dd-e986f0288fb3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:31 GMT", + "Date": "Fri, 30 Oct 2020 13:21:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", + "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", "status": "creating", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:27Z" + "createdDateTime": "2020-10-30T13:21:15Z", + "lastUpdatedDateTime": "2020-10-30T13:21:15Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "198dc20be40cfeada9966696f07f5db5", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd29fcb5-3fa2-499a-9635-d93a4d2f8fea", + "apim-request-id": "57acb79b-40b5-4dac-b1b9-27aa9ad2922a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:32 GMT", + "Date": "Fri, 30 Oct 2020 13:21:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "135" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", + "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", "status": "creating", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:27Z" + "createdDateTime": "2020-10-30T13:21:15Z", + "lastUpdatedDateTime": "2020-10-30T13:21:15Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "515b2411edfe42922238beaa57ed5186", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fb2a8a8-32cb-4ec4-b74f-af83ae8dc1df", + "apim-request-id": "aca6eb03-a32d-4e54-b843-4f53150a6566", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:33 GMT", + "Date": "Fri, 30 Oct 2020 13:21:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", + "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", "status": "creating", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:27Z" + "createdDateTime": "2020-10-30T13:21:15Z", + "lastUpdatedDateTime": "2020-10-30T13:21:15Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "80f87cbd0967bc8f61aca5047a1c0acf", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "be120c7e-7863-4525-84a4-fda2fa08b8d5", + "apim-request-id": "a7cfaa12-4148-48a7-bb5e-21a3d6fe95d5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:34 GMT", + "Date": "Fri, 30 Oct 2020 13:21:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", + "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", "status": "creating", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:27Z" + "createdDateTime": "2020-10-30T13:21:15Z", + "lastUpdatedDateTime": "2020-10-30T13:21:15Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "915b926138e51ed5304bf7d32603a7bb", "x-ms-return-client-request-id": "true" @@ -312,185 +312,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d56a88b-9ed4-4c26-9182-141298762f11", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:35 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", - "status": "creating", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:27Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "74d9e044dc86084d949ff052478dc806", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cdd8592b-3b09-475f-ab46-de1312411c68", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", - "status": "creating", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:27Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c448ef2ebf9185a1a7d9501c12bc955e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ffaff8de-e447-4468-8da0-4b4b0c4ff8d0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", - "status": "creating", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:27Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "99bfe904964285484553fd454782d6a2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "47c54065-eef3-408c-8ded-64829e55cbe8", + "apim-request-id": "bd0a54ef-5a24-43ec-b4de-8ffe83945745", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:38 GMT", + "Date": "Fri, 30 Oct 2020 13:21:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", - "status": "creating", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:27Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "37a5f082e2ba842a3e54ccad8c30f5d7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "25ff2012-f1fb-4a1f-b060-2ed5b4bfea21", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", - "status": "creating", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:27Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5e4d92092ece98c3a6c37f3ec25c3d24", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d9eddcaa-433d-47b8-a171-09268b0e76f3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "204" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "13866256-a6ee-4ff3-bf9d-e31aadd547de", + "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", "status": "ready", - "createdDateTime": "2020-09-30T17:33:27Z", - "lastUpdatedDateTime": "2020-09-30T17:33:40Z" + "createdDateTime": "2020-10-30T13:21:15Z", + "lastUpdatedDateTime": "2020-10-30T13:21:26Z" }, "keys": { "clusters": { @@ -560,19 +395,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1a0831c188af76439c739ec230449704-0a040b5fa36bff4d-00", + "traceparent": "00-154bc6001fcbe2409754ffca1700a1da-a2383ec603feac46-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "219aad025e1722a3bf3a5beec99bf814", + "x-ms-client-request-id": "74d9e044dc86084d949ff052478dc806", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -580,353 +415,229 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "320253d2-9967-4bd0-9c66-a6368b01b3d7", + "apim-request-id": "cf398063-57be-479b-832b-dee0f72d0752", "Content-Length": "0", - "Date": "Wed, 30 Sep 2020 17:33:41 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de/analyzeresults/a8963d34-d31b-4aa8-9f28-ba873be90217", + "Date": "Fri, 30 Oct 2020 13:21:26 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328/analyzeresults/a119a0b8-8a3c-4daa-aa4c-37e721c44291", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de/analyzeResults/a8963d34-d31b-4aa8-9f28-ba873be90217", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328/analyzeResults/a119a0b8-8a3c-4daa-aa4c-37e721c44291", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b53b255d783553d42d0d90f763ecc2e2", + "x-ms-client-request-id": "c448ef2ebf9185a1a7d9501c12bc955e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b14d34de-7499-4df7-8fd1-4803557287c3", + "apim-request-id": "0fea03ed-cf69-4a70-85a8-bdeddcc1c7cf", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:42 GMT", + "Date": "Fri, 30 Oct 2020 13:21:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-30T17:33:41Z", - "lastUpdatedDateTime": "2020-09-30T17:33:41Z" + "createdDateTime": "2020-10-30T13:21:27Z", + "lastUpdatedDateTime": "2020-10-30T13:21:27Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de/analyzeResults/a8963d34-d31b-4aa8-9f28-ba873be90217", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328/analyzeResults/a119a0b8-8a3c-4daa-aa4c-37e721c44291", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "deaaa716d496aac0ee2b9e93d3d5ce0a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d1e3d989-f4c1-4ccd-8d0e-7e9abb1f3a7a", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:43 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-30T17:33:41Z", - "lastUpdatedDateTime": "2020-09-30T17:33:42Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de/analyzeResults/a8963d34-d31b-4aa8-9f28-ba873be90217", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9ce06bca87208aefd946f409ceabbed3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5cac0b4f-e0a0-4a12-8ca4-594aec106a57", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:44 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-30T17:33:41Z", - "lastUpdatedDateTime": "2020-09-30T17:33:42Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de/analyzeResults/a8963d34-d31b-4aa8-9f28-ba873be90217", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "22d7797819f0897e6590c70ad9408057", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "231aeee0-5e77-453b-b876-882f98c31ed8", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:45 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-30T17:33:41Z", - "lastUpdatedDateTime": "2020-09-30T17:33:42Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de/analyzeResults/a8963d34-d31b-4aa8-9f28-ba873be90217", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f82d863f260b8fc1b820054fe0b6dc42", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a6e58b17-7e61-4f4d-b66e-092cec1f128c", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:46 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-30T17:33:41Z", - "lastUpdatedDateTime": "2020-09-30T17:33:42Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de/analyzeResults/a8963d34-d31b-4aa8-9f28-ba873be90217", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5a1bcb6cabfdb01aec573690c0e4b098", + "x-ms-client-request-id": "99bfe904964285484553fd454782d6a2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46301055-802c-46b1-9ed7-75a1e2550a80", + "apim-request-id": "3f9cefca-e54f-4b9b-a666-157e26a7607d", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:47 GMT", + "Date": "Fri, 30 Oct 2020 13:21:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-30T17:33:41Z", - "lastUpdatedDateTime": "2020-09-30T17:33:42Z", + "createdDateTime": "2020-10-30T13:21:27Z", + "lastUpdatedDateTime": "2020-10-30T13:21:28Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de/analyzeResults/a8963d34-d31b-4aa8-9f28-ba873be90217", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328/analyzeResults/a119a0b8-8a3c-4daa-aa4c-37e721c44291", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "48ca9cc6c67e51c7b7486acf142ea9ae", + "x-ms-client-request-id": "37a5f082e2ba842a3e54ccad8c30f5d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "656a344a-40a1-479d-8f36-d2225bb755b9", + "apim-request-id": "a42f96c3-ac78-46b1-93e4-f576eeab5710", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:48 GMT", + "Date": "Fri, 30 Oct 2020 13:21:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-30T17:33:41Z", - "lastUpdatedDateTime": "2020-09-30T17:33:42Z", + "createdDateTime": "2020-10-30T13:21:27Z", + "lastUpdatedDateTime": "2020-10-30T13:21:28Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de/analyzeResults/a8963d34-d31b-4aa8-9f28-ba873be90217", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328/analyzeResults/a119a0b8-8a3c-4daa-aa4c-37e721c44291", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0d9e84b32625935a6b7c0bb4ef31ced3", + "x-ms-client-request-id": "5e4d92092ece98c3a6c37f3ec25c3d24", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8617f6ea-a1e7-4ca6-abad-208508617781", + "apim-request-id": "bb623949-cfda-4b11-b2a0-09d5097c4fe6", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:49 GMT", + "Date": "Fri, 30 Oct 2020 13:21:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-30T17:33:41Z", - "lastUpdatedDateTime": "2020-09-30T17:33:42Z", + "createdDateTime": "2020-10-30T13:21:27Z", + "lastUpdatedDateTime": "2020-10-30T13:21:28Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de/analyzeResults/a8963d34-d31b-4aa8-9f28-ba873be90217", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328/analyzeResults/a119a0b8-8a3c-4daa-aa4c-37e721c44291", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "43896c7094eba5c404c9a2b5414a9cbe", + "x-ms-client-request-id": "219aad025e1722a3bf3a5beec99bf814", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61064416-10d3-4cec-a845-40f791725fc1", + "apim-request-id": "bd6d5821-281f-44e0-abdc-74abf7d4cbe5", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:50 GMT", + "Date": "Fri, 30 Oct 2020 13:21:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-30T17:33:41Z", - "lastUpdatedDateTime": "2020-09-30T17:33:42Z", + "createdDateTime": "2020-10-30T13:21:27Z", + "lastUpdatedDateTime": "2020-10-30T13:21:28Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de/analyzeResults/a8963d34-d31b-4aa8-9f28-ba873be90217", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328/analyzeResults/a119a0b8-8a3c-4daa-aa4c-37e721c44291", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3bdc87ada245a0734237dc01bb126286", + "x-ms-client-request-id": "b53b255d783553d42d0d90f763ecc2e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "afe1e5bb-7164-4563-9dc4-a22f592ec66c", + "apim-request-id": "9090ceb3-8d4a-4e05-8d81-eed05147de3a", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:51 GMT", + "Date": "Fri, 30 Oct 2020 13:21:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "84" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-30T17:33:41Z", - "lastUpdatedDateTime": "2020-09-30T17:33:42Z", + "createdDateTime": "2020-10-30T13:21:27Z", + "lastUpdatedDateTime": "2020-10-30T13:21:28Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/13866256-a6ee-4ff3-bf9d-e31aadd547de/analyzeResults/a8963d34-d31b-4aa8-9f28-ba873be90217", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e076466-b041-4a9b-a7a9-41910a16e328/analyzeResults/a119a0b8-8a3c-4daa-aa4c-37e721c44291", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a75f967965a51ec3c0f9095c83a55121", + "x-ms-client-request-id": "deaaa716d496aac0ee2b9e93d3d5ce0a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91db0424-64bc-4308-8a08-58d1f899ef75", + "apim-request-id": "d682f514-4e05-4d2f-ac7b-26e76b297be6", "Content-Length": "8958", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:52 GMT", + "Date": "Fri, 30 Oct 2020 13:21:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-30T17:33:41Z", - "lastUpdatedDateTime": "2020-09-30T17:33:52Z", + "createdDateTime": "2020-10-30T13:21:27Z", + "lastUpdatedDateTime": "2020-10-30T13:21:33Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1911,7 +1622,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "78225286" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(False)Async.json index 82ee7b7166461..4991b2b800758 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e8201e281d35754f8a2fe2a35659164e-773eff2484211a43-00", + "traceparent": "00-0c7cf46ea8e24a46ad02fc12bf4c74e9-ddb67b187ab5e44f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8e80bf6366becd8d0f365bc292e78126", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "ae06c9a8-909f-4045-a183-83f7a806be76", + "apim-request-id": "fda51bb8-c70a-4cb4-9ab3-9d48b087f0f1", "Content-Length": "0", - "Date": "Wed, 30 Sep 2020 17:33:59 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09", + "Date": "Fri, 30 Oct 2020 13:24:13 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "75" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b68b2ac3a83dd1cdb60ddd5127c5594e", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c12db3f4-b47d-4933-ac54-9aac63fea7ef", + "apim-request-id": "8c12095e-0ebd-4e68-a4e6-2a5f805d12ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:59 GMT", + "Date": "Fri, 30 Oct 2020 13:24:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "23daa966-a1c3-4d37-b967-e49f6dabaf09", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "creating", - "createdDateTime": "2020-09-30T17:34:00Z", - "lastUpdatedDateTime": "2020-09-30T17:34:00Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a6172eb262f20d6b3242e795c0a19699", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f025c8a-38d6-4bb5-8295-e914f989c92b", + "apim-request-id": "ee08433e-e5d4-4025-a5d4-f4931504607a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:00 GMT", + "Date": "Fri, 30 Oct 2020 13:24:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "23daa966-a1c3-4d37-b967-e49f6dabaf09", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "creating", - "createdDateTime": "2020-09-30T17:34:00Z", - "lastUpdatedDateTime": "2020-09-30T17:34:00Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9504dd453084bbe0f1afd8b0893ca549", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cccb8be9-506c-49b8-a47e-b9072fa7df58", + "apim-request-id": "d461d0ec-0e95-4153-9264-3fac40af3f10", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:01 GMT", + "Date": "Fri, 30 Oct 2020 13:24:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "23daa966-a1c3-4d37-b967-e49f6dabaf09", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "creating", - "createdDateTime": "2020-09-30T17:34:00Z", - "lastUpdatedDateTime": "2020-09-30T17:34:00Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "64100ddcdbd06133be7d83fbc0371114", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a59ece0c-b607-46d2-9aa7-b725456585b6", + "apim-request-id": "8318e180-2e5e-4d2c-9358-33681092e97c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:03 GMT", + "Date": "Fri, 30 Oct 2020 13:24:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "23daa966-a1c3-4d37-b967-e49f6dabaf09", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "creating", - "createdDateTime": "2020-09-30T17:34:00Z", - "lastUpdatedDateTime": "2020-09-30T17:34:00Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "490b4377c4c181c94d5cb44389bb83f6", "x-ms-return-client-request-id": "true" @@ -180,9 +180,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f486ce89-86e8-4d49-abec-3b32028a92ba", + "apim-request-id": "fc6204fc-e561-4a31-80a4-7a7b65953e36", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:04 GMT", + "Date": "Fri, 30 Oct 2020 13:24:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -190,22 +190,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "23daa966-a1c3-4d37-b967-e49f6dabaf09", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "creating", - "createdDateTime": "2020-09-30T17:34:00Z", - "lastUpdatedDateTime": "2020-09-30T17:34:00Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b2b99e9c329169c9a9a3d606ace5faba", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "90ed4ae7-7f18-43ff-adc0-6063c0e819cc", + "apim-request-id": "0a89c8f6-cbea-470a-954d-a238017096fe", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:05 GMT", + "Date": "Fri, 30 Oct 2020 13:24:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "23daa966-a1c3-4d37-b967-e49f6dabaf09", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "creating", - "createdDateTime": "2020-09-30T17:34:00Z", - "lastUpdatedDateTime": "2020-09-30T17:34:00Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4539c49d5c301888448e167426efd703", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a726be3-6447-4733-af9a-bdfa42666009", + "apim-request-id": "c1d87797-7f71-4f59-b5fc-bc727552206a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:06 GMT", + "Date": "Fri, 30 Oct 2020 13:24:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "modelInfo": { - "modelId": "23daa966-a1c3-4d37-b967-e49f6dabaf09", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "creating", - "createdDateTime": "2020-09-30T17:34:00Z", - "lastUpdatedDateTime": "2020-09-30T17:34:00Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "225f8df95e7d44837aa19f1dedc2d568", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0d9383e-35d6-4a8f-a70e-71173e0a59ad", + "apim-request-id": "512a6751-8e89-4ae7-b132-11268b262933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:07 GMT", + "Date": "Fri, 30 Oct 2020 13:24:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "23daa966-a1c3-4d37-b967-e49f6dabaf09", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "creating", - "createdDateTime": "2020-09-30T17:34:00Z", - "lastUpdatedDateTime": "2020-09-30T17:34:00Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c5a5fa613e8140c515a16e021b5543ba", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05606624-9964-4745-9cd1-9c232fe11c39", + "apim-request-id": "001d638e-b527-4801-89b8-9e82816b00dd", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:08 GMT", + "Date": "Fri, 30 Oct 2020 13:24:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "23daa966-a1c3-4d37-b967-e49f6dabaf09", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "creating", - "createdDateTime": "2020-09-30T17:34:00Z", - "lastUpdatedDateTime": "2020-09-30T17:34:00Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1f0cd3ccd7853e3c40f4cb8ebc6b2a81", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06de49bf-d7cf-4eee-b199-b29bfcb04431", + "apim-request-id": "b475115f-ac85-46aa-a8e8-ea0ef87345f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:09 GMT", + "Date": "Fri, 30 Oct 2020 13:24:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "23daa966-a1c3-4d37-b967-e49f6dabaf09", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "creating", - "createdDateTime": "2020-09-30T17:34:00Z", - "lastUpdatedDateTime": "2020-09-30T17:34:00Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2c12aeb9114abb81c81f0ddcef802925", "x-ms-return-client-request-id": "true" @@ -378,86 +378,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc5f9d7c-9145-486e-91d6-f0114cb8612a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "23daa966-a1c3-4d37-b967-e49f6dabaf09", - "status": "creating", - "createdDateTime": "2020-09-30T17:34:00Z", - "lastUpdatedDateTime": "2020-09-30T17:34:00Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1a51e55eb6b68ae2bd66848d723683aa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a6c48208-46dc-43af-a27b-8e79d835d615", + "apim-request-id": "e5a321d2-1931-4257-83a2-0b52d26e5fa7", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:11 GMT", + "Date": "Fri, 30 Oct 2020 13:24:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "modelInfo": { - "modelId": "23daa966-a1c3-4d37-b967-e49f6dabaf09", - "status": "creating", - "createdDateTime": "2020-09-30T17:34:00Z", - "lastUpdatedDateTime": "2020-09-30T17:34:00Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "6c49ed761742ba6f51505666ca604ebf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c5f92292-45ca-4987-9441-1d508192eded", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "23daa966-a1c3-4d37-b967-e49f6dabaf09", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "ready", - "createdDateTime": "2020-09-30T17:34:00Z", - "lastUpdatedDateTime": "2020-09-30T17:34:12Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:25Z" }, "keys": { "clusters": { @@ -527,19 +461,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4769d636dd15ec4d9da62912631eab66-2f725f3fff9b404a-00", + "traceparent": "00-6bb469f89f6e4e4d8d4e088502bf0537-b856589a82f12f4c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d630a6ca101903cacc886ee38cf44992", + "x-ms-client-request-id": "1a51e55eb6b68ae2bd66848d723683aa", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -547,353 +481,198 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "22d825c1-ff1c-4145-81ef-5e050c5ebc5e", + "apim-request-id": "ff9bd098-843c-4480-b365-28afa05ba15b", "Content-Length": "0", - "Date": "Wed, 30 Sep 2020 17:34:13 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09/analyzeresults/a0dbbd65-52b6-4f4a-ba20-a346d8fa0828", + "Date": "Fri, 30 Oct 2020 13:24:26 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8/analyzeresults/36d778d5-dd33-486b-a1da-408080802568", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "70" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09/analyzeResults/a0dbbd65-52b6-4f4a-ba20-a346d8fa0828", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8/analyzeResults/36d778d5-dd33-486b-a1da-408080802568", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0265629bbd3746e27597c8655f7bbf5c", + "x-ms-client-request-id": "6c49ed761742ba6f51505666ca604ebf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c11c10b9-4707-45ba-b607-5fe7b489b1cb", + "apim-request-id": "df1b9722-14c7-4be8-a203-7f3e0acaeb03", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:13 GMT", + "Date": "Fri, 30 Oct 2020 13:24:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "208" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-30T17:34:13Z", - "lastUpdatedDateTime": "2020-09-30T17:34:13Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09/analyzeResults/a0dbbd65-52b6-4f4a-ba20-a346d8fa0828", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cbc2c418ad0566902246a0baa88c2d5c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1b39d675-c095-4aea-97c5-0900be0330c6", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:15 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-30T17:34:13Z", - "lastUpdatedDateTime": "2020-09-30T17:34:14Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09/analyzeResults/a0dbbd65-52b6-4f4a-ba20-a346d8fa0828", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "67cbc4074cfb0d88c4e960824865a350", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b2f1bba0-d33d-4719-aa4d-9939e1548c1c", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-30T17:34:13Z", - "lastUpdatedDateTime": "2020-09-30T17:34:14Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09/analyzeResults/a0dbbd65-52b6-4f4a-ba20-a346d8fa0828", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c7cb11c87d32ee8cd1ffdff11d279ee8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c5d2ed95-53d3-44ce-9cb7-5723bbce40fe", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-30T17:34:13Z", - "lastUpdatedDateTime": "2020-09-30T17:34:14Z", - "analyzeResult": null + "createdDateTime": "2020-10-30T13:24:27Z", + "lastUpdatedDateTime": "2020-10-30T13:24:27Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09/analyzeResults/a0dbbd65-52b6-4f4a-ba20-a346d8fa0828", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8/analyzeResults/36d778d5-dd33-486b-a1da-408080802568", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9b5d6b6958b0cb613cb4071b4c0e1dbd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4267eb79-5f38-4380-9301-d265afdf85b1", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-30T17:34:13Z", - "lastUpdatedDateTime": "2020-09-30T17:34:14Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09/analyzeResults/a0dbbd65-52b6-4f4a-ba20-a346d8fa0828", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "96f24fa265c18a2a37dc95fb6c96f09c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ca9acc03-b529-46e5-ae4e-f41efdb9b2b8", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:19 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-30T17:34:13Z", - "lastUpdatedDateTime": "2020-09-30T17:34:14Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09/analyzeResults/a0dbbd65-52b6-4f4a-ba20-a346d8fa0828", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "dc19774b080770a0b0ff8b7d7570a1c3", + "x-ms-client-request-id": "d630a6ca101903cacc886ee38cf44992", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "102e48f7-9f01-4e99-a1e9-3a652276d952", + "apim-request-id": "ce953a7b-06ea-46e5-9fb9-4ca762b0e119", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:20 GMT", + "Date": "Fri, 30 Oct 2020 13:24:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-30T17:34:13Z", - "lastUpdatedDateTime": "2020-09-30T17:34:14Z", + "createdDateTime": "2020-10-30T13:24:27Z", + "lastUpdatedDateTime": "2020-10-30T13:24:28Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09/analyzeResults/a0dbbd65-52b6-4f4a-ba20-a346d8fa0828", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8/analyzeResults/36d778d5-dd33-486b-a1da-408080802568", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "cd4f22e10735042741d363d3c2665ea5", + "x-ms-client-request-id": "0265629bbd3746e27597c8655f7bbf5c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eb63b1d4-463d-46ab-9aff-4a87050a5110", + "apim-request-id": "fc1b365c-095d-48fd-b015-03b8346a87f6", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:21 GMT", + "Date": "Fri, 30 Oct 2020 13:24:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-30T17:34:13Z", - "lastUpdatedDateTime": "2020-09-30T17:34:14Z", + "createdDateTime": "2020-10-30T13:24:27Z", + "lastUpdatedDateTime": "2020-10-30T13:24:28Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09/analyzeResults/a0dbbd65-52b6-4f4a-ba20-a346d8fa0828", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8/analyzeResults/36d778d5-dd33-486b-a1da-408080802568", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d5d06bc441f599b5af82e6c2d9ac15c6", + "x-ms-client-request-id": "cbc2c418ad0566902246a0baa88c2d5c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bd692e9c-0b71-44a5-a477-ffcda4d9f8f0", + "apim-request-id": "cd47d1ef-2742-4e25-b50b-8ff71c56497a", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:22 GMT", + "Date": "Fri, 30 Oct 2020 13:24:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-30T17:34:13Z", - "lastUpdatedDateTime": "2020-09-30T17:34:14Z", + "createdDateTime": "2020-10-30T13:24:27Z", + "lastUpdatedDateTime": "2020-10-30T13:24:28Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09/analyzeResults/a0dbbd65-52b6-4f4a-ba20-a346d8fa0828", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8/analyzeResults/36d778d5-dd33-486b-a1da-408080802568", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4a19d23b2247446650149b34a5ccae49", + "x-ms-client-request-id": "67cbc4074cfb0d88c4e960824865a350", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "457feecb-f949-4d9d-9356-eb455c57db85", + "apim-request-id": "d477e29a-cf14-4530-85fd-265e4c6c529f", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:23 GMT", + "Date": "Fri, 30 Oct 2020 13:24:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-30T17:34:13Z", - "lastUpdatedDateTime": "2020-09-30T17:34:14Z", + "createdDateTime": "2020-10-30T13:24:27Z", + "lastUpdatedDateTime": "2020-10-30T13:24:28Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/23daa966-a1c3-4d37-b967-e49f6dabaf09/analyzeResults/a0dbbd65-52b6-4f4a-ba20-a346d8fa0828", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/2e36a220-b90f-4d5d-80d9-ef061bc341a8/analyzeResults/36d778d5-dd33-486b-a1da-408080802568", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "09b9e5a1cca0a0ce6db51eb320642a94", + "x-ms-client-request-id": "c7cb11c87d32ee8cd1ffdff11d279ee8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5797e7a0-642f-4c57-adcb-7423d6290367", + "apim-request-id": "038cf0c2-577c-43bc-987e-ba3ed1869d03", "Content-Length": "8958", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:34:24 GMT", + "Date": "Fri, 30 Oct 2020 13:24:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-30T17:34:13Z", - "lastUpdatedDateTime": "2020-09-30T17:34:24Z", + "createdDateTime": "2020-10-30T13:24:27Z", + "lastUpdatedDateTime": "2020-10-30T13:24:33Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1878,7 +1657,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "795608834" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(True).json index 84ba9bca0ca02..a9e04fb57c6f4 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2ea12461c2c18943bd86793be3583c03-74ed047c7fa44347-00", + "traceparent": "00-0153ece700cb6b4a96dbb99d5d821e41-da41b6c8e52e584c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "76ff715043947d216059a52af5f8a997", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "1e8f1dff-f0d1-4fc7-9910-0e3c0f9396b9", + "apim-request-id": "d252064a-7615-4e76-abd2-f96d7167d20e", "Content-Length": "0", - "Date": "Wed, 30 Sep 2020 17:33:15 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f", + "Date": "Fri, 30 Oct 2020 13:21:04 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ab71a8bd-e38c-41dd-8b9f-4677355e9ab5", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "108" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ab71a8bd-e38c-41dd-8b9f-4677355e9ab5?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "03ad1cf59b881cb4976f7b04174c1d14", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7dede02d-6d4e-4171-a2fa-bcbed4ab1962", + "apim-request-id": "75cab952-e6f4-49e6-b6a6-a011e6e22607", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:15 GMT", + "Date": "Fri, 30 Oct 2020 13:21:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "239" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "a5a52642-fec3-450f-85ad-fc3f3796aa6f", + "modelId": "ab71a8bd-e38c-41dd-8b9f-4677355e9ab5", "status": "creating", - "createdDateTime": "2020-09-30T17:33:15Z", - "lastUpdatedDateTime": "2020-09-30T17:33:15Z" + "createdDateTime": "2020-10-30T13:21:05Z", + "lastUpdatedDateTime": "2020-10-30T13:21:05Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ab71a8bd-e38c-41dd-8b9f-4677355e9ab5?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "00cb1610fc4517ceb65c6b803e82dede", "x-ms-return-client-request-id": "true" @@ -81,56 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b005ab15-7ea5-4fd8-93a0-2b16aec045b6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "92" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "a5a52642-fec3-450f-85ad-fc3f3796aa6f", - "status": "creating", - "createdDateTime": "2020-09-30T17:33:15Z", - "lastUpdatedDateTime": "2020-09-30T17:33:15Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4c969af5577db531bce2de25c71c6614", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "455e330a-2c2c-44ab-a358-c0601add296b", + "apim-request-id": "39418230-3de2-42eb-9a43-bcc7aebf8563", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:17 GMT", + "Date": "Fri, 30 Oct 2020 13:21:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "a5a52642-fec3-450f-85ad-fc3f3796aa6f", + "modelId": "ab71a8bd-e38c-41dd-8b9f-4677355e9ab5", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-30T17:33:15Z", - "lastUpdatedDateTime": "2020-09-30T17:33:17Z" + "createdDateTime": "2020-10-30T13:21:05Z", + "lastUpdatedDateTime": "2020-10-30T13:21:06Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,19 +195,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ab71a8bd-e38c-41dd-8b9f-4677355e9ab5/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2e06e6ef9118d44da055017e1a70b00d-8bb0636e519b364f-00", + "traceparent": "00-dad447dd85b17c48971e31960c2467fa-7497545c9dbd8c45-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "df19913ba92df9514d964d2c2f33dd15", + "x-ms-client-request-id": "4c969af5577db531bce2de25c71c6614", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -248,254 +215,224 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ce8b176f-a5aa-4d73-93b9-6c0b184a2ba4", + "apim-request-id": "fce6b2fd-fb94-4e5d-a80a-9097b33fec55", "Content-Length": "0", - "Date": "Wed, 30 Sep 2020 17:33:17 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f/analyzeresults/df43b03d-c5f8-4f86-a24d-9a0f0587bdbc", + "Date": "Fri, 30 Oct 2020 13:21:07 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ab71a8bd-e38c-41dd-8b9f-4677355e9ab5/analyzeresults/c8c5a552-fa0a-4bf6-8261-d84dbe4432bc", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f/analyzeResults/df43b03d-c5f8-4f86-a24d-9a0f0587bdbc", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ab71a8bd-e38c-41dd-8b9f-4677355e9ab5/analyzeResults/c8c5a552-fa0a-4bf6-8261-d84dbe4432bc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7c0e9d91d1b6b997e41543621ea94f99", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9caa8f2d-85a8-41ec-b293-fe1ac3dfda17", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-30T17:33:18Z", - "lastUpdatedDateTime": "2020-09-30T17:33:18Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f/analyzeResults/df43b03d-c5f8-4f86-a24d-9a0f0587bdbc", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ad4557f6fe684bb0499cfee709058688", + "x-ms-client-request-id": "df19913ba92df9514d964d2c2f33dd15", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28d0ef91-1a1d-4948-984c-d7712a81b465", + "apim-request-id": "8292c4d6-cacc-4dc4-a228-7dc900b23cdb", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:19 GMT", + "Date": "Fri, 30 Oct 2020 13:21:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-30T17:33:18Z", - "lastUpdatedDateTime": "2020-09-30T17:33:19Z" + "createdDateTime": "2020-10-30T13:21:07Z", + "lastUpdatedDateTime": "2020-10-30T13:21:07Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f/analyzeResults/df43b03d-c5f8-4f86-a24d-9a0f0587bdbc", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ab71a8bd-e38c-41dd-8b9f-4677355e9ab5/analyzeResults/c8c5a552-fa0a-4bf6-8261-d84dbe4432bc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2994c805e90e695df960fa1766eedba4", + "x-ms-client-request-id": "7c0e9d91d1b6b997e41543621ea94f99", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c0dae2a9-bf80-4fcd-b8c4-03e840199ffc", + "apim-request-id": "27345650-a171-4c4c-90bd-0aa371b85fb8", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:20 GMT", + "Date": "Fri, 30 Oct 2020 13:21:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-30T17:33:18Z", - "lastUpdatedDateTime": "2020-09-30T17:33:19Z" + "createdDateTime": "2020-10-30T13:21:07Z", + "lastUpdatedDateTime": "2020-10-30T13:21:08Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f/analyzeResults/df43b03d-c5f8-4f86-a24d-9a0f0587bdbc", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ab71a8bd-e38c-41dd-8b9f-4677355e9ab5/analyzeResults/c8c5a552-fa0a-4bf6-8261-d84dbe4432bc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d836b34630ee92acecc33319d2b0afdf", + "x-ms-client-request-id": "ad4557f6fe684bb0499cfee709058688", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad9d9919-a724-4dfc-8c7c-f981de394e50", + "apim-request-id": "43875acc-dc7e-470d-bf79-6368614f44b2", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:22 GMT", + "Date": "Fri, 30 Oct 2020 13:21:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-30T17:33:18Z", - "lastUpdatedDateTime": "2020-09-30T17:33:19Z" + "createdDateTime": "2020-10-30T13:21:07Z", + "lastUpdatedDateTime": "2020-10-30T13:21:08Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f/analyzeResults/df43b03d-c5f8-4f86-a24d-9a0f0587bdbc", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ab71a8bd-e38c-41dd-8b9f-4677355e9ab5/analyzeResults/c8c5a552-fa0a-4bf6-8261-d84dbe4432bc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "555dba8f25150c8bf9dbb3070399e55a", + "x-ms-client-request-id": "2994c805e90e695df960fa1766eedba4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c637716-b098-4cc2-846f-8597667d6704", + "apim-request-id": "7bfa7139-93c7-4d1d-aa33-0af5fbb01a71", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:23 GMT", + "Date": "Fri, 30 Oct 2020 13:21:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-30T17:33:18Z", - "lastUpdatedDateTime": "2020-09-30T17:33:22Z" + "createdDateTime": "2020-10-30T13:21:07Z", + "lastUpdatedDateTime": "2020-10-30T13:21:11Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f/analyzeResults/df43b03d-c5f8-4f86-a24d-9a0f0587bdbc", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ab71a8bd-e38c-41dd-8b9f-4677355e9ab5/analyzeResults/c8c5a552-fa0a-4bf6-8261-d84dbe4432bc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "55a05ac1aecfd49a1c013c4ab5439749", + "x-ms-client-request-id": "d836b34630ee92acecc33319d2b0afdf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4af1be58-4015-4bcb-9b51-9cd9097c7eff", + "apim-request-id": "4c77dca9-a7e5-4f7d-b5dc-1f0776e6f3fc", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:24 GMT", + "Date": "Fri, 30 Oct 2020 13:21:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-30T17:33:18Z", - "lastUpdatedDateTime": "2020-09-30T17:33:22Z" + "createdDateTime": "2020-10-30T13:21:07Z", + "lastUpdatedDateTime": "2020-10-30T13:21:11Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f/analyzeResults/df43b03d-c5f8-4f86-a24d-9a0f0587bdbc", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ab71a8bd-e38c-41dd-8b9f-4677355e9ab5/analyzeResults/c8c5a552-fa0a-4bf6-8261-d84dbe4432bc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ab881bb08590218e2829de127ca48f53", + "x-ms-client-request-id": "555dba8f25150c8bf9dbb3070399e55a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "784d5435-50bf-4d68-8f98-1b7aa618b461", + "apim-request-id": "cb6b7f84-dde4-4d7b-85f4-1f072d3b4731", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:25 GMT", + "Date": "Fri, 30 Oct 2020 13:21:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-30T17:33:18Z", - "lastUpdatedDateTime": "2020-09-30T17:33:22Z" + "createdDateTime": "2020-10-30T13:21:07Z", + "lastUpdatedDateTime": "2020-10-30T13:21:11Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a5a52642-fec3-450f-85ad-fc3f3796aa6f/analyzeResults/df43b03d-c5f8-4f86-a24d-9a0f0587bdbc", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/ab71a8bd-e38c-41dd-8b9f-4677355e9ab5/analyzeResults/c8c5a552-fa0a-4bf6-8261-d84dbe4432bc", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7858d9dd5a0fe11020883913e84057b6", + "x-ms-client-request-id": "55a05ac1aecfd49a1c013c4ab5439749", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b4696323-cc80-4ef1-b9af-33231202377d", + "apim-request-id": "f5858430-ac72-4131-8d30-8b59e2398da8", "Content-Length": "6054", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:26 GMT", + "Date": "Fri, 30 Oct 2020 13:21:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-30T17:33:18Z", - "lastUpdatedDateTime": "2020-09-30T17:33:25Z", + "createdDateTime": "2020-10-30T13:21:07Z", + "lastUpdatedDateTime": "2020-10-30T13:21:14Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -949,131 +886,147 @@ ], "documentResults": [ { - "docType": "custom:a5a52642-fec3-450f-85ad-fc3f3796aa6f", - "modelId": "a5a52642-fec3-450f-85ad-fc3f3796aa6f", + "docType": "custom:ab71a8bd-e38c-41dd-8b9f-4677355e9ab5", + "modelId": "ab71a8bd-e38c-41dd-8b9f-4677355e9ab5", "pageRange": [ 1, 1 ], "fields": { - "CompanyPhoneNumber": { + "Merchant": { "type": "string", - "valueString": "938-294-2949", - "text": "938-294-2949", + "valueString": "Hero Limited", + "text": "Hero Limited", "page": 1, "boundingBox": [ - 708.0, - 722.0, - 885.0, - 722.0, - 885.0, - 749.0, - 708.0, - 749.0 + 620.0, + 205.0, + 1075.0, + 205.0, + 1075.0, + 266.0, + 620.0, + 266.0 ], - "confidence": 1.0 + "confidence": 0.97 }, - "Signature": { + "Tax": { "type": "string", - "valueString": "Bernie Sanders", - "text": "Bernie Sanders", + "valueString": "$4.00", + "text": "$4.00", "page": 1, "boundingBox": [ - 489.0, - 1670.0, - 765.0, - 1670.0, - 765.0, - 1708.0, - 489.0, - 1708.0 + 1458.0, + 1615.0, + 1529.0, + 1615.0, + 1529.0, + 1643.0, + 1458.0, + 1643.0 ], - "confidence": 0.998 + "confidence": 0.994 }, - "Website": { + "CompanyName": { "type": "string", - "valueString": "www.herolimited.com", - "text": "www.herolimited.com", + "valueString": "Higgly Wiggly Books", + "text": "Higgly Wiggly Books", "page": 1, "boundingBox": [ - 273.0, - 393.0, - 531.0, - 393.0, - 531.0, - 418.0, - 273.0, - 418.0 + 375.0, + 646.0, + 629.0, + 646.0, + 629.0, + 679.0, + 375.0, + 679.0 ], "confidence": 0.95 }, - "VendorName": { + "PurchaseOrderNumber": { "type": "string", - "valueString": "Hillary Swank", - "text": "Hillary Swank", + "valueString": "948284", + "text": "948284", "page": 1, "boundingBox": [ - 349.0, - 609.0, - 521.0, - 609.0, - 521.0, - 639.0, - 349.0, - 639.0 + 1277.0, + 461.0, + 1376.0, + 461.0, + 1376.0, + 489.0, + 1277.0, + 489.0 ], - "confidence": 0.93 + "confidence": 0.94 }, - "PhoneNumber": { + "CompanyAddress": { "type": "string", - "valueString": "555-348-6512", - "text": "555-348-6512", + "valueString": "938 NE Burner Road Boulder City, CO 92848", + "text": "938 NE Burner Road Boulder City, CO 92848", "page": 1, "boundingBox": [ - 364.0, - 351.0, - 528.0, - 351.0, - 528.0, - 378.0, - 364.0, - 378.0 + 273.0, + 685.0, + 565.0, + 685.0, + 565.0, + 751.0, + 273.0, + 751.0 ], - "confidence": 0.89 + "confidence": 1.0 }, - "Merchant": { + "Signature": { "type": "string", - "valueString": "Hero Limited", - "text": "Hero Limited", + "valueString": "Bernie Sanders", + "text": "Bernie Sanders", "page": 1, "boundingBox": [ - 620.0, - 205.0, - 1075.0, - 205.0, - 1075.0, - 266.0, - 620.0, - 266.0 + 489.0, + 1670.0, + 765.0, + 1670.0, + 765.0, + 1708.0, + 489.0, + 1708.0 ], - "confidence": 0.97 + "confidence": 0.998 }, - "PurchaseOrderNumber": { + "Quantity": { + "type": "number", + "text": "20", + "page": 1, + "boundingBox": [ + 861.0, + 1094.0, + 892.0, + 1094.0, + 892.0, + 1119.0, + 861.0, + 1119.0 + ], + "confidence": 0.962 + }, + "Total": { "type": "string", - "valueString": "948284", - "text": "948284", + "valueString": "$144.00", + "text": "$144.00", "page": 1, "boundingBox": [ - 1277.0, - 461.0, - 1376.0, - 461.0, - 1376.0, - 489.0, - 1277.0, - 489.0 + 1427.0, + 1669.0, + 1529.0, + 1669.0, + 1529.0, + 1698.0, + 1427.0, + 1698.0 ], - "confidence": 0.94 + "confidence": 0.991 }, "Subtotal": { "type": "string", @@ -1092,55 +1045,56 @@ ], "confidence": 0.984 }, - "Quantity": { - "type": "number", - "text": "20", + "VendorName": { + "type": "string", + "valueString": "Hillary Swank", + "text": "Hillary Swank", "page": 1, "boundingBox": [ - 861.0, - 1094.0, - 892.0, - 1094.0, - 892.0, - 1119.0, - 861.0, - 1119.0 + 349.0, + 609.0, + 521.0, + 609.0, + 521.0, + 639.0, + 349.0, + 639.0 ], - "confidence": 0.962 + "confidence": 0.93 }, - "CompanyAddress": { + "Website": { "type": "string", - "valueString": "938 NE Burner Road Boulder City, CO 92848", - "text": "938 NE Burner Road Boulder City, CO 92848", + "valueString": "www.herolimited.com", + "text": "www.herolimited.com", "page": 1, "boundingBox": [ 273.0, - 685.0, - 565.0, - 685.0, - 565.0, - 751.0, + 393.0, + 531.0, + 393.0, + 531.0, + 418.0, 273.0, - 751.0 + 418.0 ], - "confidence": 1.0 + "confidence": 0.95 }, - "CompanyName": { + "PhoneNumber": { "type": "string", - "valueString": "Higgly Wiggly Books", - "text": "Higgly Wiggly Books", + "valueString": "555-348-6512", + "text": "555-348-6512", "page": 1, "boundingBox": [ - 375.0, - 646.0, - 629.0, - 646.0, - 629.0, - 679.0, - 375.0, - 679.0 + 364.0, + 351.0, + 528.0, + 351.0, + 528.0, + 378.0, + 364.0, + 378.0 ], - "confidence": 0.95 + "confidence": 0.89 }, "DatedAs": { "type": "string", @@ -1159,40 +1113,6 @@ ], "confidence": 0.99 }, - "Total": { - "type": "string", - "valueString": "$144.00", - "text": "$144.00", - "page": 1, - "boundingBox": [ - 1427.0, - 1669.0, - 1529.0, - 1669.0, - 1529.0, - 1698.0, - 1427.0, - 1698.0 - ], - "confidence": 0.991 - }, - "Tax": { - "type": "string", - "valueString": "$4.00", - "text": "$4.00", - "page": 1, - "boundingBox": [ - 1458.0, - 1615.0, - 1529.0, - 1615.0, - 1529.0, - 1643.0, - 1458.0, - 1643.0 - ], - "confidence": 0.994 - }, "Email": { "type": "string", "valueString": "accounts@herolimited.com", @@ -1209,6 +1129,23 @@ 503.0 ], "confidence": 1.0 + }, + "CompanyPhoneNumber": { + "type": "string", + "valueString": "938-294-2949", + "text": "938-294-2949", + "page": 1, + "boundingBox": [ + 708.0, + 722.0, + 885.0, + 722.0, + 885.0, + 749.0, + 708.0, + 749.0 + ], + "confidence": 1.0 } }, "docTypeConfidence": 1.0 @@ -1222,7 +1159,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "863023259" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(True)Async.json index 142dac71f6fa4..e01bafecb2b70 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CheckFormTypeinSubmodelAndRecognizedForm(True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f97540cb2d94e34f902e577b8ed7d853-4a5c4e99a0e0cc40-00", + "traceparent": "00-d1e6b9eeddeca24ba1487d8ad0494770-db9a289a23166243-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "31919e414c5d527a678dee62bffdac22", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "2ebb103c-cc91-4b15-b185-988e6c700106", + "apim-request-id": "93039029-aa28-4664-b342-a3316df87d13", "Content-Length": "0", - "Date": "Wed, 30 Sep 2020 17:33:52 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b4fecd48-2671-45f9-9dfa-1ebc28a6782c", + "Date": "Fri, 30 Oct 2020 13:24:04 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f9eac550-7eab-49e7-ac68-71da7921e50e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b4fecd48-2671-45f9-9dfa-1ebc28a6782c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f9eac550-7eab-49e7-ac68-71da7921e50e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "671becd0375ea2ea586f01e888b2fc14", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "49a37318-b62d-4235-8c45-ddca28f78f12", + "apim-request-id": "27b614d5-9aa1-4a4e-ab3b-d5f0825d3bfd", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:52 GMT", + "Date": "Fri, 30 Oct 2020 13:24:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "modelInfo": { - "modelId": "b4fecd48-2671-45f9-9dfa-1ebc28a6782c", + "modelId": "f9eac550-7eab-49e7-ac68-71da7921e50e", "status": "creating", - "createdDateTime": "2020-09-30T17:33:53Z", - "lastUpdatedDateTime": "2020-09-30T17:33:53Z" + "createdDateTime": "2020-10-30T13:24:04Z", + "lastUpdatedDateTime": "2020-10-30T13:24:04Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b4fecd48-2671-45f9-9dfa-1ebc28a6782c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f9eac550-7eab-49e7-ac68-71da7921e50e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b3cd1c24a9d47568c8b5178649ef91cc", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19919683-3a4a-453c-92ca-5ff13e3a63c9", + "apim-request-id": "1d2346aa-0af4-4924-a99d-3ae2caf97527", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:54 GMT", + "Date": "Fri, 30 Oct 2020 13:24:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "112" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "b4fecd48-2671-45f9-9dfa-1ebc28a6782c", + "modelId": "f9eac550-7eab-49e7-ac68-71da7921e50e", "status": "creating", - "createdDateTime": "2020-09-30T17:33:53Z", - "lastUpdatedDateTime": "2020-09-30T17:33:53Z" + "createdDateTime": "2020-10-30T13:24:04Z", + "lastUpdatedDateTime": "2020-10-30T13:24:04Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b4fecd48-2671-45f9-9dfa-1ebc28a6782c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f9eac550-7eab-49e7-ac68-71da7921e50e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f7b0408fd3370a7db4efd8ed4b92c9b4", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "da12d5c7-a749-4016-b5d3-29e290d6d0c2", + "apim-request-id": "3b5d19e3-6ff7-4f3b-b484-11abda566b47", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:55 GMT", + "Date": "Fri, 30 Oct 2020 13:24:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "b4fecd48-2671-45f9-9dfa-1ebc28a6782c", + "modelId": "f9eac550-7eab-49e7-ac68-71da7921e50e", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-30T17:33:53Z", - "lastUpdatedDateTime": "2020-09-30T17:33:55Z" + "createdDateTime": "2020-10-30T13:24:04Z", + "lastUpdatedDateTime": "2020-10-30T13:24:06Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,17 +228,17 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b4fecd48-2671-45f9-9dfa-1ebc28a6782c/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f9eac550-7eab-49e7-ac68-71da7921e50e/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "22", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7343182a9538bd47acbde9ace15b0abd-f945376dbeb96144-00", + "traceparent": "00-2705f761084a9147b76d4cfa7bd2e1d1-23d40677b9858b47-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a33dd991f82f274d83a69fa81f635968", "x-ms-return-client-request-id": "true" @@ -248,25 +248,25 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "426149ad-44aa-4484-9839-bc5d65c5c3cd", + "apim-request-id": "ae1a2847-0b09-43c6-bb7b-ed9ae181a3d2", "Content-Length": "0", - "Date": "Wed, 30 Sep 2020 17:33:55 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b4fecd48-2671-45f9-9dfa-1ebc28a6782c/analyzeresults/18fe9e11-f63b-41b7-a24a-526cede9d66a", + "Date": "Fri, 30 Oct 2020 13:24:07 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f9eac550-7eab-49e7-ac68-71da7921e50e/analyzeresults/12370c90-8fbe-4035-b9df-23fa48dc379f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-envoy-upstream-service-time": "70" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b4fecd48-2671-45f9-9dfa-1ebc28a6782c/analyzeResults/18fe9e11-f63b-41b7-a24a-526cede9d66a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f9eac550-7eab-49e7-ac68-71da7921e50e/analyzeResults/12370c90-8fbe-4035-b9df-23fa48dc379f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "475834de040250dd9ec3ffe5d07b2a35", "x-ms-return-client-request-id": "true" @@ -274,29 +274,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5e3a170-6405-4088-a47a-9188132b0a25", + "apim-request-id": "fc79db43-bb22-46a1-b050-5f822f1899ec", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:55 GMT", + "Date": "Fri, 30 Oct 2020 13:24:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-30T17:33:56Z", - "lastUpdatedDateTime": "2020-09-30T17:33:56Z" + "createdDateTime": "2020-10-30T13:24:07Z", + "lastUpdatedDateTime": "2020-10-30T13:24:07Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b4fecd48-2671-45f9-9dfa-1ebc28a6782c/analyzeResults/18fe9e11-f63b-41b7-a24a-526cede9d66a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f9eac550-7eab-49e7-ac68-71da7921e50e/analyzeResults/12370c90-8fbe-4035-b9df-23fa48dc379f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70f562ebedb1969df289739034d5ea50", "x-ms-return-client-request-id": "true" @@ -304,29 +304,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dfae6705-d03c-45b5-9de0-738d54ec1fa6", + "apim-request-id": "c01cbae9-f959-4d70-86c7-d09735d3bc7e", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:56 GMT", + "Date": "Fri, 30 Oct 2020 13:24:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-30T17:33:56Z", - "lastUpdatedDateTime": "2020-09-30T17:33:56Z" + "createdDateTime": "2020-10-30T13:24:07Z", + "lastUpdatedDateTime": "2020-10-30T13:24:08Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b4fecd48-2671-45f9-9dfa-1ebc28a6782c/analyzeResults/18fe9e11-f63b-41b7-a24a-526cede9d66a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f9eac550-7eab-49e7-ac68-71da7921e50e/analyzeResults/12370c90-8fbe-4035-b9df-23fa48dc379f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "160e6f9682398cb2fbed056bf9685608", "x-ms-return-client-request-id": "true" @@ -334,29 +334,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4c4ede1d-0a3a-41be-bcf5-2c1d100fd33d", + "apim-request-id": "5497fa66-2fe6-4fb0-a692-bca8e3955031", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:57 GMT", + "Date": "Fri, 30 Oct 2020 13:24:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-30T17:33:56Z", - "lastUpdatedDateTime": "2020-09-30T17:33:56Z" + "createdDateTime": "2020-10-30T13:24:07Z", + "lastUpdatedDateTime": "2020-10-30T13:24:08Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b4fecd48-2671-45f9-9dfa-1ebc28a6782c/analyzeResults/18fe9e11-f63b-41b7-a24a-526cede9d66a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f9eac550-7eab-49e7-ac68-71da7921e50e/analyzeResults/12370c90-8fbe-4035-b9df-23fa48dc379f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bdbd697ce86ef0b797c15479904c1cc9", "x-ms-return-client-request-id": "true" @@ -364,29 +364,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c259f7fb-44e0-4072-934d-8e381f567b78", + "apim-request-id": "35f2eb3b-0f94-4c2c-ba10-224d6b8bc805", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:58 GMT", + "Date": "Fri, 30 Oct 2020 13:24:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-30T17:33:56Z", - "lastUpdatedDateTime": "2020-09-30T17:33:56Z" + "createdDateTime": "2020-10-30T13:24:07Z", + "lastUpdatedDateTime": "2020-10-30T13:24:08Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b4fecd48-2671-45f9-9dfa-1ebc28a6782c/analyzeResults/18fe9e11-f63b-41b7-a24a-526cede9d66a", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f9eac550-7eab-49e7-ac68-71da7921e50e/analyzeResults/12370c90-8fbe-4035-b9df-23fa48dc379f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200930.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "614faed8136c68fbaf6874c4e8319d8a", "x-ms-return-client-request-id": "true" @@ -394,18 +394,18 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0dafbed-f174-49b5-b5ef-b41653a1f8ef", + "apim-request-id": "a9f4199b-8422-451b-97ff-31f2baf03b6a", "Content-Length": "6054", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 30 Sep 2020 17:33:59 GMT", + "Date": "Fri, 30 Oct 2020 13:24:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-30T17:33:56Z", - "lastUpdatedDateTime": "2020-09-30T17:33:59Z", + "createdDateTime": "2020-10-30T13:24:07Z", + "lastUpdatedDateTime": "2020-10-30T13:24:11Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -859,46 +859,46 @@ ], "documentResults": [ { - "docType": "custom:b4fecd48-2671-45f9-9dfa-1ebc28a6782c", - "modelId": "b4fecd48-2671-45f9-9dfa-1ebc28a6782c", + "docType": "custom:f9eac550-7eab-49e7-ac68-71da7921e50e", + "modelId": "f9eac550-7eab-49e7-ac68-71da7921e50e", "pageRange": [ 1, 1 ], "fields": { - "CompanyAddress": { + "Subtotal": { "type": "string", - "valueString": "938 NE Burner Road Boulder City, CO 92848", - "text": "938 NE Burner Road Boulder City, CO 92848", + "valueString": "$140.00", + "text": "$140.00", "page": 1, "boundingBox": [ - 273.0, - 685.0, - 565.0, - 685.0, - 565.0, - 751.0, - 273.0, - 751.0 + 1426.0, + 1572.0, + 1531.0, + 1572.0, + 1531.0, + 1599.0, + 1426.0, + 1599.0 ], - "confidence": 1.0 + "confidence": 0.984 }, - "CompanyPhoneNumber": { + "CompanyName": { "type": "string", - "valueString": "938-294-2949", - "text": "938-294-2949", + "valueString": "Higgly Wiggly Books", + "text": "Higgly Wiggly Books", "page": 1, "boundingBox": [ - 708.0, - 722.0, - 885.0, - 722.0, - 885.0, - 749.0, - 708.0, - 749.0 + 375.0, + 646.0, + 629.0, + 646.0, + 629.0, + 679.0, + 375.0, + 679.0 ], - "confidence": 1.0 + "confidence": 0.95 }, "PhoneNumber": { "type": "string", @@ -917,6 +917,74 @@ ], "confidence": 0.89 }, + "Signature": { + "type": "string", + "valueString": "Bernie Sanders", + "text": "Bernie Sanders", + "page": 1, + "boundingBox": [ + 489.0, + 1670.0, + 765.0, + 1670.0, + 765.0, + 1708.0, + 489.0, + 1708.0 + ], + "confidence": 0.998 + }, + "Tax": { + "type": "string", + "valueString": "$4.00", + "text": "$4.00", + "page": 1, + "boundingBox": [ + 1458.0, + 1615.0, + 1529.0, + 1615.0, + 1529.0, + 1643.0, + 1458.0, + 1643.0 + ], + "confidence": 0.994 + }, + "Merchant": { + "type": "string", + "valueString": "Hero Limited", + "text": "Hero Limited", + "page": 1, + "boundingBox": [ + 620.0, + 205.0, + 1075.0, + 205.0, + 1075.0, + 266.0, + 620.0, + 266.0 + ], + "confidence": 0.97 + }, + "CompanyAddress": { + "type": "string", + "valueString": "938 NE Burner Road Boulder City, CO 92848", + "text": "938 NE Burner Road Boulder City, CO 92848", + "page": 1, + "boundingBox": [ + 273.0, + 685.0, + 565.0, + 685.0, + 565.0, + 751.0, + 273.0, + 751.0 + ], + "confidence": 1.0 + }, "DatedAs": { "type": "string", "valueString": "12/20/2020", @@ -934,6 +1002,23 @@ ], "confidence": 0.99 }, + "Email": { + "type": "string", + "valueString": "accounts@herolimited.com", + "text": "accounts@herolimited.com", + "page": 1, + "boundingBox": [ + 164.0, + 479.0, + 478.0, + 479.0, + 478.0, + 503.0, + 164.0, + 503.0 + ], + "confidence": 1.0 + }, "Website": { "type": "string", "valueString": "www.herolimited.com", @@ -968,39 +1053,39 @@ ], "confidence": 0.991 }, - "Merchant": { + "CompanyPhoneNumber": { "type": "string", - "valueString": "Hero Limited", - "text": "Hero Limited", + "valueString": "938-294-2949", + "text": "938-294-2949", "page": 1, "boundingBox": [ - 620.0, - 205.0, - 1075.0, - 205.0, - 1075.0, - 266.0, - 620.0, - 266.0 + 708.0, + 722.0, + 885.0, + 722.0, + 885.0, + 749.0, + 708.0, + 749.0 ], - "confidence": 0.97 + "confidence": 1.0 }, - "Signature": { + "VendorName": { "type": "string", - "valueString": "Bernie Sanders", - "text": "Bernie Sanders", + "valueString": "Hillary Swank", + "text": "Hillary Swank", "page": 1, "boundingBox": [ - 489.0, - 1670.0, - 765.0, - 1670.0, - 765.0, - 1708.0, - 489.0, - 1708.0 + 349.0, + 609.0, + 521.0, + 609.0, + 521.0, + 639.0, + 349.0, + 639.0 ], - "confidence": 0.998 + "confidence": 0.93 }, "Quantity": { "type": "number", @@ -1034,91 +1119,6 @@ 489.0 ], "confidence": 0.94 - }, - "Tax": { - "type": "string", - "valueString": "$4.00", - "text": "$4.00", - "page": 1, - "boundingBox": [ - 1458.0, - 1615.0, - 1529.0, - 1615.0, - 1529.0, - 1643.0, - 1458.0, - 1643.0 - ], - "confidence": 0.994 - }, - "Subtotal": { - "type": "string", - "valueString": "$140.00", - "text": "$140.00", - "page": 1, - "boundingBox": [ - 1426.0, - 1572.0, - 1531.0, - 1572.0, - 1531.0, - 1599.0, - 1426.0, - 1599.0 - ], - "confidence": 0.984 - }, - "Email": { - "type": "string", - "valueString": "accounts@herolimited.com", - "text": "accounts@herolimited.com", - "page": 1, - "boundingBox": [ - 164.0, - 479.0, - 478.0, - 479.0, - 478.0, - 503.0, - 164.0, - 503.0 - ], - "confidence": 1.0 - }, - "VendorName": { - "type": "string", - "valueString": "Hillary Swank", - "text": "Hillary Swank", - "page": 1, - "boundingBox": [ - 349.0, - 609.0, - 521.0, - 609.0, - 521.0, - 639.0, - 349.0, - 639.0 - ], - "confidence": 0.93 - }, - "CompanyName": { - "type": "string", - "valueString": "Higgly Wiggly Books", - "text": "Higgly Wiggly Books", - "page": 1, - "boundingBox": [ - 375.0, - 646.0, - 629.0, - 646.0, - 629.0, - 679.0, - 375.0, - 679.0 - ], - "confidence": 0.95 } }, "docTypeConfidence": 1.0 @@ -1132,7 +1132,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "571329832" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel.json index 28477507a989a..d8658075623ac 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModel.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3fb19d4fbb71c848aafde2bf18bbfdc8-194ed7fca2dd1d4a-00", + "traceparent": "00-3c6417ac1ff6974883a393cbfb3e833d-5297250c768dd54f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9cace63dd7fb484735df7bd2bc53c17e", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "b113878b-c7a6-4683-9064-5bbd15800edd", + "apim-request-id": "f25da0e8-6376-4483-90c8-69881b9afb5e", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:19:56 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5", + "Date": "Fri, 30 Oct 2020 13:19:24 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "253" + "x-envoy-upstream-service-time": "330" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "60f6c21087923b363b46f4562924543b", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c36ffb30-1c31-49cb-9bb6-11ed0299a1cc", + "apim-request-id": "421c1d7a-e700-44ba-bcdc-aa2afa7d77a1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:19:56 GMT", + "Date": "Fri, 30 Oct 2020 13:19:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "modelInfo": { - "modelId": "f012a3d2-121c-4ae1-93f1-54f0bdffdaf5", + "modelId": "66d36b2f-bbe2-483b-965a-26300b8cb3e8", "status": "creating", - "createdDateTime": "2020-09-09T22:19:56Z", - "lastUpdatedDateTime": "2020-09-09T22:19:56Z" + "createdDateTime": "2020-10-30T13:19:24Z", + "lastUpdatedDateTime": "2020-10-30T13:19:24Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6020eb5d10f17059a51715bd4f128084", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54724a17-ef4e-49a5-8c97-3ffbc4100506", + "apim-request-id": "da4e1ed8-7d77-4ad0-90d3-b45ea6c4e9b6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:19:57 GMT", + "Date": "Fri, 30 Oct 2020 13:19:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "modelInfo": { - "modelId": "f012a3d2-121c-4ae1-93f1-54f0bdffdaf5", + "modelId": "66d36b2f-bbe2-483b-965a-26300b8cb3e8", "status": "creating", - "createdDateTime": "2020-09-09T22:19:56Z", - "lastUpdatedDateTime": "2020-09-09T22:19:56Z" + "createdDateTime": "2020-10-30T13:19:24Z", + "lastUpdatedDateTime": "2020-10-30T13:19:24Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "523219200df5b6a4af7060b4e2f01f10", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "26feaab0-c209-43f4-b1e8-a4daaf6cda59", + "apim-request-id": "d9e54b82-2e0e-4748-81b9-8a0b53504772", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:19:58 GMT", + "Date": "Fri, 30 Oct 2020 13:19:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "87" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "modelInfo": { - "modelId": "f012a3d2-121c-4ae1-93f1-54f0bdffdaf5", + "modelId": "66d36b2f-bbe2-483b-965a-26300b8cb3e8", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:19:56Z", - "lastUpdatedDateTime": "2020-09-09T22:19:58Z" + "createdDateTime": "2020-10-30T13:19:24Z", + "lastUpdatedDateTime": "2020-10-30T13:19:26Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,15 +228,15 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/copyAuthorization", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4f1b9df19cc8d74f9d9ec44c769c4a48-cae7dbf108cf0e4b-00", + "traceparent": "00-17d246be0a190746a5792fbca4d6fbf3-35368621ac386642-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d1743f8b6133ff8d6885ba7b7278ec29", "x-ms-return-client-request-id": "true" @@ -244,67 +244,67 @@ "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "04958654-79a3-48e9-a650-76e1fdae7f7b", + "apim-request-id": "aeff2081-52ac-49a1-9a33-5beb02d87f76", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:19:59 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/99b6c3e3-1b40-4971-b625-94e22c62a258", + "Date": "Fri, 30 Oct 2020 13:19:28 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e4100004-e84e-4795-b220-983fafee5a10", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258", + "modelId": "e4100004-e84e-4795-b220-983fafee5a10", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776399 + "expirationDateTimeTicks": 1604150368 } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copy", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copy", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", - "Content-Length": "348", + "Content-Length": "352", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e1d9ddc88b83f349a21941e0370d84d6-abefd8443693c04b-00", + "traceparent": "00-fb27e837ba24d540b529020da0fa7f3e-f063d31dbe48de46-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "10366fc601f250464669b080b0a48db4", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "targetResourceRegion": "westus2", + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "targetResourceRegion": "westcentralus", "copyAuthorization": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258", + "modelId": "e4100004-e84e-4795-b220-983fafee5a10", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776399 + "expirationDateTimeTicks": 1604150368 } }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a18d2e0b-7b9c-4e85-ad35-075240536852", + "apim-request-id": "b5ec9800-d76c-40cb-a1a1-705d1605043f", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:19:59 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyresults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", + "Date": "Fri, 30 Oct 2020 13:19:28 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyresults/52f37001-728e-4e0e-b086-19d41f30b39e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "156" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0f3204f8ae9dbe518b32e96f52294437", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ee0c2837-0e7b-4404-ab80-2c10c3317d20", + "apim-request-id": "bf82d5da-5fb3-4e49-af0d-39210f6ae4b9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:19:59 GMT", + "Date": "Fri, 30 Oct 2020 13:19:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", + "createdDateTime": "2020-10-30T13:19:29Z", + "lastUpdatedDateTime": "2020-10-30T13:19:29Z", "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" + "modelId": "e4100004-e84e-4795-b220-983fafee5a10" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "72ee36830eba891ef8238ac9b10c4fc3", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd53ad9a-c50c-4be5-a265-37ebededfbad", + "apim-request-id": "105e47cd-e2bc-4191-b977-f185333290bc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:00 GMT", + "Date": "Fri, 30 Oct 2020 13:19:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", + "createdDateTime": "2020-10-30T13:19:29Z", + "lastUpdatedDateTime": "2020-10-30T13:19:29Z", "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" + "modelId": "e4100004-e84e-4795-b220-983fafee5a10" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6d8305f8dc45178b1e7785bf18d7fe1d", "x-ms-return-client-request-id": "true" @@ -378,32 +378,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fbe47c2f-48ea-4853-b8a2-0874497edc4a", + "apim-request-id": "393365eb-e151-4d72-b9b0-d54bc0cec59b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:01 GMT", + "Date": "Fri, 30 Oct 2020 13:19:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", + "createdDateTime": "2020-10-30T13:19:29Z", + "lastUpdatedDateTime": "2020-10-30T13:19:29Z", "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" + "modelId": "e4100004-e84e-4795-b220-983fafee5a10" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "79fc78251ab6e9fae5a9177923870d7e", "x-ms-return-client-request-id": "true" @@ -411,32 +411,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "900233b1-edb6-4ffe-8300-fffc06ad5abd", + "apim-request-id": "04e47be9-1f5f-4598-86ef-e57bceb5a14d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:02 GMT", + "Date": "Fri, 30 Oct 2020 13:19:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", + "createdDateTime": "2020-10-30T13:19:29Z", + "lastUpdatedDateTime": "2020-10-30T13:19:29Z", "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" + "modelId": "e4100004-e84e-4795-b220-983fafee5a10" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4c7725e2d6a5a7f2abd75443895e7121", "x-ms-return-client-request-id": "true" @@ -444,32 +444,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f650ae53-8a07-421b-ba3c-571704230989", + "apim-request-id": "91f99852-36e4-41e3-968b-6465b65a4dd5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:03 GMT", + "Date": "Fri, 30 Oct 2020 13:19:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", + "createdDateTime": "2020-10-30T13:19:29Z", + "lastUpdatedDateTime": "2020-10-30T13:19:29Z", "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" + "modelId": "e4100004-e84e-4795-b220-983fafee5a10" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "38a46d25d60fdd0d0b99889bc512f397", "x-ms-return-client-request-id": "true" @@ -477,32 +477,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56d71571-d13e-48dc-9341-e5338cc22623", + "apim-request-id": "fcfa510b-7695-45d2-a46d-09a93c0a1b44", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:04 GMT", + "Date": "Fri, 30 Oct 2020 13:19:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", + "createdDateTime": "2020-10-30T13:19:29Z", + "lastUpdatedDateTime": "2020-10-30T13:19:29Z", "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" + "modelId": "e4100004-e84e-4795-b220-983fafee5a10" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f2dc066ab1604e788655cedec6b66086", "x-ms-return-client-request-id": "true" @@ -510,32 +510,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c0577dc-a4eb-4778-bf1a-49276a94a72c", + "apim-request-id": "e65a62e7-b879-4d5e-921d-f4ceadbccb92", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:05 GMT", + "Date": "Fri, 30 Oct 2020 13:19:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", + "createdDateTime": "2020-10-30T13:19:29Z", + "lastUpdatedDateTime": "2020-10-30T13:19:29Z", "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" + "modelId": "e4100004-e84e-4795-b220-983fafee5a10" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b653f538d4e30c6e1899400b4e56e298", "x-ms-return-client-request-id": "true" @@ -543,32 +543,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56c50ccf-9781-4a30-837c-0509c09917f1", + "apim-request-id": "4eb0c614-3760-48f5-84e2-6b736e9005f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:06 GMT", + "Date": "Fri, 30 Oct 2020 13:19:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", + "createdDateTime": "2020-10-30T13:19:29Z", + "lastUpdatedDateTime": "2020-10-30T13:19:29Z", "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" + "modelId": "e4100004-e84e-4795-b220-983fafee5a10" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "83d8bce37f8174c1f555b2ba082e1654", "x-ms-return-client-request-id": "true" @@ -576,32 +576,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e521946-35a5-4b81-aa65-3f31b761a3fa", + "apim-request-id": "d139a93c-eef0-4d6f-b666-87e51ee9cbac", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:07 GMT", + "Date": "Fri, 30 Oct 2020 13:19:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", + "createdDateTime": "2020-10-30T13:19:29Z", + "lastUpdatedDateTime": "2020-10-30T13:19:29Z", "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" + "modelId": "e4100004-e84e-4795-b220-983fafee5a10" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8/copyResults/52f37001-728e-4e0e-b086-19d41f30b39e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cf6301393dbe96b397d0dac6706c002f", "x-ms-return-client-request-id": "true" @@ -609,343 +609,46 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1cae6bdd-24fa-4dbc-88b9-d2e5c0c4211e", + "apim-request-id": "e842434f-224c-41f2-8f39-98b31494cc0b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:08 GMT", + "Date": "Fri, 30 Oct 2020 13:19:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", - "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "09fb3573dddeb90434dfc18e21b404e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "71de803e-0ae6-43b2-bab7-f1990a93c0b6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", - "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4cd2ec8312f3a6da0942ebb1a5fa0388", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e1a921b1-2cdd-4969-b7bc-bc70ec613003", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", - "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d34782540c335c76fca99bde7b2574e3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6e1144d0-7fce-41ae-a090-553ceaffc93c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", - "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "8443f0ccb49a603c5a55009bf1531439", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a2997b81-c56f-4bcb-8bcd-bf11534829b5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", - "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9e3a39db316c76b575754f4976fb2ae3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "298d43ea-bf05-46f5-9875-bccd001c8896", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:13 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", - "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b4e508cd7fb79fed46e678de0cda6aa9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "741a7309-8704-416f-997e-56dbeae78037", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", - "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "42026295d5eb9a763acc0e2465f3e95e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2138d202-28ad-4ce0-a34d-c88dda624c7b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:15 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", - "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e9cd1c2a606d5c814b9a5885b8d76a9a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c3f18d14-ff63-474d-a02e-4a6a2c2f2cc1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:19:59Z", - "lastUpdatedDateTime": "2020-09-09T22:19:59Z", - "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5/copyResults/d3efbbe8-9ceb-4c4d-b8d9-827acdca9489", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "14b3a50be7f8f8f8914a79eb70c83a52", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "907a014e-1d37-404a-8981-d6e538ffaa66", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:20:18.5510762Z", - "lastUpdatedDateTime": "2020-09-09T22:20:18.5510763Z", + "createdDateTime": "2020-10-30T13:19:40.3050036Z", + "lastUpdatedDateTime": "2020-10-30T13:19:40.3050039Z", "copyResult": { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258" + "modelId": "e4100004-e84e-4795-b220-983fafee5a10" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f012a3d2-121c-4ae1-93f1-54f0bdffdaf5", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/66d36b2f-bbe2-483b-965a-26300b8cb3e8", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-420bfcd68e4a0244a8147f0e7535cfb7-b333a190469d1d44-00", + "traceparent": "00-485859d10b6f9c4da3e6339ba5df2ec2-c50c22903a463747-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "efb319fc800c353be0a6f7507cf1e263", + "x-ms-client-request-id": "09fb3573dddeb90434dfc18e21b404e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "083a901c-6e8e-4c24-8888-878bd9701d26", + "apim-request-id": "1159adc6-cfad-43d1-81ef-96608575ae6c", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:20:18 GMT", + "Date": "Fri, 30 Oct 2020 13:19:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "98" }, "ResponseBody": [] } @@ -953,9 +656,9 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westus2", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", "RandomSeed": "338750905" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelAsync.json index 002bfd89b85ae..9364fdca5b73f 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-14e263204feaaf42b4867237b779fd7b-9886cd95061f944a-00", + "traceparent": "00-0b659444f972fc40824b9e5b97d8b316-0fd0fd0cf9d3bd46-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7ec0752ff6d8bf4c284be304b6c10a29", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "a776281e-7720-4a4a-be7b-71b4bfec4f07", + "apim-request-id": "7732388c-2397-40ef-bac4-3b2715efcea3", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:23:10 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79", + "Date": "Fri, 30 Oct 2020 13:22:18 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "198" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5394ae0f16206d4675cbc09496e4c32f", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f2b05626-f1b6-497d-9ecc-32869aea8f8d", + "apim-request-id": "b0991107-063f-49b1-8445-270a22037f9c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:10 GMT", + "Date": "Fri, 30 Oct 2020 13:22:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "fd5db5fc-b115-49be-b744-fe1bac45ec79", + "modelId": "e6f18909-6770-4cac-83c9-2dd20a90aec7", "status": "creating", - "createdDateTime": "2020-09-09T22:23:10Z", - "lastUpdatedDateTime": "2020-09-09T22:23:10Z" + "createdDateTime": "2020-10-30T13:22:18Z", + "lastUpdatedDateTime": "2020-10-30T13:22:18Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4338f56301c572b00595988fd897d996", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dfc36961-50fd-4700-bf41-0b524cb419d3", + "apim-request-id": "5b13b57d-8f06-43fe-8a46-2af4fdbaf076", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:11 GMT", + "Date": "Fri, 30 Oct 2020 13:22:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "fd5db5fc-b115-49be-b744-fe1bac45ec79", + "modelId": "e6f18909-6770-4cac-83c9-2dd20a90aec7", "status": "creating", - "createdDateTime": "2020-09-09T22:23:10Z", - "lastUpdatedDateTime": "2020-09-09T22:23:10Z" + "createdDateTime": "2020-10-30T13:22:18Z", + "lastUpdatedDateTime": "2020-10-30T13:22:18Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "32558181864319172e52090d36b72844", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f0a39e1-f459-4914-adc5-e5a34be3b53f", + "apim-request-id": "c098a9c1-e5db-4af9-a6a5-5a62d2271fa1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:12 GMT", + "Date": "Fri, 30 Oct 2020 13:22:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "modelInfo": { - "modelId": "fd5db5fc-b115-49be-b744-fe1bac45ec79", + "modelId": "e6f18909-6770-4cac-83c9-2dd20a90aec7", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:23:10Z", - "lastUpdatedDateTime": "2020-09-09T22:23:12Z" + "createdDateTime": "2020-10-30T13:22:18Z", + "lastUpdatedDateTime": "2020-10-30T13:22:19Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,15 +228,15 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/copyAuthorization", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7c3346472fa15247821c2ddc6619666e-a090f81a0d967b47-00", + "traceparent": "00-1a20e6dcb3f66d4c8fc985beb605880b-5d554ee0fa0a2340-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c1a1b487c7880d63fd224d8b7db795dd", "x-ms-return-client-request-id": "true" @@ -244,67 +244,67 @@ "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "fd6cafaf-d766-49d0-a3f3-7fa404348294", + "apim-request-id": "8b00a3db-a96e-4384-8174-d16b3b2d1497", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:12 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/028fea9c-452b-424b-b013-131263f59718", + "Date": "Fri, 30 Oct 2020 13:22:21 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/43be25f8-aa98-4523-ab6b-120e4b29c7bf", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "206" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { - "modelId": "028fea9c-452b-424b-b013-131263f59718", + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776592 + "expirationDateTimeTicks": 1604150541 } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79/copy", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copy", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", - "Content-Length": "348", + "Content-Length": "352", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cac259516eeaa7429d5e3dcd2f89b8bc-3f029786b1ab2043-00", + "traceparent": "00-f3c9b1173531ce4e8f01961aaf6117cc-2688eb47e624754d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "141329f1908fddebdd1f1573f8a33b4d", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "targetResourceRegion": "westus2", + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "targetResourceRegion": "westcentralus", "copyAuthorization": { - "modelId": "028fea9c-452b-424b-b013-131263f59718", + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776592 + "expirationDateTimeTicks": 1604150541 } }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d125240e-d04c-4411-8ef9-cac47293317f", + "apim-request-id": "be819698-4739-4bf7-902f-6119ba4a653f", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:23:12 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79/copyresults/cddc5f5f-6efc-461b-b8ab-1410c4e41b8e", + "Date": "Fri, 30 Oct 2020 13:22:21 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyresults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79/copyResults/cddc5f5f-6efc-461b-b8ab-1410c4e41b8e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2408546c18f6b90d1e483521388c9b77", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9d1b3a18-bdc3-420b-9438-911d9c67cc73", + "apim-request-id": "e3d4cca1-cd8e-42de-ba07-1f795bc0f202", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:12 GMT", + "Date": "Fri, 30 Oct 2020 13:22:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:23:13Z", - "lastUpdatedDateTime": "2020-09-09T22:23:13Z", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", "copyResult": { - "modelId": "028fea9c-452b-424b-b013-131263f59718" + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79/copyResults/cddc5f5f-6efc-461b-b8ab-1410c4e41b8e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0d1b2bbd13a4f7b4c9c4e369b2f01459", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "45ff56b7-7871-4ed4-bef0-a3794aa3daec", + "apim-request-id": "b4c0475a-1e8b-42c4-82d4-dac452cace4b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:13 GMT", + "Date": "Fri, 30 Oct 2020 13:22:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:23:13Z", - "lastUpdatedDateTime": "2020-09-09T22:23:13Z", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", "copyResult": { - "modelId": "028fea9c-452b-424b-b013-131263f59718" + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79/copyResults/cddc5f5f-6efc-461b-b8ab-1410c4e41b8e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "281e00e671aed8e71b59f6465bc9a451", "x-ms-return-client-request-id": "true" @@ -378,9 +378,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1635fb8e-f20e-4341-bc03-b7575358956c", + "apim-request-id": "3ee79e52-0597-4fac-aece-4b9a97435a23", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:14 GMT", + "Date": "Fri, 30 Oct 2020 13:22:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -388,22 +388,22 @@ }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:23:13Z", - "lastUpdatedDateTime": "2020-09-09T22:23:13Z", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", "copyResult": { - "modelId": "028fea9c-452b-424b-b013-131263f59718" + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79/copyResults/cddc5f5f-6efc-461b-b8ab-1410c4e41b8e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cdb59d832e8759a9a0115a3134a4072d", "x-ms-return-client-request-id": "true" @@ -411,9 +411,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6aee9c7a-7b48-4868-8fa5-0f3321de5c7c", + "apim-request-id": "7982f65b-6722-49bc-a37c-279448a2465b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:15 GMT", + "Date": "Fri, 30 Oct 2020 13:22:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -421,22 +421,22 @@ }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:23:13Z", - "lastUpdatedDateTime": "2020-09-09T22:23:13Z", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", "copyResult": { - "modelId": "028fea9c-452b-424b-b013-131263f59718" + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79/copyResults/cddc5f5f-6efc-461b-b8ab-1410c4e41b8e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "383bdb33726e4cc84342f14b1c6e9bff", "x-ms-return-client-request-id": "true" @@ -444,32 +444,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "781ea994-2af9-4fae-8315-d041acaab31a", + "apim-request-id": "4b42ae60-0b72-4085-983e-b51b373425e0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:16 GMT", + "Date": "Fri, 30 Oct 2020 13:22:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:23:13Z", - "lastUpdatedDateTime": "2020-09-09T22:23:13Z", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", "copyResult": { - "modelId": "028fea9c-452b-424b-b013-131263f59718" + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79/copyResults/cddc5f5f-6efc-461b-b8ab-1410c4e41b8e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "14e5921f473ab7d156c4889d16b6a476", "x-ms-return-client-request-id": "true" @@ -477,32 +477,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "860f1153-0493-4d25-b694-85ee95b8e455", + "apim-request-id": "ba210926-8ebe-4ab1-b26d-a77ec942d242", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:17 GMT", + "Date": "Fri, 30 Oct 2020 13:22:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:23:13Z", - "lastUpdatedDateTime": "2020-09-09T22:23:13Z", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", "copyResult": { - "modelId": "028fea9c-452b-424b-b013-131263f59718" + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79/copyResults/cddc5f5f-6efc-461b-b8ab-1410c4e41b8e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7f13c9516c8e10e3d56989453d5e3c31", "x-ms-return-client-request-id": "true" @@ -510,32 +510,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cbaed402-3d0a-4a7a-8c33-ec44e2b37146", + "apim-request-id": "644862d3-0823-4adc-95b5-af888f0b75e2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:18 GMT", + "Date": "Fri, 30 Oct 2020 13:22:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:23:13Z", - "lastUpdatedDateTime": "2020-09-09T22:23:13Z", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", "copyResult": { - "modelId": "028fea9c-452b-424b-b013-131263f59718" + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79/copyResults/cddc5f5f-6efc-461b-b8ab-1410c4e41b8e", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a2125b75f3bfebf30984e1a9ea2a368d", "x-ms-return-client-request-id": "true" @@ -543,43 +543,274 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad99ca99-654c-48cd-a8df-ff204f4d2fd0", + "apim-request-id": "e8ba7c53-c63d-4aee-92c9-27e51baf0933", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:22:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "copyResult": { + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "53f97a9e1b5ab370aed43ed0bd8c79f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d9b96797-5cb7-4b78-9ff2-17828f56282a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:22:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "copyResult": { + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ba28568801a45db7d52776098a3a26aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "01ebad4b-a531-4bab-bc9d-b1d14a265430", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:22:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "copyResult": { + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c2a6fc33e86459d7ea5ef4ebb4222d7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2b51fc1f-df5c-47f6-bf02-c22545178200", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:22:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "copyResult": { + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9320e90a7b029ce9c39b7e32a5672873", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7d99625e-c473-4985-b798-78c6a1ef133d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:22:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "copyResult": { + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c19d94adb7e5a0937fcecf450dcba8b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "79272b69-5def-4869-8578-2016c32d82f6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:19 GMT", + "Date": "Fri, 30 Oct 2020 13:22:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "15" }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "copyResult": { + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a1fff9fa921ab7a8130affc86aa5b483", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "74c39ccf-2bfa-4a1b-83d2-2ea28021b064", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:22:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:22:21Z", + "lastUpdatedDateTime": "2020-10-30T13:22:21Z", + "copyResult": { + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7/copyResults/06454371-dbac-4ec5-bab2-1f6ec34fb61a", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "203d80366c85539755801434aca48ef7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d700be51-4d25-4dcc-a2b3-98ecf528de68", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:22:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:23:19.7277077Z", - "lastUpdatedDateTime": "2020-09-09T22:23:19.7277081Z", + "createdDateTime": "2020-10-30T13:22:40.9291689Z", + "lastUpdatedDateTime": "2020-10-30T13:22:40.9291692Z", "copyResult": { - "modelId": "028fea9c-452b-424b-b013-131263f59718" + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fd5db5fc-b115-49be-b744-fe1bac45ec79", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/e6f18909-6770-4cac-83c9-2dd20a90aec7", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c4a67e48075b544ea04e402d5b254abb-7c9fda972107834c-00", + "traceparent": "00-36322fe69c675b46aded769e4852c802-9077b68b15972b43-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "53f97a9e1b5ab370aed43ed0bd8c79f8", + "x-ms-client-request-id": "ab38cbf286671a59ebe5aedbb8ca35d9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "f45da028-d8a2-4642-b0bc-2c4cc25fe357", + "apim-request-id": "9dbec6b4-e745-43b1-bc73-fb2e12ed2300", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:23:19 GMT", + "Date": "Fri, 30 Oct 2020 13:22:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "31" @@ -590,9 +821,9 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westus2", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", "RandomSeed": "77527080" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelError.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelError.json index a48a37a717a48..e9b4c1e2271f0 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelError.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelError.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/00000000-0000-0000-0000-000000000000/copy", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00000000-0000-0000-0000-000000000000/copy", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "214", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-24f703237ae51e4f9a9488e82e543afb-a5884a06682e4d48-00", + "traceparent": "00-4193bd0383b681488da3255bbca5e430-9d552a2e3d03444f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7234d3a792df40a7c3d75cebdd459d08", "x-ms-return-client-request-id": "true" @@ -27,13 +27,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "f2fa17a9-30d8-4398-aaff-caa316eacd96", + "apim-request-id": "8d9cba57-5f47-4f7a-9025-3503b28d653f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:18 GMT", + "Date": "Fri, 30 Oct 2020 13:19:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "error": { @@ -45,9 +45,9 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westus2", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", "RandomSeed": "1579481069" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelErrorAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelErrorAsync.json index 82aa0ef83e25f..b6905dc93d394 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelErrorAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/CopyModelErrorAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/00000000-0000-0000-0000-000000000000/copy", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00000000-0000-0000-0000-000000000000/copy", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "214", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-810d32e0ba6c7a488b570346cbfff8a1-5000f869ebf40148-00", + "traceparent": "00-14c663634c281a4f95ea5a23959dc6cf-fd3fb30a0c89c547-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "55a5045901c610119509b453288c8414", "x-ms-return-client-request-id": "true" @@ -27,13 +27,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "def85e20-8d94-455b-b031-394764c8e3be", + "apim-request-id": "ca827583-641d-418e-b039-863a7d4edeac", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:19 GMT", + "Date": "Fri, 30 Oct 2020 13:22:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "error": { @@ -45,9 +45,9 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westus2", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", "RandomSeed": "295461224" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/DeleteModelFailsWhenModelDoesNotExist.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/DeleteModelFailsWhenModelDoesNotExist.json index a4231dfd2313e..aecdb0e061086 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/DeleteModelFailsWhenModelDoesNotExist.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/DeleteModelFailsWhenModelDoesNotExist.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/00000000-0000-0000-0000-000000000000", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00000000-0000-0000-0000-000000000000", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fb600f15da36194e90245c2e9094c964-a9bba56c7d0df643-00", + "traceparent": "00-7f207a620a33944ab9c509661cb09f1c-af7095dbff8ff64e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "74bd25d4fb24495e5b89ccab926b5a22", "x-ms-return-client-request-id": "true" @@ -17,13 +17,13 @@ "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "37f1c319-c6d2-431b-83d3-6d49b7213c2a", + "apim-request-id": "4bd45728-6efa-40d1-b889-44716563d948", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:18 GMT", + "Date": "Fri, 30 Oct 2020 13:19:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "error": { @@ -35,7 +35,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1608884802" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/DeleteModelFailsWhenModelDoesNotExistAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/DeleteModelFailsWhenModelDoesNotExistAsync.json index a67f56516b74a..bb3e4382d0ec8 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/DeleteModelFailsWhenModelDoesNotExistAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/DeleteModelFailsWhenModelDoesNotExistAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/00000000-0000-0000-0000-000000000000", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/00000000-0000-0000-0000-000000000000", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a6717443dcf7e949bae019d300ee51b2-da2f6839d46b2f4b-00", + "traceparent": "00-af705ca00f7969448697ceafa958b19d-7c8a3bef028bd04a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "81907fa894199f3e0007d557b4f253d9", "x-ms-return-client-request-id": "true" @@ -17,13 +17,13 @@ "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "2fc13715-a2dd-4e9d-9f37-4786766c3da8", + "apim-request-id": "944dd9ed-baa5-435a-961d-0e0a4c1f5757", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:19 GMT", + "Date": "Fri, 30 Oct 2020 13:22:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "error": { @@ -35,7 +35,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "738140350" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCannotAuthenticateWithFakeApiKey.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCannotAuthenticateWithFakeApiKey.json index 22b315bd721b8..9fc8f6b625e64 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCannotAuthenticateWithFakeApiKey.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCannotAuthenticateWithFakeApiKey.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?op=summary", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-72581d5f7688984c976b9fb74489be15-9375d487a51fba45-00", + "traceparent": "00-355ae0a496c94e4388bd9ec728734cba-66e17f7f1cde5544-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3c17c7c32247a33d33c1f1a7fdb035a3", "x-ms-return-client-request-id": "true" @@ -18,13 +18,13 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Length": "224", - "Date": "Wed, 09 Sep 2020 22:20:41 GMT" + "Date": "Fri, 30 Oct 2020 13:19:41 GMT" }, "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" } ], "Variables": { - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1360927567" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCannotAuthenticateWithFakeApiKeyAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCannotAuthenticateWithFakeApiKeyAsync.json index de6fc3386c519..f594dcd745236 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCannotAuthenticateWithFakeApiKeyAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/FormTrainingClientCannotAuthenticateWithFakeApiKeyAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?op=summary", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-378c5f972b6f2b48981ad46ad472b887-c7b57dd038d8eb48-00", + "traceparent": "00-7530dac866c68945afa73d14442ff502-60c6e81e1b899e44-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7b96ef0c32cd4d66d37ba67209808997", "x-ms-return-client-request-id": "true" @@ -18,13 +18,13 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Length": "224", - "Date": "Wed, 09 Sep 2020 22:23:36 GMT" + "Date": "Fri, 30 Oct 2020 13:22:40 GMT" }, "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" } ], "Variables": { - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1263304015" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/GetCopyAuthorization.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/GetCopyAuthorization.json index 76ee749cdae33..8567aabdaef8a 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/GetCopyAuthorization.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/GetCopyAuthorization.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/copyAuthorization", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-260fffb837460241b56d91be57a8bde4-2842eb8a8a25964f-00", + "traceparent": "00-e8c6bebe30265445929d12eddb3856a1-bbba326336614449-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2de0f1bf141b6e0c562209c2a1148cc8", "x-ms-return-client-request-id": "true" @@ -17,27 +17,27 @@ "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "bc73facc-6512-4c6c-87e5-2c8b847465b9", + "apim-request-id": "ac9434a3-d854-4687-b939-c33d4dba7539", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:41 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/26581cd0-1275-4e90-b0d5-7a927cbd84a2", + "Date": "Fri, 30 Oct 2020 13:19:41 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/551c272c-ff8f-493e-b234-a719bc35ee23", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": { - "modelId": "26581cd0-1275-4e90-b0d5-7a927cbd84a2", + "modelId": "551c272c-ff8f-493e-b234-a719bc35ee23", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776441 + "expirationDateTimeTicks": 1604150382 } } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westus2", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", "RandomSeed": "2018406897" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/GetCopyAuthorizationAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/GetCopyAuthorizationAsync.json index 5b097d591a293..3fb3db894b59c 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/GetCopyAuthorizationAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/GetCopyAuthorizationAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/copyAuthorization", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5d651e3dcec9fa4da1ddeec5b9358733-245fe00ce6482546-00", + "traceparent": "00-7fe8f69df24928449fd621212d0df981-668ce5e029ef014c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f393d78ff3049f55186e608c03ea8f94", "x-ms-return-client-request-id": "true" @@ -17,27 +17,27 @@ "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "9e4862af-e198-4b7f-a977-72a4a2555358", + "apim-request-id": "e6f0ecb2-6188-4163-9cf4-b26be448e14c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:36 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/67e57c2c-d232-4245-a4a8-8c42b4e37582", + "Date": "Fri, 30 Oct 2020 13:22:42 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2800da27-3d69-4333-bd95-e9b217732660", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "189" + "x-envoy-upstream-service-time": "108" }, "ResponseBody": { - "modelId": "67e57c2c-d232-4245-a4a8-8c42b4e37582", + "modelId": "2800da27-3d69-4333-bd95-e9b217732660", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776616 + "expirationDateTimeTicks": 1604150562 } } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westus2", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", "RandomSeed": "1999112030" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/SerializeDeserializeCopyAuthorizationAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/SerializeDeserializeCopyAuthorizationAsync.json index e45022ac6244e..c7f05dc8d1862 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/SerializeDeserializeCopyAuthorizationAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/SerializeDeserializeCopyAuthorizationAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/copyAuthorization", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ab530dd833837b46a78696afdd523ea6-29cd98220b71514b-00", + "traceparent": "00-656a38b436a44449aba437e6e9e96c68-41d1a8925adfdc45-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "152ce9a4c550669a66c4fc6240c440a5", "x-ms-return-client-request-id": "true" @@ -17,27 +17,27 @@ "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "9f774f0c-127f-4f72-9000-49d60a5114d1", + "apim-request-id": "650a2244-7021-49c0-b15d-4f1799cc123b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:41 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b29c550b-6b80-43f8-bc95-cf0655cbe4fb", + "Date": "Fri, 30 Oct 2020 13:19:42 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/34d0ed4c-634b-4626-ae4a-4472f3740b79", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "124" }, "ResponseBody": { - "modelId": "b29c550b-6b80-43f8-bc95-cf0655cbe4fb", + "modelId": "34d0ed4c-634b-4626-ae4a-4472f3740b79", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776441 + "expirationDateTimeTicks": 1604150383 } } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westus2", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", "RandomSeed": "2144268147" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/SerializeDeserializeCopyAuthorizationAsyncAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/SerializeDeserializeCopyAuthorizationAsyncAsync.json index e79afc1711f5d..909530bc2b034 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/SerializeDeserializeCopyAuthorizationAsyncAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/SerializeDeserializeCopyAuthorizationAsyncAsync.json @@ -1,15 +1,15 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/copyAuthorization", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d2d091db05e9d44eb632350d13413eb0-241b4e5c71f65a42-00", + "traceparent": "00-b8141b0733ed5a459d2eb18cc56b76c3-73249a30e9874447-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f02193b0b0d51c10b60144f1274ddc25", "x-ms-return-client-request-id": "true" @@ -17,27 +17,27 @@ "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "fcec9677-d549-4eb0-a63f-2e1267c21166", + "apim-request-id": "1d7bbe04-f55c-4352-a16b-bafec3646d18", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:36 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/a767b61b-330f-4e9a-ae21-2bdc75c3d7d6", + "Date": "Fri, 30 Oct 2020 13:22:42 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/362283cc-f24c-49d6-9bf1-a711a9621e65", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "195" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { - "modelId": "a767b61b-330f-4e9a-ae21-2bdc75c3d7d6", + "modelId": "362283cc-f24c-49d6-9bf1-a711a9621e65", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776616 + "expirationDateTimeTicks": 1604150562 } } ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westus2", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", "RandomSeed": "243955414" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCopyModelFailsWithWrongRegion.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCopyModelFailsWithWrongRegion.json index 64d13b36efb46..9c7c895b646bf 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCopyModelFailsWithWrongRegion.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCopyModelFailsWithWrongRegion.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0c902150f9beca48a9f152afe0bc257f-5557f794f3d2ef4d-00", + "traceparent": "00-dd653049945d324e984b72ddec6a0068-a483da6a45dd1947-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c77b688088d378b45533f0cc07350e4f", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "2ffbd701-5bbb-4b9e-b96b-988ed0ff5873", + "apim-request-id": "102e0ebf-d102-4f61-946f-f735c0804c87", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:20:41 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/725bbf9d-7c7d-4e3f-8898-d24d6d0e3357", + "Date": "Fri, 30 Oct 2020 13:19:43 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "141" + "x-envoy-upstream-service-time": "112" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/725bbf9d-7c7d-4e3f-8898-d24d6d0e3357?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f16b9868e6f93ca08680c4eedcc4e170", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5c972d6-bd80-41a7-8cac-0acab6ccdc91", + "apim-request-id": "63ec8532-1288-420f-b64d-4b4204bd5ad3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:41 GMT", + "Date": "Fri, 30 Oct 2020 13:19:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "modelInfo": { - "modelId": "725bbf9d-7c7d-4e3f-8898-d24d6d0e3357", + "modelId": "f083e1e9-7b45-4b6b-82dc-3c446963920b", "status": "creating", - "createdDateTime": "2020-09-09T22:20:42Z", - "lastUpdatedDateTime": "2020-09-09T22:20:42Z" + "createdDateTime": "2020-10-30T13:19:43Z", + "lastUpdatedDateTime": "2020-10-30T13:19:43Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/725bbf9d-7c7d-4e3f-8898-d24d6d0e3357?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cd3ce896134fbeb34d78eed006ab45f2", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "241e02b6-57a8-4658-ac86-c257a5555a5c", + "apim-request-id": "6f79bb30-58fd-44ff-b2cb-a239a974df56", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:42 GMT", + "Date": "Fri, 30 Oct 2020 13:19:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "modelInfo": { - "modelId": "725bbf9d-7c7d-4e3f-8898-d24d6d0e3357", + "modelId": "f083e1e9-7b45-4b6b-82dc-3c446963920b", "status": "creating", - "createdDateTime": "2020-09-09T22:20:42Z", - "lastUpdatedDateTime": "2020-09-09T22:20:42Z" + "createdDateTime": "2020-10-30T13:19:43Z", + "lastUpdatedDateTime": "2020-10-30T13:19:43Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/725bbf9d-7c7d-4e3f-8898-d24d6d0e3357?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "22337f85ad1f998bc73e4052c3c59c90", "x-ms-return-client-request-id": "true" @@ -114,23 +114,56 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4a3f8ca-ac75-444f-b67c-6ac7d91da053", + "apim-request-id": "955495c4-f52b-4ca1-b67b-910eb382d995", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:43 GMT", + "Date": "Fri, 30 Oct 2020 13:19:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "modelInfo": { - "modelId": "725bbf9d-7c7d-4e3f-8898-d24d6d0e3357", + "modelId": "f083e1e9-7b45-4b6b-82dc-3c446963920b", + "status": "creating", + "createdDateTime": "2020-10-30T13:19:43Z", + "lastUpdatedDateTime": "2020-10-30T13:19:43Z" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1e35805140f95400e5ada380f8d035db", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e00e9105-11cb-4cd2-b426-3a14f6589cba", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:19:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "95" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "f083e1e9-7b45-4b6b-82dc-3c446963920b", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:20:42Z", - "lastUpdatedDateTime": "2020-09-09T22:20:44Z" + "createdDateTime": "2020-10-30T13:19:43Z", + "lastUpdatedDateTime": "2020-10-30T13:19:46Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,192 +261,267 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/copyAuthorization", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-68ae89214149e6428aaef3206ef95be5-e52646a472bb6e4b-00", + "traceparent": "00-26a2cc5dce73794596454c77197b0397-33b3f555bab6ec4b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1e35805140f95400e5ada380f8d035db", + "x-ms-client-request-id": "5c68d13abf91e9505da30610d260fa88", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "3a2d3105-fcaa-4dbe-b5e4-7652aa2dbfc7", + "apim-request-id": "3be5792d-119f-46fe-af66-191a8824eece", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:44 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/1945d79d-a224-48d7-b902-f9eb37b2344b", + "Date": "Fri, 30 Oct 2020 13:19:47 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fa826a53-a1a9-43e9-a865-4299f0f0b100", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "241" + "x-envoy-upstream-service-time": "114" }, "ResponseBody": { - "modelId": "1945d79d-a224-48d7-b902-f9eb37b2344b", + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776444 + "expirationDateTimeTicks": 1604150387 } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/725bbf9d-7c7d-4e3f-8898-d24d6d0e3357/copy", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b/copy", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", - "Content-Length": "354", + "Content-Length": "346", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f4ad93e6f012dd449cf83b5c28146ab2-b43e3a16e5739545-00", + "traceparent": "00-07b73fd58ac7f24980b2ddbabc8a39b7-bd0fd6b2290a9a47-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5c68d13abf91e9505da30610d260fa88", + "x-ms-client-request-id": "867e5ddc277545f97ede3c72090aa1f7", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "targetResourceRegion": "westcentralus", + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "targetResourceRegion": "eastus2", "copyAuthorization": { - "modelId": "1945d79d-a224-48d7-b902-f9eb37b2344b", + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776444 + "expirationDateTimeTicks": 1604150387 + } + }, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "766dda24-9243-4dd4-8a0c-92e4a95e66ba", + "Content-Length": "357", + "Content-Type": "application/json", + "Date": "Fri, 30 Oct 2020 13:19:48 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - Copy Custom Model Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b/copy", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "346", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-07b73fd58ac7f24980b2ddbabc8a39b7-bd0fd6b2290a9a47-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "867e5ddc277545f97ede3c72090aa1f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "targetResourceRegion": "eastus2", + "copyAuthorization": { + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1604150387 } }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "09503d4e-1759-44a1-92a6-3353db4ea830", + "apim-request-id": "c5627084-7bd9-410c-a240-4241d7eb6186", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:20:44 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/725bbf9d-7c7d-4e3f-8898-d24d6d0e3357/copyresults/a883e1d3-efa5-429c-a6e7-60aeedc417be", + "Date": "Fri, 30 Oct 2020 13:20:29 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b/copyresults/d761c0ae-4048-4370-a4b7-91d9696285c4", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/725bbf9d-7c7d-4e3f-8898-d24d6d0e3357/copyResults/a883e1d3-efa5-429c-a6e7-60aeedc417be", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b/copyResults/d761c0ae-4048-4370-a4b7-91d9696285c4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "867e5ddc277545f97ede3c72090aa1f7", + "x-ms-client-request-id": "f11765093f5c92ff2f4cc1563af08184", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0376c3fd-78da-4e90-a35b-ceaa10138a23", + "apim-request-id": "727375c2-bb7f-4f04-a7b7-9b5061f3fe69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:44 GMT", + "Date": "Fri, 30 Oct 2020 13:20:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:20:44Z", - "lastUpdatedDateTime": "2020-09-09T22:20:44Z", + "createdDateTime": "2020-10-30T13:20:29Z", + "lastUpdatedDateTime": "2020-10-30T13:20:29Z", "copyResult": { - "modelId": "1945d79d-a224-48d7-b902-f9eb37b2344b" + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/725bbf9d-7c7d-4e3f-8898-d24d6d0e3357/copyResults/a883e1d3-efa5-429c-a6e7-60aeedc417be", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b/copyResults/d761c0ae-4048-4370-a4b7-91d9696285c4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f11765093f5c92ff2f4cc1563af08184", + "x-ms-client-request-id": "9aa41bb3ae511365d823deb282dee053", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c5f95145-baa7-4a3d-8d69-d7e5104e9e74", + "apim-request-id": "fe5d23fe-ac3e-46ed-b27a-cc60fbda7f2a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:45 GMT", + "Date": "Fri, 30 Oct 2020 13:20:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:20:44Z", - "lastUpdatedDateTime": "2020-09-09T22:20:44Z", + "createdDateTime": "2020-10-30T13:20:29Z", + "lastUpdatedDateTime": "2020-10-30T13:20:29Z", "copyResult": { - "modelId": "1945d79d-a224-48d7-b902-f9eb37b2344b" + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/725bbf9d-7c7d-4e3f-8898-d24d6d0e3357/copyResults/a883e1d3-efa5-429c-a6e7-60aeedc417be", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b/copyResults/d761c0ae-4048-4370-a4b7-91d9696285c4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9aa41bb3ae511365d823deb282dee053", + "x-ms-client-request-id": "6d060f0108489d2b5dec562965a30a8e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "714c9e5e-3601-4477-8216-d6afb6b63ab1", + "apim-request-id": "a7169a13-bc46-4b3c-b390-c01ccb70ca3c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:46 GMT", + "Date": "Fri, 30 Oct 2020 13:20:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:20:44Z", - "lastUpdatedDateTime": "2020-09-09T22:20:44Z", + "createdDateTime": "2020-10-30T13:20:29Z", + "lastUpdatedDateTime": "2020-10-30T13:20:29Z", "copyResult": { - "modelId": "1945d79d-a224-48d7-b902-f9eb37b2344b" + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/725bbf9d-7c7d-4e3f-8898-d24d6d0e3357/copyResults/a883e1d3-efa5-429c-a6e7-60aeedc417be", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b/copyResults/d761c0ae-4048-4370-a4b7-91d9696285c4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6d060f0108489d2b5dec562965a30a8e", + "x-ms-client-request-id": "eebeb75c06655aa500041938604d0f51", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65e49adb-0247-4d94-b5bc-4fe7088ad44d", + "apim-request-id": "a7ab2029-5cac-4929-adc2-453ca8aea70a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:47 GMT", + "Date": "Fri, 30 Oct 2020 13:20:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:20:29Z", + "lastUpdatedDateTime": "2020-10-30T13:20:29Z", + "copyResult": { + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b/copyResults/d761c0ae-4048-4370-a4b7-91d9696285c4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2b546d6c14e9aa3cef073d65573cad34", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f9272a7e-68b3-4e6c-ad51-02be037160b9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:20:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -421,44 +529,176 @@ }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:20:44Z", - "lastUpdatedDateTime": "2020-09-09T22:20:44Z", + "createdDateTime": "2020-10-30T13:20:29Z", + "lastUpdatedDateTime": "2020-10-30T13:20:29Z", "copyResult": { - "modelId": "1945d79d-a224-48d7-b902-f9eb37b2344b" + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/725bbf9d-7c7d-4e3f-8898-d24d6d0e3357/copyResults/a883e1d3-efa5-429c-a6e7-60aeedc417be", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b/copyResults/d761c0ae-4048-4370-a4b7-91d9696285c4", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "eebeb75c06655aa500041938604d0f51", + "x-ms-client-request-id": "ca565018f11ffbed69ab6d44eff23c10", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b74a741-3b2f-478b-9a88-c41bdbe7e435", + "apim-request-id": "09d51762-94c5-4c5d-81a8-9730304d4237", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:48 GMT", + "Date": "Fri, 30 Oct 2020 13:20:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:20:29Z", + "lastUpdatedDateTime": "2020-10-30T13:20:29Z", + "copyResult": { + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b/copyResults/d761c0ae-4048-4370-a4b7-91d9696285c4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f7bd05dcdf4f47a47b14ff5ec84002c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "74b7b04f-6ec9-44e1-93ec-831ae2038dd9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:20:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:20:29Z", + "lastUpdatedDateTime": "2020-10-30T13:20:29Z", + "copyResult": { + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b/copyResults/d761c0ae-4048-4370-a4b7-91d9696285c4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1020e45644f67a328058c13da7f7bafc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "33ea859b-44c2-4230-ae02-db125015ff70", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:20:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:20:29Z", + "lastUpdatedDateTime": "2020-10-30T13:20:29Z", + "copyResult": { + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b/copyResults/d761c0ae-4048-4370-a4b7-91d9696285c4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "52882ccab57f38e5ab0e4f0af28f3228", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "89df6b49-a4e4-497c-a24f-ee7a209c7b33", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:20:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-10-30T13:20:40.3290882Z", + "lastUpdatedDateTime": "2020-10-30T13:20:40.3290883Z", + "copyResult": { + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b/copyResults/d761c0ae-4048-4370-a4b7-91d9696285c4", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0aeea9a82bd29719d34277f61e66a083", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "06004ae4-2f0b-4f43-8b73-425756c54aba", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:20:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11", "x-ms-cs-error-code": "AuthorizationError" }, "ResponseBody": { "status": "failed", - "createdDateTime": "2020-09-09T22:20:48.9391015Z", - "lastUpdatedDateTime": "2020-09-09T22:20:48.9391018Z", + "createdDateTime": "2020-10-30T13:20:40.6658114Z", + "lastUpdatedDateTime": "2020-10-30T13:20:40.6658116Z", "copyResult": { - "modelId": "1945d79d-a224-48d7-b902-f9eb37b2344b", + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100", "errors": [ { "code": "AuthorizationError", @@ -469,28 +709,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/725bbf9d-7c7d-4e3f-8898-d24d6d0e3357", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/f083e1e9-7b45-4b6b-82dc-3c446963920b", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5114ce25ddecc3459ddf213047a2d489-6c48fd94385ce043-00", + "traceparent": "00-c0bbb0330544b84b8191d1c77c8c4dac-88aeb3caf0e0534f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2b546d6c14e9aa3cef073d65573cad34", + "x-ms-client-request-id": "9c930259b0b7a044fee765e7f52788f0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "85b5d574-1fe6-48a0-9389-16e79d7b7e41", + "apim-request-id": "8ba93fc1-5ce2-45c4-a7a2-456077e1e8f5", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:20:48 GMT", + "Date": "Fri, 30 Oct 2020 13:20:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": [] } @@ -498,9 +738,9 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westus2", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", "RandomSeed": "292230452" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCopyModelFailsWithWrongRegionAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCopyModelFailsWithWrongRegionAsync.json index d5b5f0a76953a..919b9be2bf7d1 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCopyModelFailsWithWrongRegionAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCopyModelFailsWithWrongRegionAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a55827fd65fda04cbcc75ebfd709ee3f-9ad10eeb53d2cd44-00", + "traceparent": "00-d41531d9c3006747be16c921d6f5228e-227d834ce745064a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6157366778507ad0482d54052347cf99", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "b8ca2e54-9f8c-489d-9a40-cd2b0d6b55f1", + "apim-request-id": "2527ee71-c272-40ab-b927-5ffc389b69e1", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:23:36 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30", + "Date": "Fri, 30 Oct 2020 13:22:43 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "249" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fbf18f9e32c34d24e422623eda910d01", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43f4746a-d595-4e97-b7d8-b9fc752cc399", + "apim-request-id": "47e9945c-5f7c-45e4-be71-8f607f4c82d5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:36 GMT", + "Date": "Fri, 30 Oct 2020 13:22:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "259e3676-06ec-4fbe-94d1-77681b86ac30", + "modelId": "fee95d8d-7bdf-49e1-ae72-1bea0d3918de", "status": "creating", - "createdDateTime": "2020-09-09T22:23:36Z", - "lastUpdatedDateTime": "2020-09-09T22:23:36Z" + "createdDateTime": "2020-10-30T13:22:43Z", + "lastUpdatedDateTime": "2020-10-30T13:22:43Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8887e2cc24f77d24822735355c80e885", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d99ec55-bec2-498c-ad3e-df1abcabc83a", + "apim-request-id": "f76dc549-290f-42ff-9878-c90ce4b8127d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:37 GMT", + "Date": "Fri, 30 Oct 2020 13:22:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "259e3676-06ec-4fbe-94d1-77681b86ac30", + "modelId": "fee95d8d-7bdf-49e1-ae72-1bea0d3918de", "status": "creating", - "createdDateTime": "2020-09-09T22:23:36Z", - "lastUpdatedDateTime": "2020-09-09T22:23:36Z" + "createdDateTime": "2020-10-30T13:22:43Z", + "lastUpdatedDateTime": "2020-10-30T13:22:43Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0c6b7a798ca9344d110a7c2d15929fb6", "x-ms-return-client-request-id": "true" @@ -114,75 +114,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fee38c32-9672-4c6c-94c5-83f0867779f3", + "apim-request-id": "710cd799-5903-43fd-b887-a526e1ff6eb9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:38 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "259e3676-06ec-4fbe-94d1-77681b86ac30", - "status": "creating", - "createdDateTime": "2020-09-09T22:23:36Z", - "lastUpdatedDateTime": "2020-09-09T22:23:36Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4038531f47c07aa26a74799bfdeef064", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a7b0021b-ff54-4bc5-9c3a-deb8c71d2e3e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "259e3676-06ec-4fbe-94d1-77681b86ac30", - "status": "creating", - "createdDateTime": "2020-09-09T22:23:36Z", - "lastUpdatedDateTime": "2020-09-09T22:23:36Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "60c4dc3a00264058955276eca7f667ef", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "72b2042f-306a-4d39-81d9-9a88eee24930", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:41 GMT", + "Date": "Fri, 30 Oct 2020 13:22:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -190,79 +124,13 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "259e3676-06ec-4fbe-94d1-77681b86ac30", - "status": "creating", - "createdDateTime": "2020-09-09T22:23:36Z", - "lastUpdatedDateTime": "2020-09-09T22:23:36Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "09167e88a84732c5d7f1a23412b13723", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "83bd07e7-dda8-48c4-b3d2-3f24e2c23671", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:42 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "259e3676-06ec-4fbe-94d1-77681b86ac30", - "status": "creating", - "createdDateTime": "2020-09-09T22:23:36Z", - "lastUpdatedDateTime": "2020-09-09T22:23:36Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "38f318193fce1e90fbf8ab6dd0b5d273", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7911cd2c-de74-42eb-b6d4-f5fc0affb1d1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:43 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "259e3676-06ec-4fbe-94d1-77681b86ac30", + "modelId": "fee95d8d-7bdf-49e1-ae72-1bea0d3918de", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:23:36Z", - "lastUpdatedDateTime": "2020-09-09T22:23:43Z" + "createdDateTime": "2020-10-30T13:22:43Z", + "lastUpdatedDateTime": "2020-10-30T13:22:44Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -360,93 +228,135 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/copyAuthorization", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-447ae6753fa6e045a08e21b0a4443154-7a5ad4891bc45046-00", + "traceparent": "00-a464f1ee52bde44d81a999ed0a030fd2-de75413ce19bbe49-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7e138a0ce7d7911c179289345e232de3", + "x-ms-client-request-id": "4038531f47c07aa26a74799bfdeef064", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "2bcc8edd-67be-4b28-82bd-96d2e00a9f3b", + "apim-request-id": "243b0b6d-e00e-4789-aa47-1a49cc6f3292", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:43 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/27a877ec-0f51-4d1a-b159-36f68a7e3828", + "Date": "Fri, 30 Oct 2020 13:22:45 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/154eaf28-bbe8-4ef9-ba02-c396de5390bc", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { - "modelId": "27a877ec-0f51-4d1a-b159-36f68a7e3828", + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776623 + "expirationDateTimeTicks": 1604150565 } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30/copy", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copy", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", - "Content-Length": "354", + "Content-Length": "346", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-19ad75100c1dfe4582bf3de75f422290-b6bc7e5d4becb14c-00", + "traceparent": "00-29e003a1510e0448a0fc8cf43a3c223a-ce855ac1b1a05f45-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8fd3521b2e034920edf80e4ffc576121", + "x-ms-client-request-id": "60c4dc3a00264058955276eca7f667ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "targetResourceRegion": "eastus2", + "copyAuthorization": { + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc", + "accessToken": "Sanitized", + "expirationDateTimeTicks": 1604150565 + } + }, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "3ec4bc01-92c0-40d7-8006-ec665704e812", + "Content-Length": "357", + "Content-Type": "application/json", + "Date": "Fri, 30 Oct 2020 13:22:45 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - Copy Custom Model Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copy", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Content-Length": "346", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-29e003a1510e0448a0fc8cf43a3c223a-ce855ac1b1a05f45-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "60c4dc3a00264058955276eca7f667ef", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "targetResourceRegion": "westcentralus", + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "targetResourceRegion": "eastus2", "copyAuthorization": { - "modelId": "27a877ec-0f51-4d1a-b159-36f68a7e3828", + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776623 + "expirationDateTimeTicks": 1604150565 } }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1db925ae-ac0a-495e-913d-27b3c06dec20", + "apim-request-id": "a0974016-e97a-4d3c-8c76-06c2eb0d1d88", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:23:43 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30/copyresults/1b45497c-be40-4146-86d7-408319305d44", + "Date": "Fri, 30 Oct 2020 13:23:22 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyresults/8ab2e881-defa-4897-8730-4167709a3ab7", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30/copyResults/1b45497c-be40-4146-86d7-408319305d44", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "88272e1eb89d324cfb61213cb55bbfd7", + "x-ms-client-request-id": "09167e88a84732c5d7f1a23412b13723", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e795286-2f25-41e4-8349-2d19021d3e09", + "apim-request-id": "74a35eae-7f1d-4455-95f5-4bc1c1b92f75", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:43 GMT", + "Date": "Fri, 30 Oct 2020 13:23:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -454,32 +364,32 @@ }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:23:43Z", - "lastUpdatedDateTime": "2020-09-09T22:23:43Z", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", "copyResult": { - "modelId": "27a877ec-0f51-4d1a-b159-36f68a7e3828" + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30/copyResults/1b45497c-be40-4146-86d7-408319305d44", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7e52c7ca43e2de7069ca91dfd8cd94c0", + "x-ms-client-request-id": "38f318193fce1e90fbf8ab6dd0b5d273", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "764ae714-f553-48f3-9611-6b5d7792727a", + "apim-request-id": "a6873f96-1d29-4f81-b0d8-20901913abd5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:44 GMT", + "Date": "Fri, 30 Oct 2020 13:23:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -487,22 +397,154 @@ }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:23:43Z", - "lastUpdatedDateTime": "2020-09-09T22:23:43Z", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", "copyResult": { - "modelId": "27a877ec-0f51-4d1a-b159-36f68a7e3828" + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30/copyResults/1b45497c-be40-4146-86d7-408319305d44", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7e138a0ce7d7911c179289345e232de3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9ab8f47a-36ed-4f9c-8f78-f88ee1a8f9bc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:23:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", + "copyResult": { + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8fd3521b2e034920edf80e4ffc576121", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d9d17c50-2b1d-4470-863a-219baf94a462", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:23:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", + "copyResult": { + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "88272e1eb89d324cfb61213cb55bbfd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "704ca519-5aaf-4070-8652-a6aa6d679732", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:23:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", + "copyResult": { + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7e52c7ca43e2de7069ca91dfd8cd94c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "801159c9-deb7-4d00-b538-53dc7570a58e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:23:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", + "copyResult": { + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "30166830a4fb624506a094a20de49391", "x-ms-return-client-request-id": "true" @@ -510,32 +552,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cff3a38c-eaed-4718-a6bb-ce6e053964a6", + "apim-request-id": "3a1f8a15-8a60-4c71-bf03-6da3b73ba401", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:45 GMT", + "Date": "Fri, 30 Oct 2020 13:23:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:23:43Z", - "lastUpdatedDateTime": "2020-09-09T22:23:43Z", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", "copyResult": { - "modelId": "27a877ec-0f51-4d1a-b159-36f68a7e3828" + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30/copyResults/1b45497c-be40-4146-86d7-408319305d44", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "34843638e204db3ebd491ed3276c592d", "x-ms-return-client-request-id": "true" @@ -543,32 +585,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e1f2f94-9a56-45f0-abbe-dd1b4897e29b", + "apim-request-id": "24cbb162-66d4-4be0-a287-a82bbfb326b8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:46 GMT", + "Date": "Fri, 30 Oct 2020 13:23:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:23:43Z", - "lastUpdatedDateTime": "2020-09-09T22:23:43Z", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", "copyResult": { - "modelId": "27a877ec-0f51-4d1a-b159-36f68a7e3828" + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30/copyResults/1b45497c-be40-4146-86d7-408319305d44", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4c0b61cc8e4525dc82f07842aeced085", "x-ms-return-client-request-id": "true" @@ -576,9 +618,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "69d56dbd-4277-4694-96ac-c0b9245ebe50", + "apim-request-id": "e9e9cbd4-f948-4f93-82e7-d2c93221827d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:47 GMT", + "Date": "Fri, 30 Oct 2020 13:23:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -586,22 +628,22 @@ }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:23:43Z", - "lastUpdatedDateTime": "2020-09-09T22:23:43Z", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", "copyResult": { - "modelId": "27a877ec-0f51-4d1a-b159-36f68a7e3828" + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30/copyResults/1b45497c-be40-4146-86d7-408319305d44", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a2a6ff3660484dbb2a3a73b185723a99", "x-ms-return-client-request-id": "true" @@ -609,32 +651,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "96346dca-2afb-4aa5-8c60-72f0c3b5c059", + "apim-request-id": "946153b0-7185-4ecd-ad17-815fb6b743c9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:48 GMT", + "Date": "Fri, 30 Oct 2020 13:23:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:23:43Z", - "lastUpdatedDateTime": "2020-09-09T22:23:43Z", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", "copyResult": { - "modelId": "27a877ec-0f51-4d1a-b159-36f68a7e3828" + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30/copyResults/1b45497c-be40-4146-86d7-408319305d44", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "acd5664646d8aa4b5a5fb2146afc2cef", "x-ms-return-client-request-id": "true" @@ -642,32 +684,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71b818c2-3730-441d-911f-93440a4bee93", + "apim-request-id": "0e8a202c-48cb-4d7c-ad6c-0a36918c49c5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:49 GMT", + "Date": "Fri, 30 Oct 2020 13:23:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:23:49.7554125Z", - "lastUpdatedDateTime": "2020-09-09T22:23:49.7554127Z", + "status": "notStarted", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", "copyResult": { - "modelId": "27a877ec-0f51-4d1a-b159-36f68a7e3828" + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30/copyResults/1b45497c-be40-4146-86d7-408319305d44", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "289c9978b7c56ce5a5be220b1b2a9f10", "x-ms-return-client-request-id": "true" @@ -675,21 +717,120 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "01d6cd76-9262-40be-a0b4-aea448047681", + "apim-request-id": "84521b83-d945-432e-84c9-6f03178d296d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:23:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "100" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", + "copyResult": { + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "48fbdeb524f8efacb3fc47e9ada6e22e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b1061c9b-7600-4cba-8532-d779ccde6134", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:23:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", + "copyResult": { + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "eb39830d12d58ed38169061a24408e30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "483501d5-2244-4b19-acdb-92dbfcbdb448", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:23:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T13:23:22Z", + "lastUpdatedDateTime": "2020-10-30T13:23:22Z", + "copyResult": { + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de/copyResults/8ab2e881-defa-4897-8730-4167709a3ab7", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8c5fa1bfe40053f6edac74c970fcbeff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "10352f2d-d2eb-4c85-aabe-45ac767f87ec", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:50 GMT", + "Date": "Fri, 30 Oct 2020 13:23:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16", + "x-envoy-upstream-service-time": "14", "x-ms-cs-error-code": "AuthorizationError" }, "ResponseBody": { "status": "failed", - "createdDateTime": "2020-09-09T22:23:49.9918396Z", - "lastUpdatedDateTime": "2020-09-09T22:23:49.9918399Z", + "createdDateTime": "2020-10-30T13:23:41.3483761Z", + "lastUpdatedDateTime": "2020-10-30T13:23:41.3483768Z", "copyResult": { - "modelId": "27a877ec-0f51-4d1a-b159-36f68a7e3828", + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc", "errors": [ { "code": "AuthorizationError", @@ -700,28 +841,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/259e3676-06ec-4fbe-94d1-77681b86ac30", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fee95d8d-7bdf-49e1-ae72-1bea0d3918de", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cad410055a8f984ab76df417ace725bb-312d252ba6c18b46-00", + "traceparent": "00-0a221b13f23daa448d6bfe19de00c015-2d39b5615ca3c54c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "48fbdeb524f8efacb3fc47e9ada6e22e", + "x-ms-client-request-id": "97fdf4dbb3f1a23a0a6dc78f1e91cb73", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "953baeac-5a68-43c0-aa55-645d10bade87", + "apim-request-id": "7bd5c631-9547-47b5-a98d-db3fb1232d2e", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:23:50 GMT", + "Date": "Fri, 30 Oct 2020 13:23:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": [] } @@ -729,9 +870,9 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westus2", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", "RandomSeed": "851948412" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel.json index a5c0c65e17340..c407e7768bf84 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModel.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2df58122599f69458c5d153255626bc5-cd8450d419082d46-00", + "traceparent": "00-2eec1c03b9c63c4bb1915586b0f205d9-b7b9d11694034d48-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4a958766c718bba0704f78c9635381c2", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "e3419666-2638-45d5-9fa0-afeba7d11fa3", + "apim-request-id": "18ca9574-50c3-467f-8e27-0328a57f3681", "Content-Length": "0", - "Date": "Sat, 26 Sep 2020 00:00:14 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f49db5c1-44cb-4e33-a898-ce93498022ec", + "Date": "Fri, 30 Oct 2020 13:20:41 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/11c8f78b-f533-45d3-a5d2-009be808d689", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "493" + "x-envoy-upstream-service-time": "120" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f49db5c1-44cb-4e33-a898-ce93498022ec?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/11c8f78b-f533-45d3-a5d2-009be808d689?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b28259d7fbec66645a04e9f953421656", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3631ec3-d224-4ac4-9737-0908a7daa3b2", + "apim-request-id": "bc56becb-8f40-4d9a-9fed-5fff86c46ef5", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:14 GMT", + "Date": "Fri, 30 Oct 2020 13:20:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "292" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "modelInfo": { - "modelId": "f49db5c1-44cb-4e33-a898-ce93498022ec", + "modelId": "11c8f78b-f533-45d3-a5d2-009be808d689", "status": "creating", - "createdDateTime": "2020-09-26T00:00:14Z", - "lastUpdatedDateTime": "2020-09-26T00:00:14Z" + "createdDateTime": "2020-10-30T13:20:42Z", + "lastUpdatedDateTime": "2020-10-30T13:20:42Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f49db5c1-44cb-4e33-a898-ce93498022ec?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/11c8f78b-f533-45d3-a5d2-009be808d689?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "40cb9a54d78991d9ceb1627119d8d756", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92b9198b-f359-41cf-bf1e-9ba3bd0f337e", + "apim-request-id": "8f91a695-d1be-4463-a952-c1f6813bf01a", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:16 GMT", + "Date": "Fri, 30 Oct 2020 13:20:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "modelInfo": { - "modelId": "f49db5c1-44cb-4e33-a898-ce93498022ec", + "modelId": "11c8f78b-f533-45d3-a5d2-009be808d689", "status": "creating", - "createdDateTime": "2020-09-26T00:00:14Z", - "lastUpdatedDateTime": "2020-09-26T00:00:14Z" + "createdDateTime": "2020-10-30T13:20:42Z", + "lastUpdatedDateTime": "2020-10-30T13:20:42Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f49db5c1-44cb-4e33-a898-ce93498022ec?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/11c8f78b-f533-45d3-a5d2-009be808d689?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1fe8d2425cd56a09232fef13dda6672e", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b4089b9-5d12-47f3-b96e-cc716d0f9dfa", + "apim-request-id": "39ef5c45-7f06-4023-a4e5-9b8d5b9486f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:17 GMT", + "Date": "Fri, 30 Oct 2020 13:20:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "147" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "modelInfo": { - "modelId": "f49db5c1-44cb-4e33-a898-ce93498022ec", + "modelId": "11c8f78b-f533-45d3-a5d2-009be808d689", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-26T00:00:14Z", - "lastUpdatedDateTime": "2020-09-26T00:00:16Z" + "createdDateTime": "2020-10-30T13:20:42Z", + "lastUpdatedDateTime": "2020-10-30T13:20:44Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,17 +228,17 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4d01351ec659a8448377ecb1d96de3b6-48fc0585356cef4c-00", + "traceparent": "00-1e1a267ace8cb645bd3bb189b90a4cc2-5a04503f7e375c4e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c87521394188ff3980f0e43a98f34d82", "x-ms-return-client-request-id": "true" @@ -249,25 +249,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "857f4fad-33c6-4feb-b79c-37f8c7c04876", + "apim-request-id": "c8650fc0-fdc8-4b6d-a663-f00fe978e6a6", "Content-Length": "0", - "Date": "Sat, 26 Sep 2020 00:00:18 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/733667b3-6165-4682-84fa-a1cd437f26a2", + "Date": "Fri, 30 Oct 2020 13:20:45 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6579bed7-764a-44fb-93c6-841fb2e80a86", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "294" + "x-envoy-upstream-service-time": "157" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/733667b3-6165-4682-84fa-a1cd437f26a2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6579bed7-764a-44fb-93c6-841fb2e80a86?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "81b7932cf75af78191601d59e8c5b427", "x-ms-return-client-request-id": "true" @@ -275,32 +275,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91dea97b-3a54-4307-aeb0-6f81ad31a11d", + "apim-request-id": "c3897281-3bc3-42da-9d91-2a0c10fb0103", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:18 GMT", + "Date": "Fri, 30 Oct 2020 13:20:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "modelInfo": { - "modelId": "733667b3-6165-4682-84fa-a1cd437f26a2", + "modelId": "6579bed7-764a-44fb-93c6-841fb2e80a86", "status": "creating", - "createdDateTime": "2020-09-26T00:00:18Z", - "lastUpdatedDateTime": "2020-09-26T00:00:18Z" + "createdDateTime": "2020-10-30T13:20:45Z", + "lastUpdatedDateTime": "2020-10-30T13:20:45Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/733667b3-6165-4682-84fa-a1cd437f26a2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6579bed7-764a-44fb-93c6-841fb2e80a86?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f738344a0f6201cd98e89ee478ced230", "x-ms-return-client-request-id": "true" @@ -308,56 +308,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd6fc453-8f5d-4c8f-9784-97e51c30d1b7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:19 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "733667b3-6165-4682-84fa-a1cd437f26a2", - "status": "creating", - "createdDateTime": "2020-09-26T00:00:18Z", - "lastUpdatedDateTime": "2020-09-26T00:00:18Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/733667b3-6165-4682-84fa-a1cd437f26a2?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4ae76ce2e6ef42d39f7d372823df17bb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f655d54d-1762-43ac-ad7f-c377268999ca", + "apim-request-id": "abc03831-7b13-4c20-83ae-d731cfbd53d2", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:20 GMT", + "Date": "Fri, 30 Oct 2020 13:20:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "modelInfo": { - "modelId": "733667b3-6165-4682-84fa-a1cd437f26a2", + "modelId": "6579bed7-764a-44fb-93c6-841fb2e80a86", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-26T00:00:18Z", - "lastUpdatedDateTime": "2020-09-26T00:00:20Z" + "createdDateTime": "2020-10-30T13:20:45Z", + "lastUpdatedDateTime": "2020-10-30T13:20:46Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -455,7 +422,7 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/compose", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -465,101 +432,101 @@ "Content-Length": "124", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c8e9c596d85a7e4cbbd378fefec1d4f6-58c2e79686724549-00", + "traceparent": "00-4986ee8396729f46a147380941756645-a379f37c168d3045-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "64f0bc3c55bb1d20c5b6e871589d7ec2", + "x-ms-client-request-id": "4ae76ce2e6ef42d39f7d372823df17bb", "x-ms-return-client-request-id": "true" }, "RequestBody": { "modelIds": [ - "f49db5c1-44cb-4e33-a898-ce93498022ec", - "733667b3-6165-4682-84fa-a1cd437f26a2" + "11c8f78b-f533-45d3-a5d2-009be808d689", + "6579bed7-764a-44fb-93c6-841fb2e80a86" ], "modelName": "My composed model" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "703fab07-f7fd-4de6-a64a-450089d95a05", + "apim-request-id": "013b1c4e-8330-4626-9d99-8fa69189ff5b", "Content-Length": "0", - "Date": "Sat, 26 Sep 2020 00:00:21 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f6b8eb43-49c2-442b-8b78-3f3e7a1df0ce", + "Date": "Fri, 30 Oct 2020 13:20:47 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/031bb91f-b029-4d9e-a165-f9c76dbec981", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "391" + "x-envoy-upstream-service-time": "196" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f6b8eb43-49c2-442b-8b78-3f3e7a1df0ce?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/031bb91f-b029-4d9e-a165-f9c76dbec981?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7c77ec8d69de643760f558e5d8a5ddb8", + "x-ms-client-request-id": "64f0bc3c55bb1d20c5b6e871589d7ec2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85116f8f-9625-4cb9-aea8-5d3515ae65b9", + "apim-request-id": "6d4ef869-a3d3-4315-9cdf-c48a740e8b96", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:21 GMT", + "Date": "Fri, 30 Oct 2020 13:20:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "f6b8eb43-49c2-442b-8b78-3f3e7a1df0ce", + "modelId": "031bb91f-b029-4d9e-a165-f9c76dbec981", "modelName": "My composed model", "status": "creating", - "createdDateTime": "2020-09-26T00:00:21Z", - "lastUpdatedDateTime": "2020-09-26T00:00:21Z" + "createdDateTime": "2020-10-30T13:20:47Z", + "lastUpdatedDateTime": "2020-10-30T13:20:47Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f6b8eb43-49c2-442b-8b78-3f3e7a1df0ce?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/031bb91f-b029-4d9e-a165-f9c76dbec981?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "bca8e3d16dde8c754cc98539fd62ea02", + "x-ms-client-request-id": "7c77ec8d69de643760f558e5d8a5ddb8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c0904d5-49e2-40b1-a920-84008336c562", + "apim-request-id": "0d39055a-0c4e-4485-983d-e59a85cc277f", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:22 GMT", + "Date": "Fri, 30 Oct 2020 13:20:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "modelInfo": { - "modelId": "f6b8eb43-49c2-442b-8b78-3f3e7a1df0ce", + "modelId": "031bb91f-b029-4d9e-a165-f9c76dbec981", "modelName": "My composed model", "attributes": { "isComposed": true }, "status": "ready", - "createdDateTime": "2020-09-26T00:00:21Z", - "lastUpdatedDateTime": "2020-09-26T00:00:21Z" + "createdDateTime": "2020-10-30T13:20:47Z", + "lastUpdatedDateTime": "2020-10-30T13:20:48Z" }, "composedTrainResults": [ { @@ -653,7 +620,7 @@ "accuracy": 1.0 } ], - "modelId": "f49db5c1-44cb-4e33-a898-ce93498022ec", + "modelId": "11c8f78b-f533-45d3-a5d2-009be808d689", "errors": [] }, { @@ -747,61 +714,61 @@ "accuracy": 1.0 } ], - "modelId": "733667b3-6165-4682-84fa-a1cd437f26a2", + "modelId": "6579bed7-764a-44fb-93c6-841fb2e80a86", "errors": [] } ] } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/733667b3-6165-4682-84fa-a1cd437f26a2", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/6579bed7-764a-44fb-93c6-841fb2e80a86", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9667276b5518cb4da3d5deb74773a379-f793852a59f35e45-00", + "traceparent": "00-0f5818c4e7326f46bf8f8a45d04366b2-1c7fbc93be172446-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "379a75fe9a68d2dc858c03c5fd3a4520", + "x-ms-client-request-id": "bca8e3d16dde8c754cc98539fd62ea02", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "2896a859-e6ce-4a33-aaf0-e2f194701399", + "apim-request-id": "3297901e-69a8-4db7-8e26-642b03b50260", "Content-Length": "0", - "Date": "Sat, 26 Sep 2020 00:00:22 GMT", + "Date": "Fri, 30 Oct 2020 13:20:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f49db5c1-44cb-4e33-a898-ce93498022ec", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/11c8f78b-f533-45d3-a5d2-009be808d689", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6a14e9813b961a4eb00a49c3df6df676-d5ad1a15beb60a41-00", + "traceparent": "00-44623ed0525d02409d3f442a35b9017f-b3f11a6a91376740-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "749f30d8c2f520e377ea2f14e4fd67fe", + "x-ms-client-request-id": "379a75fe9a68d2dc858c03c5fd3a4520", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "5c306ebb-a0c5-411d-bdb5-c38f31391ad7", + "apim-request-id": "3b5e9a34-e76e-4147-86a4-b67e1146b359", "Content-Length": "0", - "Date": "Sat, 26 Sep 2020 00:00:22 GMT", + "Date": "Fri, 30 Oct 2020 13:20:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": [] } @@ -809,7 +776,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "51900180" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelAsync.json index d0f3a4adffe7d..bc7d50a0f2a05 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4898519091f4f542bb8bb907f4dffb3e-44334240b9522d4b-00", + "traceparent": "00-2d38d9cf65192c469020238c689a1ba3-0c19831c5e58094b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cbe99057356706f7070829518bd8d7fe", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "55f365a5-3ee5-49c1-ba5b-f0ff4f6f8df2", + "apim-request-id": "456f7aec-5d33-4aca-ba7d-d52e1266ca6c", "Content-Length": "0", - "Date": "Sat, 26 Sep 2020 00:00:22 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/81be4e4a-ec2d-4cc6-949d-bb4f5a177cff", + "Date": "Fri, 30 Oct 2020 13:23:42 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/7da24fa3-6696-477e-9cd8-f00bd708ce41", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "135" + "x-envoy-upstream-service-time": "151" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/81be4e4a-ec2d-4cc6-949d-bb4f5a177cff?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/7da24fa3-6696-477e-9cd8-f00bd708ce41?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a977d2c10ad2726888d361488cd7b125", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50fcd415-861a-4cbe-82e6-98bf55a51e05", + "apim-request-id": "f7861397-85ac-4b29-9f42-3c15c106010b", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:23 GMT", + "Date": "Fri, 30 Oct 2020 13:23:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "81be4e4a-ec2d-4cc6-949d-bb4f5a177cff", + "modelId": "7da24fa3-6696-477e-9cd8-f00bd708ce41", "status": "creating", - "createdDateTime": "2020-09-26T00:00:23Z", - "lastUpdatedDateTime": "2020-09-26T00:00:23Z" + "createdDateTime": "2020-10-30T13:23:41Z", + "lastUpdatedDateTime": "2020-10-30T13:23:41Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/81be4e4a-ec2d-4cc6-949d-bb4f5a177cff?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/7da24fa3-6696-477e-9cd8-f00bd708ce41?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2ade40209704faedfc744fcc80f0827b", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ad4ad4e-61e2-4cd8-92f2-57970bc2a07c", + "apim-request-id": "2d9c4ad4-41b5-4b4e-89eb-d8e982454883", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:24 GMT", + "Date": "Fri, 30 Oct 2020 13:23:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "140" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "81be4e4a-ec2d-4cc6-949d-bb4f5a177cff", + "modelId": "7da24fa3-6696-477e-9cd8-f00bd708ce41", "status": "creating", - "createdDateTime": "2020-09-26T00:00:23Z", - "lastUpdatedDateTime": "2020-09-26T00:00:23Z" + "createdDateTime": "2020-10-30T13:23:41Z", + "lastUpdatedDateTime": "2020-10-30T13:23:41Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/81be4e4a-ec2d-4cc6-949d-bb4f5a177cff?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/7da24fa3-6696-477e-9cd8-f00bd708ce41?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8d4d5bfdc14f4c1028774293d3af7a30", "x-ms-return-client-request-id": "true" @@ -114,56 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "286cce86-4935-4ba9-8873-8246336bd7d6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:25 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "81be4e4a-ec2d-4cc6-949d-bb4f5a177cff", - "status": "creating", - "createdDateTime": "2020-09-26T00:00:23Z", - "lastUpdatedDateTime": "2020-09-26T00:00:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/81be4e4a-ec2d-4cc6-949d-bb4f5a177cff?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4b310457acfa2af9e57cad5dba9cf298", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "00a97c08-a4c0-4075-b1bb-68ea3a9d9cf1", + "apim-request-id": "4bd8ed8a-6ad0-449c-a063-cc98867fccf8", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:26 GMT", + "Date": "Fri, 30 Oct 2020 13:23:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "modelInfo": { - "modelId": "81be4e4a-ec2d-4cc6-949d-bb4f5a177cff", + "modelId": "7da24fa3-6696-477e-9cd8-f00bd708ce41", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-26T00:00:23Z", - "lastUpdatedDateTime": "2020-09-26T00:00:26Z" + "createdDateTime": "2020-10-30T13:23:41Z", + "lastUpdatedDateTime": "2020-10-30T13:23:43Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -261,19 +228,19 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3e9b36cc526ef6408394feaccef095d9-416e48e97de0604d-00", + "traceparent": "00-5c26e1524f5cf74387e2c39c10598b80-fe916d4f17f78b4a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "304be551238a5fd52f92028d5459264c", + "x-ms-client-request-id": "4b310457acfa2af9e57cad5dba9cf298", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -282,115 +249,82 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "3fecd35a-3860-45ab-ae6a-fd4049e1d477", + "apim-request-id": "e4d55a79-4876-48e9-9bd3-744e1eb76a0b", "Content-Length": "0", - "Date": "Sat, 26 Sep 2020 00:00:26 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/66bad6a4-7db3-4f45-81f1-fb89f9e3c97c", + "Date": "Fri, 30 Oct 2020 13:23:44 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8017943e-8836-4219-8056-26297c056b39", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "576" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/66bad6a4-7db3-4f45-81f1-fb89f9e3c97c?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7b751ff936bf51816122a8d214b2918b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cb5c817e-431d-43c8-9cf9-9eebc8057104", - "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:27 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "66bad6a4-7db3-4f45-81f1-fb89f9e3c97c", - "status": "creating", - "createdDateTime": "2020-09-26T00:00:27Z", - "lastUpdatedDateTime": "2020-09-26T00:00:27Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/66bad6a4-7db3-4f45-81f1-fb89f9e3c97c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8017943e-8836-4219-8056-26297c056b39?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ee42aa844a6433a62ed11b67a96bd58b", + "x-ms-client-request-id": "304be551238a5fd52f92028d5459264c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c152f7a-bb72-42b2-87ef-6e8f57f3d687", + "apim-request-id": "1305a5b7-d4e4-477e-a1d6-8ab2bdd66ee6", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:28 GMT", + "Date": "Fri, 30 Oct 2020 13:23:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "66bad6a4-7db3-4f45-81f1-fb89f9e3c97c", + "modelId": "8017943e-8836-4219-8056-26297c056b39", "status": "creating", - "createdDateTime": "2020-09-26T00:00:27Z", - "lastUpdatedDateTime": "2020-09-26T00:00:27Z" + "createdDateTime": "2020-10-30T13:23:44Z", + "lastUpdatedDateTime": "2020-10-30T13:23:44Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/66bad6a4-7db3-4f45-81f1-fb89f9e3c97c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8017943e-8836-4219-8056-26297c056b39?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9b63605676271ad963f9cf677b034b7d", + "x-ms-client-request-id": "7b751ff936bf51816122a8d214b2918b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b67adc7-5c93-4d89-bf57-acbfb7570f03", + "apim-request-id": "40b50875-d59e-4965-8282-de90a65af745", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:29 GMT", + "Date": "Fri, 30 Oct 2020 13:23:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "modelInfo": { - "modelId": "66bad6a4-7db3-4f45-81f1-fb89f9e3c97c", + "modelId": "8017943e-8836-4219-8056-26297c056b39", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-26T00:00:27Z", - "lastUpdatedDateTime": "2020-09-26T00:00:29Z" + "createdDateTime": "2020-10-30T13:23:44Z", + "lastUpdatedDateTime": "2020-10-30T13:23:46Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -488,7 +422,7 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/compose", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -498,101 +432,101 @@ "Content-Length": "124", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6972f2a0b5f1dc4187b9bb3fabd8af1e-d0647bcb6f566947-00", + "traceparent": "00-a4de04151aaf2e4f86ad01f4a8ec6b05-8bf7fed1160e0e4f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a90976003816afe879414ced1a19a7f6", + "x-ms-client-request-id": "ee42aa844a6433a62ed11b67a96bd58b", "x-ms-return-client-request-id": "true" }, "RequestBody": { "modelIds": [ - "81be4e4a-ec2d-4cc6-949d-bb4f5a177cff", - "66bad6a4-7db3-4f45-81f1-fb89f9e3c97c" + "7da24fa3-6696-477e-9cd8-f00bd708ce41", + "8017943e-8836-4219-8056-26297c056b39" ], "modelName": "My composed model" }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "402dd48c-94f0-4385-bbff-d4554d4228ae", + "apim-request-id": "c4d47574-a7e9-441b-b12e-29d8cb22e767", "Content-Length": "0", - "Date": "Sat, 26 Sep 2020 00:00:29 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e485ef2c-c9e1-49b1-b440-0be798a7d681", + "Date": "Fri, 30 Oct 2020 13:23:46 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "204" + "x-envoy-upstream-service-time": "158" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e485ef2c-c9e1-49b1-b440-0be798a7d681?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b7af13d6-8a7c-4254-ab2f-1ccd03d26f97?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b47c1d4cf64e0d64d1288a6a7a3eb82b", + "x-ms-client-request-id": "9b63605676271ad963f9cf677b034b7d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4366f7a9-78ed-40bb-a1c0-4c96a26c31ce", + "apim-request-id": "5d0b022a-5e6a-4470-8aec-f44653ffda25", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:29 GMT", + "Date": "Fri, 30 Oct 2020 13:23:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "e485ef2c-c9e1-49b1-b440-0be798a7d681", + "modelId": "b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", "modelName": "My composed model", "status": "creating", - "createdDateTime": "2020-09-26T00:00:30Z", - "lastUpdatedDateTime": "2020-09-26T00:00:30Z" + "createdDateTime": "2020-10-30T13:23:46Z", + "lastUpdatedDateTime": "2020-10-30T13:23:46Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e485ef2c-c9e1-49b1-b440-0be798a7d681?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b7af13d6-8a7c-4254-ab2f-1ccd03d26f97?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "33679e852b621d7477b422e52aebff4a", + "x-ms-client-request-id": "a90976003816afe879414ced1a19a7f6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2345ca4e-8f0d-43ef-97ed-055aefe79244", + "apim-request-id": "fc9c6f2a-fbb0-4ba4-84fd-c0207a805bca", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 26 Sep 2020 00:00:30 GMT", + "Date": "Fri, 30 Oct 2020 13:23:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "e485ef2c-c9e1-49b1-b440-0be798a7d681", + "modelId": "b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", "modelName": "My composed model", "attributes": { "isComposed": true }, "status": "ready", - "createdDateTime": "2020-09-26T00:00:30Z", - "lastUpdatedDateTime": "2020-09-26T00:00:30Z" + "createdDateTime": "2020-10-30T13:23:46Z", + "lastUpdatedDateTime": "2020-10-30T13:23:47Z" }, "composedTrainResults": [ { @@ -686,7 +620,7 @@ "accuracy": 1.0 } ], - "modelId": "81be4e4a-ec2d-4cc6-949d-bb4f5a177cff", + "modelId": "7da24fa3-6696-477e-9cd8-f00bd708ce41", "errors": [] }, { @@ -780,61 +714,61 @@ "accuracy": 1.0 } ], - "modelId": "66bad6a4-7db3-4f45-81f1-fb89f9e3c97c", + "modelId": "8017943e-8836-4219-8056-26297c056b39", "errors": [] } ] } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/66bad6a4-7db3-4f45-81f1-fb89f9e3c97c", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8017943e-8836-4219-8056-26297c056b39", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-98db2540b5cc894faaa9d42209b3cbf1-bfbb03ba3c9a104e-00", + "traceparent": "00-4199eb31ca464c43b3458861877f1481-b081fe033a395343-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5d1ad8529787092e12fbd8eeae7e343a", + "x-ms-client-request-id": "b47c1d4cf64e0d64d1288a6a7a3eb82b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "95832564-97db-4f22-a1ed-f2c7758a9782", + "apim-request-id": "4bbe9ed7-3ede-4bf6-8373-af371fc47e4e", "Content-Length": "0", - "Date": "Sat, 26 Sep 2020 00:00:30 GMT", + "Date": "Fri, 30 Oct 2020 13:23:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/81be4e4a-ec2d-4cc6-949d-bb4f5a177cff", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/7da24fa3-6696-477e-9cd8-f00bd708ce41", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6e37f359cdfe2143b048070e80537d9a-0c358f98f06bd54a-00", + "traceparent": "00-5be2884d404cda46b90da6df5386ad08-13eaaa5974e8a645-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200925.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7c68218974b22093a85e3c9ad47fe3e5", + "x-ms-client-request-id": "33679e852b621d7477b422e52aebff4a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "074ce24b-cf7f-4999-bf83-c33301dbd1a0", + "apim-request-id": "6d2f5e11-2101-4ad8-84d7-e000ea55ce24", "Content-Length": "0", - "Date": "Sat, 26 Sep 2020 00:00:31 GMT", + "Date": "Fri, 30 Oct 2020 13:23:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": [] } @@ -842,7 +776,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1411350031" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelFailsWithInvalidId.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelFailsWithInvalidId.json index d78b59f0bc97e..801d8ed81cccc 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelFailsWithInvalidId.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelFailsWithInvalidId.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ce0dddd43bdc3b46a3a4447532dd4576-56bfbfa57dab5e4d-00", + "traceparent": "00-5001e19da51e264996561a4704b00c7e-8441f1073475004b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201005.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3bf7e6cb988413cb54b0fb9b06f66cb8", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "cc60bfac-fa07-4d38-b492-c34976e7273e", + "apim-request-id": "c2089170-c3bf-4cbb-9e79-ebc77d42da08", "Content-Length": "0", - "Date": "Mon, 05 Oct 2020 20:35:36 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/feb4f139-942d-4a8e-b7b9-2b7023077e59", + "Date": "Fri, 30 Oct 2020 13:20:49 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a857070f-92b4-4a0f-ab85-75838994705e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "589" + "x-envoy-upstream-service-time": "81" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/feb4f139-942d-4a8e-b7b9-2b7023077e59?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a857070f-92b4-4a0f-ab85-75838994705e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201005.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d01d93cffae7c167890806c9da43a1a2", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "698ea711-5286-469e-83b7-83d2f7ff2b1c", + "apim-request-id": "4f4056c1-7f0a-4d7d-b1b2-5dbbbb505fd8", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Oct 2020 20:35:37 GMT", + "Date": "Fri, 30 Oct 2020 13:20:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "feb4f139-942d-4a8e-b7b9-2b7023077e59", + "modelId": "a857070f-92b4-4a0f-ab85-75838994705e", "status": "creating", - "createdDateTime": "2020-10-05T20:35:37Z", - "lastUpdatedDateTime": "2020-10-05T20:35:37Z" + "createdDateTime": "2020-10-30T13:20:49Z", + "lastUpdatedDateTime": "2020-10-30T13:20:49Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/feb4f139-942d-4a8e-b7b9-2b7023077e59?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a857070f-92b4-4a0f-ab85-75838994705e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201005.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6db6da9484786c66fbaeb96ed04bc5a8", "x-ms-return-client-request-id": "true" @@ -81,56 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb96319d-d6e9-4422-9c77-79f4a255be48", + "apim-request-id": "c4ae0fea-82c4-444d-93dc-db5c78fe9d19", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Oct 2020 20:35:38 GMT", + "Date": "Fri, 30 Oct 2020 13:20:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "141" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "feb4f139-942d-4a8e-b7b9-2b7023077e59", - "status": "creating", - "createdDateTime": "2020-10-05T20:35:37Z", - "lastUpdatedDateTime": "2020-10-05T20:35:37Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/feb4f139-942d-4a8e-b7b9-2b7023077e59?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201005.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e38f22f63a7bd0b47e36b27b91013811", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "552d2f8c-ce0a-4734-a3ee-da2ae4a56353", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Oct 2020 20:35:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "feb4f139-942d-4a8e-b7b9-2b7023077e59", + "modelId": "a857070f-92b4-4a0f-ab85-75838994705e", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-10-05T20:35:37Z", - "lastUpdatedDateTime": "2020-10-05T20:35:39Z" + "createdDateTime": "2020-10-30T13:20:49Z", + "lastUpdatedDateTime": "2020-10-30T13:20:51Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,7 +195,7 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/compose", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -238,30 +205,30 @@ "Content-Length": "124", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7cf06e7233d67940876ba2f2de76c0e1-8c1386e1fca4b54b-00", + "traceparent": "00-0fcc147e48c69749b5828c9af209080a-b9fb42093e079a4b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201005.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2c07590efe3f4a402db0d43941f8f03d", + "x-ms-client-request-id": "e38f22f63a7bd0b47e36b27b91013811", "x-ms-return-client-request-id": "true" }, "RequestBody": { "modelIds": [ - "feb4f139-942d-4a8e-b7b9-2b7023077e59", + "a857070f-92b4-4a0f-ab85-75838994705e", "00000000-0000-0000-0000-000000000000" ], "modelName": "My composed model" }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "7be62616-5e8a-450c-b40a-53f715ba9851", + "apim-request-id": "d59d5360-bb52-4ef2-9da0-e39c94f477f9", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Oct 2020 20:35:39 GMT", + "Date": "Fri, 30 Oct 2020 13:20:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "error": { @@ -271,28 +238,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/feb4f139-942d-4a8e-b7b9-2b7023077e59", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a857070f-92b4-4a0f-ab85-75838994705e", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-af74c009f711044eaf695118a91fa9ce-d074424e2a71c84d-00", + "traceparent": "00-f1fb45ef64b6ff4c87a09901d47761af-6d227cb9a2e8774a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201005.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b8d35e42beb3592625e5ef42d2eadafa", + "x-ms-client-request-id": "2c07590efe3f4a402db0d43941f8f03d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "71150559-db96-4679-b565-c50147f2e2e7", + "apim-request-id": "8c12f6af-7499-47f7-a39e-cba0a49ceded", "Content-Length": "0", - "Date": "Mon, 05 Oct 2020 20:35:39 GMT", + "Date": "Fri, 30 Oct 2020 13:20:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "64" }, "ResponseBody": [] } @@ -300,7 +267,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1493887981" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelFailsWithInvalidIdAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelFailsWithInvalidIdAsync.json index 3126223f83488..45ddd0aea33fe 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelFailsWithInvalidIdAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartCreateComposedModelFailsWithInvalidIdAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8cb5d0df6fe8d44abd73dc6a01ee333b-5972479dc7b72f42-00", + "traceparent": "00-d73c5c1f8e12214eade5590a3d8b437e-b7192ecd7120c144-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201005.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0b70c133bda3fee923cf131e979e0043", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "d5262756-14e5-4aac-bc2e-47f2e1c7ae1a", + "apim-request-id": "463571b6-a8b1-4a84-a75b-bc05cdc427e8", "Content-Length": "0", - "Date": "Mon, 05 Oct 2020 20:35:40 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/1ba758de-40ee-40a1-9dd9-8bc68b8cf6e1", + "Date": "Fri, 30 Oct 2020 13:23:48 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf939c0b-3833-4a34-937e-7dfd361c7ca5", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "281" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/1ba758de-40ee-40a1-9dd9-8bc68b8cf6e1?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf939c0b-3833-4a34-937e-7dfd361c7ca5?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201005.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b22350c200797e59954a1822a498613e", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ed71dca-757c-4e9f-a0fc-1e61267095d2", + "apim-request-id": "eafd93ba-9b8e-4f39-9955-ed049959a776", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Oct 2020 20:35:40 GMT", + "Date": "Fri, 30 Oct 2020 13:23:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "1ba758de-40ee-40a1-9dd9-8bc68b8cf6e1", + "modelId": "bf939c0b-3833-4a34-937e-7dfd361c7ca5", "status": "creating", - "createdDateTime": "2020-10-05T20:35:41Z", - "lastUpdatedDateTime": "2020-10-05T20:35:41Z" + "createdDateTime": "2020-10-30T13:23:48Z", + "lastUpdatedDateTime": "2020-10-30T13:23:48Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/1ba758de-40ee-40a1-9dd9-8bc68b8cf6e1?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf939c0b-3833-4a34-937e-7dfd361c7ca5?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201005.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8a60a659d627be57a7f5cb422ec75bb0", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7569630-d3f9-4faf-bea7-0e6515dedd8f", + "apim-request-id": "d9a06642-6788-4bbc-8f5b-161bbfbaf860", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Oct 2020 20:35:41 GMT", + "Date": "Fri, 30 Oct 2020 13:23:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "1ba758de-40ee-40a1-9dd9-8bc68b8cf6e1", + "modelId": "bf939c0b-3833-4a34-937e-7dfd361c7ca5", "status": "creating", - "createdDateTime": "2020-10-05T20:35:41Z", - "lastUpdatedDateTime": "2020-10-05T20:35:41Z" + "createdDateTime": "2020-10-30T13:23:48Z", + "lastUpdatedDateTime": "2020-10-30T13:23:48Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/1ba758de-40ee-40a1-9dd9-8bc68b8cf6e1?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf939c0b-3833-4a34-937e-7dfd361c7ca5?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201005.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a7e18fbefef3321667f27658a4c65a8a", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23f2d042-869b-4fc0-a7e1-ee8fefbfe681", + "apim-request-id": "b81fc5fb-2f05-4184-86d3-4e11a15685fe", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Oct 2020 20:35:42 GMT", + "Date": "Fri, 30 Oct 2020 13:23:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "1ba758de-40ee-40a1-9dd9-8bc68b8cf6e1", + "modelId": "bf939c0b-3833-4a34-937e-7dfd361c7ca5", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-10-05T20:35:41Z", - "lastUpdatedDateTime": "2020-10-05T20:35:43Z" + "createdDateTime": "2020-10-30T13:23:48Z", + "lastUpdatedDateTime": "2020-10-30T13:23:50Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,7 +228,7 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/compose", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/compose", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -238,30 +238,30 @@ "Content-Length": "124", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4307c55e0ba44a479267ba956de8952a-43e9ea69f3ce414d-00", + "traceparent": "00-cddd41e89e2dfd478a67baa3e1083058-61543b51aecb0b43-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201005.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f0c4d46d763deb1cf8640b84351750cd", "x-ms-return-client-request-id": "true" }, "RequestBody": { "modelIds": [ - "1ba758de-40ee-40a1-9dd9-8bc68b8cf6e1", + "bf939c0b-3833-4a34-937e-7dfd361c7ca5", "00000000-0000-0000-0000-000000000000" ], "modelName": "My composed model" }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "d710be9b-90e6-42d3-869e-7ca197828747", + "apim-request-id": "2e769112-def1-438f-9035-f3ba1d686314", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 05 Oct 2020 20:35:42 GMT", + "Date": "Fri, 30 Oct 2020 13:23:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "119" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "error": { @@ -271,15 +271,15 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/1ba758de-40ee-40a1-9dd9-8bc68b8cf6e1", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/bf939c0b-3833-4a34-937e-7dfd361c7ca5", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-48401784242e0e4b8a48d0c117a12d30-a5473e280f7f2f4c-00", + "traceparent": "00-53f31a0c2892af48bca4afd8b0c0d11a-9b7b2c6e657db444-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201005.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "156468eebab75a4b902d223460fe1ae0", "x-ms-return-client-request-id": "true" @@ -287,12 +287,12 @@ "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "4e7f6fd6-47d0-4d7d-a3b3-a30611cdf3d8", + "apim-request-id": "50af56c7-9058-488d-955c-48ba1512e44d", "Content-Length": "0", - "Date": "Mon, 05 Oct 2020 20:35:42 GMT", + "Date": "Fri, 30 Oct 2020 13:23:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": [] } @@ -300,7 +300,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "896473753" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,False).json index 1e211703e4f6c..8ede122f95fb3 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-248d695d329d7548b4aec693144602e7-9e1239ef3a936d4e-00", + "traceparent": "00-09f0ba92817f5e439735396f9a8108fd-f542b5a884d93f4e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d4121583e9106d0ea4800af021f472a4", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "6c35bb89-c2b4-4853-8400-fbad43f82638", + "apim-request-id": "4496d7ab-079f-42e1-aae7-dab4792100e6", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:21:23 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "Date": "Fri, 30 Oct 2020 13:21:54 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "121" + "x-envoy-upstream-service-time": "102" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2d8d27bb0a95388b4fc6218c12593208", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c5790c47-19db-4fd2-9c39-0f5831a89163", + "apim-request-id": "fd0acc42-81b3-4127-bc02-564675c80d1d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:23 GMT", + "Date": "Fri, 30 Oct 2020 13:21:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "407786da10b4f51d9d7ed84222418b8b", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aab59fc2-39bf-494f-a7ae-579703612096", + "apim-request-id": "348484d8-7414-43c1-afb2-dc0d4c4f9f59", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:24 GMT", + "Date": "Fri, 30 Oct 2020 13:21:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c0fcfdb7f6eb79978ada844ac8825a4a", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "69e412c7-e199-458a-8eca-1eea6334302d", + "apim-request-id": "13f9c172-5764-48cb-94ce-b542a89f8dd6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:25 GMT", + "Date": "Fri, 30 Oct 2020 13:21:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9a15024e317dabef099890173148160e", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65caa55f-3bf9-4567-8364-1e7bd1ab13cf", + "apim-request-id": "1edbed0d-861d-4ae8-9df4-57f662459793", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:26 GMT", + "Date": "Fri, 30 Oct 2020 13:21:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "14d5953a715de41deffdb6da8bd32c1b", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "090c2e3b-90f3-4d13-9b47-d3c48fbe5880", + "apim-request-id": "d2de847f-ba2e-473d-b663-9a91c90b9763", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:27 GMT", + "Date": "Fri, 30 Oct 2020 13:22:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1ff48d23f02b860e0e51b752657f4842", "x-ms-return-client-request-id": "true" @@ -213,9 +213,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c3309ae-e91f-4303-aadf-619fe5b04854", + "apim-request-id": "98984e64-f08c-4862-ad00-be8412422617", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:28 GMT", + "Date": "Fri, 30 Oct 2020 13:22:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -223,22 +223,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "330f76c346acddede530ab7f7b142035", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83b7245e-630e-4770-b011-90e8a477ab5b", + "apim-request-id": "733c8fb5-8e16-4789-a2d1-c86a6496ff0a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:29 GMT", + "Date": "Fri, 30 Oct 2020 13:22:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a3f4746bf6534ae2864e060bb9ca7e6f", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ad19ea5-028e-4908-844c-96a0166d70f1", + "apim-request-id": "ac33db6f-0e2c-40b8-823c-b39bb3122cc7", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:30 GMT", + "Date": "Fri, 30 Oct 2020 13:22:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "141773b5f9c4dd6e9f173afa448e0bf9", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e5d0e70-ae4b-45d9-8597-87c74cf9c117", + "apim-request-id": "ddc08cfc-92f4-4680-adbe-35b7abb7160d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:31 GMT", + "Date": "Fri, 30 Oct 2020 13:22:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f1e78130a58bccef93c4ac5e3fe2231a", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d7048ebe-cfcf-4956-b241-b1d0067ecc27", + "apim-request-id": "1b5ab4f1-58d4-4adc-b6b7-4ec6b0fc162a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:32 GMT", + "Date": "Fri, 30 Oct 2020 13:22:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "07ca3cb20bfd72710516033bbce805f8", "x-ms-return-client-request-id": "true" @@ -378,32 +378,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "159fb4dd-934b-4e32-a054-a1b89212b164", + "apim-request-id": "e12ecf65-40eb-4e47-b8bc-d117d0c221c6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:33 GMT", + "Date": "Fri, 30 Oct 2020 13:22:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "38db0d438de210e3844a80ff4c109dbd", "x-ms-return-client-request-id": "true" @@ -411,32 +411,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3cb9219d-6abf-474f-bfb2-278f100958cd", + "apim-request-id": "47ac5daa-5517-4bc1-8395-da54765ef254", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:34 GMT", + "Date": "Fri, 30 Oct 2020 13:22:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "08481ff403c324fb0f75eb75a1b30fab", "x-ms-return-client-request-id": "true" @@ -444,32 +444,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a09687c-7980-4162-8499-0040604fc49b", + "apim-request-id": "f2fe598a-8032-48e8-800e-ba499687c773", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:35 GMT", + "Date": "Fri, 30 Oct 2020 13:22:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "321ab4bfeb06253859ba83b38b7225f5", "x-ms-return-client-request-id": "true" @@ -477,174 +477,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f64c38c-9b21-4eda-a549-e5403e642fb4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9d474578fd9f3f3411b6286da16e6ed0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8fe31f16-8e2f-4b35-abd1-964f2c4f3bda", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9840d53a6bf509b7e723af098048999d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "66d8285a-51c7-4159-9a45-a562c38bcaf7", + "apim-request-id": "59a30d8d-6e34-41b8-b716-f11b9c94aa3b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:38 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5cfcf650726bc20c7fdb2050c2ca83ea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c5caf1f1-e88d-4c97-8eba-49a118c0e7e2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b578b24c8c320dff8e3eb67c4d2abec9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bbe38d73-41e5-4e21-bf6d-1796378e19be", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ab1d8a1c1272c865c97e181a4b66461c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fe18d6b6-913c-4e90-ba91-50ede05b6c56", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:42 GMT", + "Date": "Fri, 30 Oct 2020 13:22:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -652,98 +487,32 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "cebdc49fe3d0c36bf7efcd2dbc8f7454", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "13560814-6959-4219-b9fc-b99520b46cac", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:43 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3833561cd8ad39784cb0ecb373e4c127", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5985d3b6-1baf-4d0a-9aa4-c3a3e392a358", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:44 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "89dc99f8f06d38f91e5ab38344370b39", + "x-ms-client-request-id": "9d474578fd9f3f3411b6286da16e6ed0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c6b3fe4-890f-4241-b371-fca3e09cac45", + "apim-request-id": "fda70137-1ed4-4de2-b67a-f1f0e6e5054c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:45 GMT", + "Date": "Fri, 30 Oct 2020 13:22:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -751,395 +520,32 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f5fdc3090d32c76f4c83811ff7b74f12", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ea3ffaea-81a5-4f1d-b17b-08e4b213d7f3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:46 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2235a62debb22ce75dfa195324f5f515", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fb4ee9ad-cbbe-4f0c-951c-1e9e5fa9f6e2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:47 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b0aab3a4cce6eaf42a153cea6ed94167", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2cb0ded8-faf4-45ba-ad30-45f6e1ef3f36", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9e55a10ae8021e86dcd19838f41ca256", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0cbd03c2-b74c-48b7-9d23-519a9363eec9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:49 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "447b6c8d9f0d612bb14af89daefdbe83", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4aedacb5-ca82-44f7-a590-1f40f6b83ad0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5058" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8348b2b8579fbb122c8bd31534bcf50e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "111c8d0f-bdc4-4e90-a318-ec13e36238eb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "015ce673fd5e6b5975f4ecb8f0e970df", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bf3343a9-89dd-43b0-a8df-e3dedca768c9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "427f14121ed335b65abf1782cb162df4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ed1343ad-2685-458b-a624-1f608bc571cb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c82ae954bca0bb2458dd0eab6a5aca43", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cd27d101-8213-4634-855e-610b391d914c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1f02f41bb33d543a2f26a79fe6d79f5e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "602a7b50-b492-4f0c-8477-72804112a37c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "0763f8c6a8bf563ef0c4eaf60f0aca00", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "92479b46-dfad-4094-9bee-b32704f86e2b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d766d4f40e13a1b6aed598791585d480", + "x-ms-client-request-id": "9840d53a6bf509b7e723af098048999d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed9e58f4-03ba-4729-bc89-e70dacff3f06", + "apim-request-id": "c7ba2ca0-f9a2-4626-9516-2aafc5e870f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:03 GMT", + "Date": "Fri, 30 Oct 2020 13:22:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -1147,32 +553,32 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b5c033b5-b3b4-4a68-8744-0f7509be8504?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "72e5af3dc3f67384b5ac2e79c9444424", + "x-ms-client-request-id": "5cfcf650726bc20c7fdb2050c2ca83ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf349d19-99e7-4f26-850c-3e26c6a34fa4", + "apim-request-id": "e8e1e3a4-6afa-4b78-90aa-3295a9ef6a8c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:04 GMT", + "Date": "Fri, 30 Oct 2020 13:22:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -1180,55 +586,36 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:21:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fffcab2a-f5f1-490f-94a1-a52c4c65a3e4?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "12aaa75bc870b84a41c158e90fc4416b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "371759ea-0106-4c35-b0d0-567d72028159", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "ready", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:22:04Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:22:15Z" }, "keys": { "clusters": { "0": [ + "25% discount on program guide", + "50% discount on program guide", + "Bronze Sponsor", "Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in", + "Full Booth", + "Full booth", + "Full page ad in program guide", + "Gold Sponsor", + "Half Booth", + "Half page ad in program guide", "Included", + "Logo on poster", "Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person", "Package", + "Post-keynote thank you", + "Pre-keynote thank you", "Price", "Rates:", + "Silver Sponsor", "Vendor #:", "Vendor Registration", + "advertisements", "below, and attach a check made out to:", "waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form" ], @@ -1282,7 +669,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_MULTIPAGE_BLOB_CONTAINER_SAS_URL": "https://azuresdktrainingdata.blob.core.windows.net/multipage-vendor-forms?sp=rl\u0026st=2020-06-25T04:55:22Z\u0026se=2021-06-26T04:55:00Z\u0026sv=2019-10-10\u0026sr=c\u0026sig=Z25JFTIsP3tbxDjHP2CK05HxIS9uz1E%2FDaRfjeEUyaU%3D", "RandomSeed": "1779412838" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,False)Async.json index 2cbf779558b29..cdbcfe21b8b7a 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a8af1ab014e19047b486b2dfe5fcac5f-a78089683b136243-00", + "traceparent": "00-336f80c56d22d849b8f556647ebd750c-b04364746daa0e42-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e9373275ca1bcffbe876b8f4587cbe58", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "24a4222a-2957-4520-ba56-70e2dfd2760e", + "apim-request-id": "ecc08bf4-22b6-49bb-a38a-117bf1985cff", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:24:26 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "Date": "Fri, 30 Oct 2020 13:24:52 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "260" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c105a5a136bf991a3838540add9af9a8", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c8ac653-4493-4ada-a9df-2a5ddc4f12f7", + "apim-request-id": "e8cf01f6-07a1-4014-a6f7-0ea95ab7377a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:26 GMT", + "Date": "Fri, 30 Oct 2020 13:24:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d69838af740ee010fa71a00483c89fdc", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c5f4b4a9-dbff-4c68-9e5c-f92325d38974", + "apim-request-id": "812efbcb-7a87-4443-bb18-640a841b4188", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:27 GMT", + "Date": "Fri, 30 Oct 2020 13:24:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f7f9463880d63e50189db0e376f0f24e", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5cf3df33-bb87-4c84-aa3a-ffcc654fbcb2", + "apim-request-id": "2abfb83e-081f-4967-bd07-99bd5c719ba3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:28 GMT", + "Date": "Fri, 30 Oct 2020 13:24:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1f44107de8e32c499425c74d96151570", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a64f236e-c8fc-4b4f-a1a4-fc7d5999dc64", + "apim-request-id": "ca53b510-c64a-4faa-9ff8-27de30ba8413", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:29 GMT", + "Date": "Fri, 30 Oct 2020 13:24:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "96d2779801a02ed2e85abe71c42d6a09", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cfde184f-0767-48f9-8115-3752d3208a8c", + "apim-request-id": "8f4d141f-5934-4ba8-99b6-33d3b2b5177f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:30 GMT", + "Date": "Fri, 30 Oct 2020 13:24:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7387517f7f8350f8fccc62b1b902a702", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eb12831d-c32b-4d93-8fac-02b2e2d2376c", + "apim-request-id": "22ff0446-51f8-4471-bddb-d17b48a70d87", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:31 GMT", + "Date": "Fri, 30 Oct 2020 13:24:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fe4a3f875b1d7bae3e15378929d86866", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c980184-f0bb-4e4d-8c6f-942be37bc97e", + "apim-request-id": "f718951f-3bdf-4170-97a5-178ae0a38aec", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:32 GMT", + "Date": "Fri, 30 Oct 2020 13:24:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "45cebdbba28e19ed7e829ad39f2175e5", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9811020f-3657-4f47-a931-434951bd3624", + "apim-request-id": "93d049cd-2326-4eed-91e5-37c2dddd6d67", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:33 GMT", + "Date": "Fri, 30 Oct 2020 13:25:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "85e9bcb26be324eba30b346d486f2624", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "27bb816a-6d42-41b9-a046-ec0a6a0951ec", + "apim-request-id": "821e17fd-bace-49a1-ad0a-5cfa11a2a1f1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:34 GMT", + "Date": "Fri, 30 Oct 2020 13:25:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fbf5fb646234e4735131809bc0dadc1d", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df12ce29-8449-403a-b2d9-90f0cc68caaa", + "apim-request-id": "95bda772-15b6-4628-bf67-29fd6ba46477", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:35 GMT", + "Date": "Fri, 30 Oct 2020 13:25:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6dd752a0e2ee5083d2a9a2836e7fd10f", "x-ms-return-client-request-id": "true" @@ -378,32 +378,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d9083066-b4a3-4e80-958a-0efd5b36e45b", + "apim-request-id": "9877e9bf-1911-434c-a9a5-b574791c774d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:36 GMT", + "Date": "Fri, 30 Oct 2020 13:25:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a36e755b792b50b0480433b2ea4f63c8", "x-ms-return-client-request-id": "true" @@ -411,32 +411,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e2004f66-ef4f-46a5-8770-a9da377aa6bc", + "apim-request-id": "cd73efe9-7891-489d-9779-27b26dbc4407", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:37 GMT", + "Date": "Fri, 30 Oct 2020 13:25:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f5cd172eb997823578a5298bbff076d2", "x-ms-return-client-request-id": "true" @@ -444,32 +444,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "41b1668a-cf0b-4f62-88ca-0c42ed6b540e", + "apim-request-id": "bfa862cc-21fd-4d50-8b0c-ad45bd729daf", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:38 GMT", + "Date": "Fri, 30 Oct 2020 13:25:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4a40715f396b26f1a28724e9afd06582", "x-ms-return-client-request-id": "true" @@ -477,32 +477,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "01b2eb18-9966-4310-a4f7-8db948d14abd", + "apim-request-id": "ddbe734b-6ee4-4e10-8337-0496f8458a45", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:40 GMT", + "Date": "Fri, 30 Oct 2020 13:25:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5654d945dbb2a17740ec2a8550259058", "x-ms-return-client-request-id": "true" @@ -510,32 +510,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc2233ee-75b7-4cde-9e7f-ed3994d0d2f6", + "apim-request-id": "6b1ff561-f9f2-43ea-ba60-d79c68c922a4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:41 GMT", + "Date": "Fri, 30 Oct 2020 13:25:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7952618e180ff55c25a65310944bd2a8", "x-ms-return-client-request-id": "true" @@ -543,32 +543,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "09c5e97a-aa4f-4a04-a772-056599ba900f", + "apim-request-id": "e68274bd-e213-453a-b9a9-98e1e3709168", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:42 GMT", + "Date": "Fri, 30 Oct 2020 13:25:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e645a63f209b841ff99e0a7f0e6bd67c", "x-ms-return-client-request-id": "true" @@ -576,32 +576,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ba126688-5524-4da1-be8a-7b2e4c97b3e6", + "apim-request-id": "037440ef-56ca-425f-a575-0d6672013016", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:43 GMT", + "Date": "Fri, 30 Oct 2020 13:25:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4d5bccf6ec7d2d737c5f300c88660df4", "x-ms-return-client-request-id": "true" @@ -609,42 +609,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "29d2bdef-c687-4e45-a813-8d130b835de9", + "apim-request-id": "0ad7c907-e892-4c0a-99d1-013accae79f1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:44 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", - "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "aa468219a9e06ebc41ce7f710edde6b9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d74a2f23-a9d9-4531-a869-c0e350739e67", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:45 GMT", + "Date": "Fri, 30 Oct 2020 13:25:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -652,121 +619,69 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4f79033e-d86b-4151-9d4b-ea371230d9f7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c81ad6d084f0532a3317693cef13fc93", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "489f7cc9-348e-4c86-9e8d-83c5e3b20ff7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:46 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", - "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "8c6516912c254c9c0fed0caf6d011f9f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8b19faa4-66a5-41a0-a8f8-5f6e658fc9da", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:47 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", - "status": "creating", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/ccc3b3e0-ce54-483b-8ad4-73c43680bf6e?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b13b7778444c940457f276c840807e2d", + "x-ms-client-request-id": "aa468219a9e06ebc41ce7f710edde6b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a4fbf2c-7d0f-4110-abee-b4aa9f2659e1", + "apim-request-id": "e7ef7aec-31a4-4c9b-a929-8c0f850f41a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:48 GMT", + "Date": "Fri, 30 Oct 2020 13:25:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "ready", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:47Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:25:13Z" }, "keys": { "clusters": { "0": [ + "25% discount on program guide", + "50% discount on program guide", + "Bronze Sponsor", "Contoso Ltd. Conference will be held on May 28-29, 2020 at the Elm Conference Center in", + "Full Booth", + "Full booth", + "Full page ad in program guide", + "Gold Sponsor", + "Half Booth", + "Half page ad in program guide", "Included", + "Logo on poster", "Maple City, Massachusetts. The conference has sold out of its 1,500 tickets, with a 400 person", "Package", + "Post-keynote thank you", + "Pre-keynote thank you", "Price", "Rates:", + "Silver Sponsor", "Vendor #:", "Vendor Registration", + "advertisements", "below, and attach a check made out to:", "waitlist. Vendor applications are being accepted through Feb 28, 2020. Please fill in the form" ], @@ -820,7 +735,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_MULTIPAGE_BLOB_CONTAINER_SAS_URL": "https://azuresdktrainingdata.blob.core.windows.net/multipage-vendor-forms?sp=rl\u0026st=2020-06-25T04:55:22Z\u0026se=2021-06-26T04:55:00Z\u0026sv=2019-10-10\u0026sr=c\u0026sig=Z25JFTIsP3tbxDjHP2CK05HxIS9uz1E%2FDaRfjeEUyaU%3D", "RandomSeed": "1054296771" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,True).json index e36605878c76d..52b5e6c9888b7 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eaead128d38cf44bb7fda7237d0e28f8-52750defdfb5064b-00", + "traceparent": "00-e6320115dd96e842bfa07deb4059c693-5c9edeffda44a04f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3d5f803a833180d586376a495109ab9b", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "5dea0273-4b8e-4a08-8bb1-0fdf732936c0", + "apim-request-id": "fea6145a-9c13-4b97-8321-8b07557c3f90", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:21:20 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/73323aac-41dc-4c87-8ed1-a0163184fcf6", + "Date": "Fri, 30 Oct 2020 13:21:52 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/97be7970-9a98-4b3f-980c-77bf06f29131", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "387" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/73323aac-41dc-4c87-8ed1-a0163184fcf6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/97be7970-9a98-4b3f-980c-77bf06f29131?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4f2036bcf076346c2f0bd896a49c3196", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c480a94-cff7-42d5-84e8-8bb128fd28ce", + "apim-request-id": "82503e71-0269-487b-ba19-e0a2b6570dfd", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:20 GMT", + "Date": "Fri, 30 Oct 2020 13:21:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "73323aac-41dc-4c87-8ed1-a0163184fcf6", + "modelId": "97be7970-9a98-4b3f-980c-77bf06f29131", "status": "creating", - "createdDateTime": "2020-09-09T22:21:20Z", - "lastUpdatedDateTime": "2020-09-09T22:21:20Z" + "createdDateTime": "2020-10-30T13:21:52Z", + "lastUpdatedDateTime": "2020-10-30T13:21:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/73323aac-41dc-4c87-8ed1-a0163184fcf6?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/97be7970-9a98-4b3f-980c-77bf06f29131?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "77e02286265e85aaaba2e27cde4e6c36", "x-ms-return-client-request-id": "true" @@ -81,56 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "07e42dd3-e536-4997-9316-536a560817bb", + "apim-request-id": "d311f5ae-eae3-42c6-ae2e-c0143fd1555f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:21 GMT", + "Date": "Fri, 30 Oct 2020 13:21:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "73323aac-41dc-4c87-8ed1-a0163184fcf6", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:20Z", - "lastUpdatedDateTime": "2020-09-09T22:21:20Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/73323aac-41dc-4c87-8ed1-a0163184fcf6?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "0078dfb23cb54963142a0e26ab3fdbea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fe6c2051-96e2-4c80-ad28-5d15809e64f4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "73323aac-41dc-4c87-8ed1-a0163184fcf6", + "modelId": "97be7970-9a98-4b3f-980c-77bf06f29131", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:21:20Z", - "lastUpdatedDateTime": "2020-09-09T22:21:22Z" + "createdDateTime": "2020-10-30T13:21:52Z", + "lastUpdatedDateTime": "2020-10-30T13:21:54Z" }, "trainResult": { "averageModelAccuracy": 0.971, @@ -198,7 +165,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_MULTIPAGE_BLOB_CONTAINER_SAS_URL": "https://azuresdktrainingdata.blob.core.windows.net/multipage-vendor-forms?sp=rl\u0026st=2020-06-25T04:55:22Z\u0026se=2021-06-26T04:55:00Z\u0026sv=2019-10-10\u0026sr=c\u0026sig=Z25JFTIsP3tbxDjHP2CK05HxIS9uz1E%2FDaRfjeEUyaU%3D", "RandomSeed": "427345950" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,True)Async.json index 60aa80c4f0037..5bdb685d7d59f 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(False,True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c24c8a6e20a24d4f83509934a192d076-2f3b67d13f229149-00", + "traceparent": "00-284910ce52d8e9418969fefb2dd9295c-c8797f9c3b1c7748-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6c055360e464a472530af443120385b1", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "c68398db-aa92-40dc-a324-75876f78b822", + "apim-request-id": "c4ad40d5-ed6b-41f7-b9a5-3383e658c1ae", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:24:23 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/edfb6496-b669-404c-8ff9-e0693aa71e82", + "Date": "Fri, 30 Oct 2020 13:24:51 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/96769aa4-eb33-45e2-8536-0dc4e5ec375c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "218" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/edfb6496-b669-404c-8ff9-e0693aa71e82?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/96769aa4-eb33-45e2-8536-0dc4e5ec375c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d2e90fb4a0ca4c46989a735117ea2440", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "03b5fa84-7257-4b1b-aed9-3ce710154982", + "apim-request-id": "1e7a3a02-5a83-48cc-9d68-e1822d321c2a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:23 GMT", + "Date": "Fri, 30 Oct 2020 13:24:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "edfb6496-b669-404c-8ff9-e0693aa71e82", + "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", "status": "creating", - "createdDateTime": "2020-09-09T22:24:23Z", - "lastUpdatedDateTime": "2020-09-09T22:24:23Z" + "createdDateTime": "2020-10-30T13:24:51Z", + "lastUpdatedDateTime": "2020-10-30T13:24:51Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/edfb6496-b669-404c-8ff9-e0693aa71e82?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/96769aa4-eb33-45e2-8536-0dc4e5ec375c?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b6508abbac40a2a90c786760538c6bc6", "x-ms-return-client-request-id": "true" @@ -81,56 +81,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bfc412ac-b755-433d-85ff-b16dec745e89", + "apim-request-id": "1259be0c-a7c9-442d-b058-42c9095d6d60", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:24 GMT", + "Date": "Fri, 30 Oct 2020 13:24:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "modelInfo": { - "modelId": "edfb6496-b669-404c-8ff9-e0693aa71e82", - "status": "creating", - "createdDateTime": "2020-09-09T22:24:23Z", - "lastUpdatedDateTime": "2020-09-09T22:24:23Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/edfb6496-b669-404c-8ff9-e0693aa71e82?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "80704ec4fa58bf4b0cb8d3ca70208c68", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c03a3c24-073a-4cd0-b0c1-2badfa57ab0f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:25 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "edfb6496-b669-404c-8ff9-e0693aa71e82", + "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:24:23Z", - "lastUpdatedDateTime": "2020-09-09T22:24:25Z" + "createdDateTime": "2020-10-30T13:24:51Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" }, "trainResult": { "averageModelAccuracy": 0.971, @@ -198,7 +165,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "FORM_RECOGNIZER_MULTIPAGE_BLOB_CONTAINER_SAS_URL": "https://azuresdktrainingdata.blob.core.windows.net/multipage-vendor-forms?sp=rl\u0026st=2020-06-25T04:55:22Z\u0026se=2021-06-26T04:55:00Z\u0026sv=2019-10-10\u0026sr=c\u0026sig=Z25JFTIsP3tbxDjHP2CK05HxIS9uz1E%2FDaRfjeEUyaU%3D", "RandomSeed": "396288564" } diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,False).json index 9c95355622d03..fdbc39a55e9b1 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-320dbfffa7630a409c526728e91197d4-12098421d0500148-00", + "traceparent": "00-aa0a7a620d410941b63d27e8453f4e97-8d6cd099b038254b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "51813a0bb3f296396467168645ac9067", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "4ad88afe-2aa2-4d61-82b3-92d0e0851e66", + "apim-request-id": "89982b0a-7b96-4552-b996-258f9c5fc6b2", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:21:06 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b", + "Date": "Fri, 30 Oct 2020 13:21:38 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3d452732-d856-4579-bb92-817af8438a2f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3d452732-d856-4579-bb92-817af8438a2f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f94112ba166ad082d88b2d10a575a60d", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "44b4673b-ee3d-457d-bd4a-ce0a6a1a07f7", + "apim-request-id": "0aabd020-e5f8-440d-80e5-0f891221cdd8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:06 GMT", + "Date": "Fri, 30 Oct 2020 13:21:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", "status": "creating", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3d452732-d856-4579-bb92-817af8438a2f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "47566cea0600c8840fefe4b4758269cb", "x-ms-return-client-request-id": "true" @@ -81,9 +81,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4bd065c-6b57-4e99-a612-0e9e8702bc8e", + "apim-request-id": "850fafae-a29b-45a9-9c1f-a17bde9ea9f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:07 GMT", + "Date": "Fri, 30 Oct 2020 13:21:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -91,22 +91,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", "status": "creating", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3d452732-d856-4579-bb92-817af8438a2f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f8d1737c6e90f56eb7b178668629f1ef", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e9d867f7-bc81-421d-a6f0-f91a88b39d7d", + "apim-request-id": "93cbccb8-559a-4076-bf08-4740080e3f83", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:08 GMT", + "Date": "Fri, 30 Oct 2020 13:21:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", "status": "creating", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3d452732-d856-4579-bb92-817af8438a2f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d89b09c04956b3668d78e97a31ce5a56", "x-ms-return-client-request-id": "true" @@ -147,9 +147,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c8da4ed-3971-408b-b80f-f68b802e358b", + "apim-request-id": "02cebca9-669b-42af-9994-92cf834dda7a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:09 GMT", + "Date": "Fri, 30 Oct 2020 13:21:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -157,22 +157,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", "status": "creating", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3d452732-d856-4579-bb92-817af8438a2f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "32946121aea37b7cfd60904f8d1e42e6", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d28d32dc-176f-4f10-880b-53462024778c", + "apim-request-id": "e160f7e2-0d12-4b31-8667-d238014873b2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:10 GMT", + "Date": "Fri, 30 Oct 2020 13:21:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", "status": "creating", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3d452732-d856-4579-bb92-817af8438a2f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6cf4f5fe91e733750c1e6a1785f3c3e9", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "13072591-b709-4260-b228-d7a70306377b", + "apim-request-id": "101c4eeb-8cfe-4599-8959-00c86bd1062f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:11 GMT", + "Date": "Fri, 30 Oct 2020 13:21:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", "status": "creating", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3d452732-d856-4579-bb92-817af8438a2f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "24452256be94114b8c1fdaf5b817256f", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "53b7c140-1f96-4601-aa67-944ae1facec6", + "apim-request-id": "a1e97d2e-68e7-4c21-9cba-54a2a4021572", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:12 GMT", + "Date": "Fri, 30 Oct 2020 13:21:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", "status": "creating", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3d452732-d856-4579-bb92-817af8438a2f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3c7c0336eeda906fec6026854364f60a", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "246a2ffb-bee4-4aa1-9533-3ffaf347ef92", + "apim-request-id": "fd251891-9b02-4b22-8956-74c546a144fc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:13 GMT", + "Date": "Fri, 30 Oct 2020 13:21:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", "status": "creating", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3d452732-d856-4579-bb92-817af8438a2f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6bf8a79d1ed83f51a9e2dfc7b67f7af4", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d84ca337-f3dd-4e5c-9c35-c426efa59e26", + "apim-request-id": "a1bdb1e2-562e-44a2-8a3d-849e543dd0f1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:14 GMT", + "Date": "Fri, 30 Oct 2020 13:21:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", "status": "creating", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3d452732-d856-4579-bb92-817af8438a2f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "81e1fbf88677680eb3b5373498c6cd27", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "556bb46f-084d-45f6-ae83-df43a3e74dd3", + "apim-request-id": "3ce8d815-22ae-4bdb-ba39-da2eae300da6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:15 GMT", + "Date": "Fri, 30 Oct 2020 13:21:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", "status": "creating", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/3d452732-d856-4579-bb92-817af8438a2f?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1157d029ba1e1796b23c93f70ea7d96d", "x-ms-return-client-request-id": "true" @@ -378,119 +378,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "883ed093-a89b-49d7-b65f-02ad484773d0", + "apim-request-id": "4129ec30-755a-4fc6-b7b8-61f56de019c0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:16 GMT", + "Date": "Fri, 30 Oct 2020 13:21:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "488c31e5758316929890b723e61ca7e3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c346a4c1-8826-4209-8a73-21fa9537b945", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e69eb71469273ed565c9ce3af3165a0b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ad7ae0bd-2d64-45ba-86a4-237c798d85e5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/20e398ce-1056-4042-aa99-73d5e1774d9b?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "674fcadb8539b3a43d41798e02723196", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "95da74fa-28a4-48e2-a1f8-233964610793", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:19 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", "status": "ready", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:19Z" + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:50Z" }, "keys": { "clusters": { @@ -563,7 +464,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "371983793" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,False)Async.json index 24459f942dcc0..f9a876a4a838e 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aa6292669d91054783bb51fdc9a274e2-8fc4d55ce1c04847-00", + "traceparent": "00-ce6ebd17c2b8f142aa6b26493e17106e-f5a3095c52f5074b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "54e591343d4ffc39f7e5d701e702fcb3", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "0a5d9899-53b4-4447-b820-ae797c454e4f", + "apim-request-id": "b7027fa0-fe72-4f2a-bab2-07a2a605912a", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:24:08 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "Date": "Fri, 30 Oct 2020 13:24:37 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/43bc2d9d-10f1-4466-be33-546ae07a7a28", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "284" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/43bc2d9d-10f1-4466-be33-546ae07a7a28?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6e538bfaf3df28470abc109a3bc0e423", "x-ms-return-client-request-id": "true" @@ -48,9 +48,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b9c02d4d-1408-4a41-bf39-650af5cd5872", + "apim-request-id": "e359d73f-6847-496c-8906-bd00f9b4cf59", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:08 GMT", + "Date": "Fri, 30 Oct 2020 13:24:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,22 +58,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/43bc2d9d-10f1-4466-be33-546ae07a7a28?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e7b98c78bd28c0106ba9ab871f544402", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "735d6005-57e1-41f0-8e11-0e15502aac93", + "apim-request-id": "439367ae-a8ff-4069-8786-984e0ef8b5e8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:09 GMT", + "Date": "Fri, 30 Oct 2020 13:24:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/43bc2d9d-10f1-4466-be33-546ae07a7a28?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7a7342685ab7416a4abc4a932d9ec136", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "64e2ebf4-1276-4a60-bd1d-80c44801f82e", + "apim-request-id": "0f9a3c28-f2d5-44e5-b44b-668dee1dd7ab", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:10 GMT", + "Date": "Fri, 30 Oct 2020 13:24:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/43bc2d9d-10f1-4466-be33-546ae07a7a28?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5b89b40114483c8b7b92033647bf08b5", "x-ms-return-client-request-id": "true" @@ -147,9 +147,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e9af0d61-9070-4ea8-bd20-405086243e29", + "apim-request-id": "6a25303e-7994-41fd-996a-416fe2c05b47", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:11 GMT", + "Date": "Fri, 30 Oct 2020 13:24:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -157,22 +157,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/43bc2d9d-10f1-4466-be33-546ae07a7a28?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f8320d77694d1d6b22789c6b727c92cc", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd58a1b1-27ac-4411-bd1b-7281e390a68b", + "apim-request-id": "df1b6867-3529-4136-b5f3-bab0f75543f2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:12 GMT", + "Date": "Fri, 30 Oct 2020 13:24:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/43bc2d9d-10f1-4466-be33-546ae07a7a28?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6b8674e7e9cb54b9b736ff245733f98b", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a21ccca-8a22-4e8d-9bb3-71bcb62df781", + "apim-request-id": "f73bf5f5-883a-4ee8-8395-9d6105443ae2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:13 GMT", + "Date": "Fri, 30 Oct 2020 13:24:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/43bc2d9d-10f1-4466-be33-546ae07a7a28?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "201b95b4c86c97e9486b39d0771fcafe", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "173bd9d3-2a14-44cc-afbd-7d93df1236f7", + "apim-request-id": "a1a9d726-7212-4516-a9d3-2f58936fe4f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:14 GMT", + "Date": "Fri, 30 Oct 2020 13:24:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/43bc2d9d-10f1-4466-be33-546ae07a7a28?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d34e36ff9d398eea53dd41166a47c6ee", "x-ms-return-client-request-id": "true" @@ -279,9 +279,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "63d1da1c-858b-4ace-99fd-585b6b9da3c5", + "apim-request-id": "69e83e77-9269-4d40-9e5b-5223719866bd", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:15 GMT", + "Date": "Fri, 30 Oct 2020 13:24:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -289,22 +289,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/43bc2d9d-10f1-4466-be33-546ae07a7a28?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ddb7117e72611f608aee235fafe9dc97", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5e79ff5-ae56-47c0-9347-17d2f8cebc62", + "apim-request-id": "6789587e-ac1c-450b-932c-f191f3fb87ee", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:16 GMT", + "Date": "Fri, 30 Oct 2020 13:24:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/43bc2d9d-10f1-4466-be33-546ae07a7a28?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2024006b26e51651aa8ccc8e86d32d01", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f4e1f7b-ff82-4e76-ad19-d269f229242d", + "apim-request-id": "d850a511-6332-42bf-ba86-35ada196baa1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:17 GMT", + "Date": "Fri, 30 Oct 2020 13:24:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:37Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/43bc2d9d-10f1-4466-be33-546ae07a7a28?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "65514ba5ed688d9cd62f484b7a8ade6a", "x-ms-return-client-request-id": "true" @@ -378,152 +378,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ff02a73a-85b3-4385-8ae0-94a8a2eda93e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", - "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "69aaaa00a5225808c0a132d5a5d198b7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f8ee5d52-8ce1-42dc-a42f-c94209c8681d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:19 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", - "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "64ba21c077977e2e63974ab5dd069b1f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a6b099cd-9305-415b-b06e-c298d30d3716", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:20 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", - "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "dc8d61adc328ffde42f9a5c7bac7e804", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "607a8c8c-8fe6-4898-9ac9-bab3b090ec13", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", - "status": "creating", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:08Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/624a60c7-fef9-4b10-8898-5f0d7fa432a9?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "588b91977ad089d37b2c068a5b537aba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "265b1dc3-eb5f-4474-a7be-0369080bb8e4", + "apim-request-id": "6938a7e1-6575-43bf-b7f7-4e09dba8ee9a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:23 GMT", + "Date": "Fri, 30 Oct 2020 13:24:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", "status": "ready", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:22Z" + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:49Z" }, "keys": { "clusters": { @@ -596,7 +464,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "453384387" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,True).json index cf1b5c2cb2692..ea19cdaec8c54 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d341553372fa434a96f38690d3d52634-cd5c145de0da884f-00", + "traceparent": "00-2fb28ed343cb274ab0f256c0b78989a9-1d9dba6fa3660c47-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9213f3002f03ece1445c6cc140c90114", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "83731892-a96f-4475-839e-497f8a027705", + "apim-request-id": "7ddd8ad4-2fd0-4c78-96e1-1ecf365186ef", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:21:02 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d1bf30dc-45a1-4bfe-9e5e-6e50d6ffa19d", + "Date": "Fri, 30 Oct 2020 13:21:35 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40383a51-dfe6-4c51-9c4c-e3d5ad3a662b", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "228" + "x-envoy-upstream-service-time": "81" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d1bf30dc-45a1-4bfe-9e5e-6e50d6ffa19d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40383a51-dfe6-4c51-9c4c-e3d5ad3a662b?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9e38b3bc44b41862c4727969f79cba1f", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "77a3a310-f2c9-42df-85b8-bcdb492d5db4", + "apim-request-id": "0d6a77f8-ac7b-4c23-9b77-538e526c189c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:02 GMT", + "Date": "Fri, 30 Oct 2020 13:21:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "d1bf30dc-45a1-4bfe-9e5e-6e50d6ffa19d", + "modelId": "40383a51-dfe6-4c51-9c4c-e3d5ad3a662b", "status": "creating", - "createdDateTime": "2020-09-09T22:21:03Z", - "lastUpdatedDateTime": "2020-09-09T22:21:03Z" + "createdDateTime": "2020-10-30T13:21:35Z", + "lastUpdatedDateTime": "2020-10-30T13:21:35Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d1bf30dc-45a1-4bfe-9e5e-6e50d6ffa19d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40383a51-dfe6-4c51-9c4c-e3d5ad3a662b?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "881ee23913fb3dda833e90411d378fcf", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "992cbb7b-187e-45b0-8a30-723217e7881c", + "apim-request-id": "a2f52ddb-a243-4137-bb95-a516ef996464", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:04 GMT", + "Date": "Fri, 30 Oct 2020 13:21:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "d1bf30dc-45a1-4bfe-9e5e-6e50d6ffa19d", + "modelId": "40383a51-dfe6-4c51-9c4c-e3d5ad3a662b", "status": "creating", - "createdDateTime": "2020-09-09T22:21:03Z", - "lastUpdatedDateTime": "2020-09-09T22:21:03Z" + "createdDateTime": "2020-10-30T13:21:35Z", + "lastUpdatedDateTime": "2020-10-30T13:21:35Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d1bf30dc-45a1-4bfe-9e5e-6e50d6ffa19d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/40383a51-dfe6-4c51-9c4c-e3d5ad3a662b?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "29e9222fb3ecbc5691face91b678f5a8", "x-ms-return-client-request-id": "true" @@ -114,56 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c26b3c4a-265e-4212-a997-7602112000c7", + "apim-request-id": "ef42539a-1ecf-44a6-b561-f8f1f7219169", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:05 GMT", + "Date": "Fri, 30 Oct 2020 13:21:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "d1bf30dc-45a1-4bfe-9e5e-6e50d6ffa19d", - "status": "creating", - "createdDateTime": "2020-09-09T22:21:03Z", - "lastUpdatedDateTime": "2020-09-09T22:21:03Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d1bf30dc-45a1-4bfe-9e5e-6e50d6ffa19d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5e884ca178aba918d9fb1b75b320fa8c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2dcade41-0a32-4586-9e23-20b176690f30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:06 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "d1bf30dc-45a1-4bfe-9e5e-6e50d6ffa19d", + "modelId": "40383a51-dfe6-4c51-9c4c-e3d5ad3a662b", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:21:03Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-10-30T13:21:35Z", + "lastUpdatedDateTime": "2020-10-30T13:21:37Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -264,7 +231,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "581701029" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,True)Async.json index e309cd672fbfa..f1d23f22c1845 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTraining(True,True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2d9388d12769e8428dd7069906c80051-48f02318f8d3af45-00", + "traceparent": "00-dd687d53a583de469bc7f863f633d29c-88fe9155be010c4f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bcef6f53cb033bf0f4d86e7dbac83d63", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "25f66992-cf27-4e53-8466-481e4bf93c00", + "apim-request-id": "aee63f9e-b30f-4ff9-ab0a-4a3b730724df", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:24:04 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/5caa8c69-5ae7-4948-9274-d72806c35838", + "Date": "Fri, 30 Oct 2020 13:24:33 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b815719-ec80-4bd7-a709-91ae6a44fdf7", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "212" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/5caa8c69-5ae7-4948-9274-d72806c35838?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b815719-ec80-4bd7-a709-91ae6a44fdf7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5b6abfb595fc688de822826f8f822c0f", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9a582bb5-ed1e-4ac6-b499-ea277d32294f", + "apim-request-id": "7b240b82-2d62-427a-a463-3f44859b535e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:04 GMT", + "Date": "Fri, 30 Oct 2020 13:24:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "5caa8c69-5ae7-4948-9274-d72806c35838", + "modelId": "4b815719-ec80-4bd7-a709-91ae6a44fdf7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:04Z", - "lastUpdatedDateTime": "2020-09-09T22:24:04Z" + "createdDateTime": "2020-10-30T13:24:33Z", + "lastUpdatedDateTime": "2020-10-30T13:24:33Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/5caa8c69-5ae7-4948-9274-d72806c35838?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b815719-ec80-4bd7-a709-91ae6a44fdf7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c48a48ac33924802aa0ad9929ff728f3", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6bf54201-3eb8-4f77-aa30-15935b00db19", + "apim-request-id": "70a13b16-7d2e-4e56-90d4-ad5e4beababb", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:05 GMT", + "Date": "Fri, 30 Oct 2020 13:24:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "5caa8c69-5ae7-4948-9274-d72806c35838", + "modelId": "4b815719-ec80-4bd7-a709-91ae6a44fdf7", "status": "creating", - "createdDateTime": "2020-09-09T22:24:04Z", - "lastUpdatedDateTime": "2020-09-09T22:24:04Z" + "createdDateTime": "2020-10-30T13:24:33Z", + "lastUpdatedDateTime": "2020-10-30T13:24:33Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/5caa8c69-5ae7-4948-9274-d72806c35838?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4b815719-ec80-4bd7-a709-91ae6a44fdf7?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "81201056c79fbeb4e187d4e14881ac72", "x-ms-return-client-request-id": "true" @@ -114,56 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a127913f-acb7-4307-893f-d8b17edca97e", + "apim-request-id": "01140d91-f173-4d04-a8f5-3d16f24580d7", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:06 GMT", + "Date": "Fri, 30 Oct 2020 13:24:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "modelInfo": { - "modelId": "5caa8c69-5ae7-4948-9274-d72806c35838", - "status": "creating", - "createdDateTime": "2020-09-09T22:24:04Z", - "lastUpdatedDateTime": "2020-09-09T22:24:04Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/5caa8c69-5ae7-4948-9274-d72806c35838?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "71d15eac783d82d1bc21b0f1bcfac8f0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f0f430d5-e4ca-424b-827c-6f72a582261c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:07 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "5caa8c69-5ae7-4948-9274-d72806c35838", + "modelId": "4b815719-ec80-4bd7-a709-91ae6a44fdf7", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:24:04Z", - "lastUpdatedDateTime": "2020-09-09T22:24:07Z" + "createdDateTime": "2020-10-30T13:24:33Z", + "lastUpdatedDateTime": "2020-10-30T13:24:35Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -264,7 +231,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "238901270" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingError.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingError.json index 53ed08dc5ab80..1cabef058b3c6 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingError.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingError.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8c99c3cf854dd04e9e531d928795038e-3dee2b52a20d7c42-00", + "traceparent": "00-7ed6507c3dd06646b8ffaef92d8a9df7-4689b3f16d04c74b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8f9ae89208c5443b9f6e2654f1014628", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "80b9bbcf-21b9-4a9c-b8bf-fa379066e825", + "apim-request-id": "45b72160-03ed-40db-80aa-c6d5bd5861ee", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:20:48 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/132f040d-4fa8-4e4f-aab9-c3116eb2d2ec", + "Date": "Fri, 30 Oct 2020 13:20:52 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b370849a-a304-464b-acdb-1308a78b2fa2", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "227" + "x-envoy-upstream-service-time": "117" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/132f040d-4fa8-4e4f-aab9-c3116eb2d2ec?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b370849a-a304-464b-acdb-1308a78b2fa2?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7c4755da5a276c365bff5b82043733db", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f03b651-af38-4ab1-89c5-1aa308c72a66", + "apim-request-id": "6ce22dbc-6bdf-40cd-8458-93c7362a8764", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:48 GMT", + "Date": "Fri, 30 Oct 2020 13:20:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "132f040d-4fa8-4e4f-aab9-c3116eb2d2ec", + "modelId": "b370849a-a304-464b-acdb-1308a78b2fa2", "status": "creating", - "createdDateTime": "2020-09-09T22:20:49Z", - "lastUpdatedDateTime": "2020-09-09T22:20:49Z" + "createdDateTime": "2020-10-30T13:20:52Z", + "lastUpdatedDateTime": "2020-10-30T13:20:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/132f040d-4fa8-4e4f-aab9-c3116eb2d2ec?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/b370849a-a304-464b-acdb-1308a78b2fa2?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fdbffb4cd99ce866e4f9480048fe2364", "x-ms-return-client-request-id": "true" @@ -81,21 +81,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "793da8e3-9d74-466b-8284-77e79a0390bb", + "apim-request-id": "26e0a72a-9ce2-4a59-8d68-9b5a82182701", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:49 GMT", + "Date": "Fri, 30 Oct 2020 13:20:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23", + "x-envoy-upstream-service-time": "29", "x-ms-cs-error-code": "2001" }, "ResponseBody": { "modelInfo": { - "modelId": "132f040d-4fa8-4e4f-aab9-c3116eb2d2ec", + "modelId": "b370849a-a304-464b-acdb-1308a78b2fa2", "status": "invalid", - "createdDateTime": "2020-09-09T22:20:49Z", - "lastUpdatedDateTime": "2020-09-09T22:20:49Z" + "createdDateTime": "2020-10-30T13:20:52Z", + "lastUpdatedDateTime": "2020-10-30T13:20:52Z" }, "keys": { "clusters": {} @@ -114,7 +114,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "387877828" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingErrorAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingErrorAsync.json index 71e68fd8dfd0b..1ef71c571646b 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingErrorAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingErrorAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d3e4a892085c4e428b0763202a9eb61e-6ef01f2abd869d48-00", + "traceparent": "00-3443b9c6c951644c929e613ccc0d4b4d-8e51d63339b9ee4d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c64173451e2490779e31952f2e0db6a4", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "5724aae4-cbea-4f76-96c7-59ad9a11ba19", + "apim-request-id": "1abb6d08-071b-41a3-8b6d-efc4e5d11e76", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:23:50 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6e2281f4-8a46-4578-a89b-47a6ba1d4b4b", + "Date": "Fri, 30 Oct 2020 13:23:52 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cfe8a11b-ae8c-4105-a8a3-ab69bd8a4354", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "230" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6e2281f4-8a46-4578-a89b-47a6ba1d4b4b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cfe8a11b-ae8c-4105-a8a3-ab69bd8a4354?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3bb4329cdfe69426f8e12d527267761c", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bfb59ae8-807e-4e72-af72-8dae55ed99f8", + "apim-request-id": "970f1ac4-0a28-4927-a462-af7fe33ac8cf", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:50 GMT", + "Date": "Fri, 30 Oct 2020 13:23:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "6e2281f4-8a46-4578-a89b-47a6ba1d4b4b", + "modelId": "cfe8a11b-ae8c-4105-a8a3-ab69bd8a4354", "status": "creating", - "createdDateTime": "2020-09-09T22:23:51Z", - "lastUpdatedDateTime": "2020-09-09T22:23:51Z" + "createdDateTime": "2020-10-30T13:23:52Z", + "lastUpdatedDateTime": "2020-10-30T13:23:52Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6e2281f4-8a46-4578-a89b-47a6ba1d4b4b?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cfe8a11b-ae8c-4105-a8a3-ab69bd8a4354?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e1f94413633b528136238c1a1a5f8ffd", "x-ms-return-client-request-id": "true" @@ -81,21 +81,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0650ebf2-6531-4bdb-b864-097cc4a143e5", + "apim-request-id": "0e5876eb-10c0-459f-a02f-3f4a5e7c13a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:51 GMT", + "Date": "Fri, 30 Oct 2020 13:23:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29", + "x-envoy-upstream-service-time": "19", "x-ms-cs-error-code": "2001" }, "ResponseBody": { "modelInfo": { - "modelId": "6e2281f4-8a46-4578-a89b-47a6ba1d4b4b", + "modelId": "cfe8a11b-ae8c-4105-a8a3-ab69bd8a4354", "status": "invalid", - "createdDateTime": "2020-09-09T22:23:51Z", - "lastUpdatedDateTime": "2020-09-09T22:23:51Z" + "createdDateTime": "2020-10-30T13:23:52Z", + "lastUpdatedDateTime": "2020-10-30T13:23:52Z" }, "keys": { "clusters": {} @@ -114,7 +114,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "41403176" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingFailsWithInvalidPrefix.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingFailsWithInvalidPrefix.json index f47038b1ead6d..dd42fb4b491e3 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingFailsWithInvalidPrefix.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingFailsWithInvalidPrefix.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "110", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dfcd44a81a9e1b46a5e317e0fd0863f4-93a3eb31d959ad48-00", + "traceparent": "00-d4c440fa8e58d94b8149020b1f9a069f-4fe3d0883908664e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ee9642498aa5e2c63907c179c9219fad", "x-ms-return-client-request-id": "true" @@ -26,25 +26,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "b4abe342-aeca-447f-b80e-9ce34f82b651", + "apim-request-id": "3a415bc3-5257-4371-ba2d-2c9b6b00da19", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:20:50 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7087ab96-2bfe-4ee2-b589-8ba3277705cc", + "Date": "Fri, 30 Oct 2020 13:20:53 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4559697f-580d-439c-a336-1272be0526f9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "232" + "x-envoy-upstream-service-time": "77" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7087ab96-2bfe-4ee2-b589-8ba3277705cc?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4559697f-580d-439c-a336-1272be0526f9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6986b125301c2f9b7d4318aab6d65eeb", "x-ms-return-client-request-id": "true" @@ -52,32 +52,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f3a315e1-0648-4716-86d2-0a23d89c7277", + "apim-request-id": "82002df7-2ea7-401f-909a-9e3f714dbfb9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:50 GMT", + "Date": "Fri, 30 Oct 2020 13:20:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "modelInfo": { - "modelId": "7087ab96-2bfe-4ee2-b589-8ba3277705cc", + "modelId": "4559697f-580d-439c-a336-1272be0526f9", "status": "creating", - "createdDateTime": "2020-09-09T22:20:50Z", - "lastUpdatedDateTime": "2020-09-09T22:20:50Z" + "createdDateTime": "2020-10-30T13:20:53Z", + "lastUpdatedDateTime": "2020-10-30T13:20:53Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/7087ab96-2bfe-4ee2-b589-8ba3277705cc?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4559697f-580d-439c-a336-1272be0526f9?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ad3553744dbcbaf60389e69b268863c1", "x-ms-return-client-request-id": "true" @@ -85,21 +85,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "69f90bf5-be0a-4d0e-8d78-98e7e22d22bf", + "apim-request-id": "e763b9bb-cffa-428a-956a-2a90a01233c5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:51 GMT", + "Date": "Fri, 30 Oct 2020 13:20:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27", + "x-envoy-upstream-service-time": "39", "x-ms-cs-error-code": "2014" }, "ResponseBody": { "modelInfo": { - "modelId": "7087ab96-2bfe-4ee2-b589-8ba3277705cc", + "modelId": "4559697f-580d-439c-a336-1272be0526f9", "status": "invalid", - "createdDateTime": "2020-09-09T22:20:50Z", - "lastUpdatedDateTime": "2020-09-09T22:20:51Z" + "createdDateTime": "2020-10-30T13:20:53Z", + "lastUpdatedDateTime": "2020-10-30T13:20:54Z" }, "keys": { "clusters": {} @@ -119,7 +119,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "348264928" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingFailsWithInvalidPrefixAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingFailsWithInvalidPrefixAsync.json index eb97e8158e10d..970b7c83641e4 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingFailsWithInvalidPrefixAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingFailsWithInvalidPrefixAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "110", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ce96b83e56396d418f812bc83a4f5278-55dbfcec2d5d5c48-00", + "traceparent": "00-bc9ad9ec78a0b04b8f60c83e9572643d-1f2f02b2c9597b45-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "69ec12b1cc2c85a113b245be2f4137b3", "x-ms-return-client-request-id": "true" @@ -26,25 +26,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "5c842bf6-83f4-4915-94af-1ea8e04c60ea", + "apim-request-id": "5724f50f-8afc-44af-9743-eb093f3a13c9", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:23:51 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c6013cfd-4d02-4ec8-ba73-67cd51a615b7", + "Date": "Fri, 30 Oct 2020 13:23:53 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/0ef04b5c-64f9-4e63-986c-ffdb85804382", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "87" + "x-envoy-upstream-service-time": "73" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c6013cfd-4d02-4ec8-ba73-67cd51a615b7?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/0ef04b5c-64f9-4e63-986c-ffdb85804382?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e5a68469811e268cad35814188fee8c3", "x-ms-return-client-request-id": "true" @@ -52,32 +52,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67e7a047-3050-475f-8e87-7b373e78554c", + "apim-request-id": "738c91ed-e278-4911-98ec-29b28c2fc699", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:51 GMT", + "Date": "Fri, 30 Oct 2020 13:23:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "c6013cfd-4d02-4ec8-ba73-67cd51a615b7", + "modelId": "0ef04b5c-64f9-4e63-986c-ffdb85804382", "status": "creating", - "createdDateTime": "2020-09-09T22:23:52Z", - "lastUpdatedDateTime": "2020-09-09T22:23:52Z" + "createdDateTime": "2020-10-30T13:23:53Z", + "lastUpdatedDateTime": "2020-10-30T13:23:53Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c6013cfd-4d02-4ec8-ba73-67cd51a615b7?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/0ef04b5c-64f9-4e63-986c-ffdb85804382?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f96a47ea118db625db78438cf3139ed4", "x-ms-return-client-request-id": "true" @@ -85,21 +85,21 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79c1f894-8a4c-4ac4-880c-cae1927b1f3b", + "apim-request-id": "5c597fac-e85d-41be-bd4b-023ff454c9e3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:52 GMT", + "Date": "Fri, 30 Oct 2020 13:23:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24", + "x-envoy-upstream-service-time": "20", "x-ms-cs-error-code": "2014" }, "ResponseBody": { "modelInfo": { - "modelId": "c6013cfd-4d02-4ec8-ba73-67cd51a615b7", + "modelId": "0ef04b5c-64f9-4e63-986c-ffdb85804382", "status": "invalid", - "createdDateTime": "2020-09-09T22:23:52Z", - "lastUpdatedDateTime": "2020-09-09T22:23:52Z" + "createdDateTime": "2020-10-30T13:23:53Z", + "lastUpdatedDateTime": "2020-10-30T13:23:54Z" }, "keys": { "clusters": {} @@ -119,7 +119,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1485159508" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingSucceedsWithValidPrefix.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingSucceedsWithValidPrefix.json index a4220164e0494..b42ceabda5099 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingSucceedsWithValidPrefix.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingSucceedsWithValidPrefix.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "106", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8f23cda326d10c4f921547586d76fcf4-717ca819c19b274b-00", + "traceparent": "00-84c5aece17c31348ab496a27bdf98ae9-465bc7c651354f4c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "449eed1b2ea4205a731ad7ca76cfe3e5", "x-ms-return-client-request-id": "true" @@ -26,25 +26,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "7fa58516-561d-4dcc-9bf0-210e9f62abdb", + "apim-request-id": "291f5018-2dcf-43cb-8c21-e84abe4a2887", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:20:51 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/042854ec-75a6-415c-93ee-53a894149e3d", + "Date": "Fri, 30 Oct 2020 13:20:54 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "108" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/042854ec-75a6-415c-93ee-53a894149e3d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a1b59d63-c5f4-43a4-bbba-e4e9c0c00708?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fd56e6a0248be951b93e9465efa4ae25", "x-ms-return-client-request-id": "true" @@ -52,32 +52,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc3b03fb-c370-4f09-adf3-3b6bee9d67cc", + "apim-request-id": "1a94c381-7298-410d-831a-1d62c544899d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:51 GMT", + "Date": "Fri, 30 Oct 2020 13:20:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", + "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", "status": "creating", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:20:52Z" + "createdDateTime": "2020-10-30T13:20:55Z", + "lastUpdatedDateTime": "2020-10-30T13:20:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/042854ec-75a6-415c-93ee-53a894149e3d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a1b59d63-c5f4-43a4-bbba-e4e9c0c00708?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a906033df259318ffeffba8d322bb1b6", "x-ms-return-client-request-id": "true" @@ -85,32 +85,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "faa88d71-1beb-44f0-8c0d-0a06ad400b30", + "apim-request-id": "8e217578-7844-4af8-9544-42374c3a03b4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:52 GMT", + "Date": "Fri, 30 Oct 2020 13:20:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "modelInfo": { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", + "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", "status": "creating", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:20:52Z" + "createdDateTime": "2020-10-30T13:20:55Z", + "lastUpdatedDateTime": "2020-10-30T13:20:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/042854ec-75a6-415c-93ee-53a894149e3d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a1b59d63-c5f4-43a4-bbba-e4e9c0c00708?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "be05b8276454f7709bb58a669af431cf", "x-ms-return-client-request-id": "true" @@ -118,32 +118,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e725b7ef-739e-4212-963e-0e333f0db056", + "apim-request-id": "210fdeac-d8bb-436b-94d2-f744480b064f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:53 GMT", + "Date": "Fri, 30 Oct 2020 13:20:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "modelInfo": { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", + "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", "status": "creating", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:20:52Z" + "createdDateTime": "2020-10-30T13:20:55Z", + "lastUpdatedDateTime": "2020-10-30T13:20:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/042854ec-75a6-415c-93ee-53a894149e3d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a1b59d63-c5f4-43a4-bbba-e4e9c0c00708?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "728db16b39c8ad8c5725fe8c69c4b78d", "x-ms-return-client-request-id": "true" @@ -151,32 +151,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1161fbbe-5f8d-41a3-bdb1-15478e7ffdbf", + "apim-request-id": "c814a46f-df79-48e6-8475-680ca6bc3eb1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:54 GMT", + "Date": "Fri, 30 Oct 2020 13:20:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "modelInfo": { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", + "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", "status": "creating", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:20:52Z" + "createdDateTime": "2020-10-30T13:20:55Z", + "lastUpdatedDateTime": "2020-10-30T13:20:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/042854ec-75a6-415c-93ee-53a894149e3d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a1b59d63-c5f4-43a4-bbba-e4e9c0c00708?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "363edd8cf09fd8d0930f0ea467289609", "x-ms-return-client-request-id": "true" @@ -184,32 +184,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5ede158-bfab-471d-a2ec-ed09ef7c5fbf", + "apim-request-id": "ceaecc12-19f3-4ee4-858b-024bb9176efa", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:55 GMT", + "Date": "Fri, 30 Oct 2020 13:21:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "modelInfo": { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", + "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", "status": "creating", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:20:52Z" + "createdDateTime": "2020-10-30T13:20:55Z", + "lastUpdatedDateTime": "2020-10-30T13:20:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/042854ec-75a6-415c-93ee-53a894149e3d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a1b59d63-c5f4-43a4-bbba-e4e9c0c00708?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8022ebcd3f9eedee2c57662f66e48dd6", "x-ms-return-client-request-id": "true" @@ -217,185 +217,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e44305cc-09fa-4e17-8d2e-764f4eaec0c8", + "apim-request-id": "18591c3c-111d-45f5-ac35-71db99195272", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:56 GMT", + "Date": "Fri, 30 Oct 2020 13:21:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "176" }, "ResponseBody": { "modelInfo": { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", - "status": "creating", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:20:52Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/042854ec-75a6-415c-93ee-53a894149e3d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "bcdafdfefab67a2fe1b4dfb92be7462e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "286b2e23-449c-4586-8f43-71268019ab38", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "259" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", - "status": "creating", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:20:52Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/042854ec-75a6-415c-93ee-53a894149e3d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7ebef58e36a24defef50094789a172ae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "74b83a3e-9d9c-4cde-aea4-e09d1b6f9564", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:20:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", - "status": "creating", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:20:52Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/042854ec-75a6-415c-93ee-53a894149e3d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "69a63781d94ed352bba79fe95f34c244", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c241e6f3-e791-43a4-8883-2b9cada368e6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", - "status": "creating", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:20:52Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/042854ec-75a6-415c-93ee-53a894149e3d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "70a037100f26c7340e8dcd65f0e7f03f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "18ab219b-ef5b-46b6-a4eb-ef0cdb57a2f7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", - "status": "creating", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:20:52Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/042854ec-75a6-415c-93ee-53a894149e3d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f4383041dd41b5e0a2eac2fa9705edba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c6c73fe3-f46b-4f56-bf90-cd493898f7e0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:21:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", + "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", "status": "ready", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:21:02Z" + "createdDateTime": "2020-10-30T13:20:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:01Z" }, "keys": { "clusters": { @@ -433,7 +268,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "706818357" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingSucceedsWithValidPrefixAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingSucceedsWithValidPrefixAsync.json index 104f2f3f8dd86..03a4934e68f30 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingSucceedsWithValidPrefixAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingSucceedsWithValidPrefixAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "106", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d4a7bb8eb295bf428fd78367d6f2dbaf-f6a6c75d0473fa45-00", + "traceparent": "00-df78df67fb777a46ae2dc8c502f0654a-151a0967ea977646-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c47c4e726d666423712c43e1755b3739", "x-ms-return-client-request-id": "true" @@ -26,25 +26,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "7894545f-4e2f-402b-a118-054178031832", + "apim-request-id": "ab08567c-7364-4f8d-9801-2cd2257defed", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:23:53 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2aa3789f-9d11-450f-861d-f39a4e8a6485", + "Date": "Fri, 30 Oct 2020 13:23:55 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/01579645-6803-4345-8db9-659c6a1744a0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "84" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2aa3789f-9d11-450f-861d-f39a4e8a6485?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/01579645-6803-4345-8db9-659c6a1744a0?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7644aa33c447206b5e08218b6adb2d13", "x-ms-return-client-request-id": "true" @@ -52,32 +52,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "16791f27-07d7-43e1-b7a3-53be8dc4ee29", + "apim-request-id": "4b27c54a-6593-45fb-8cc2-46e01b7e9693", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:53 GMT", + "Date": "Fri, 30 Oct 2020 13:23:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "2aa3789f-9d11-450f-861d-f39a4e8a6485", + "modelId": "01579645-6803-4345-8db9-659c6a1744a0", "status": "creating", - "createdDateTime": "2020-09-09T22:23:53Z", - "lastUpdatedDateTime": "2020-09-09T22:23:53Z" + "createdDateTime": "2020-10-30T13:23:55Z", + "lastUpdatedDateTime": "2020-10-30T13:23:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2aa3789f-9d11-450f-861d-f39a4e8a6485?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/01579645-6803-4345-8db9-659c6a1744a0?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "99ac28289d3cb5281fc842a8432e5c6d", "x-ms-return-client-request-id": "true" @@ -85,32 +85,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1eebe96-bbcc-49c5-8383-670e2afba062", + "apim-request-id": "352f3a4d-56d2-4a4e-b7be-8d83aecea65b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:54 GMT", + "Date": "Fri, 30 Oct 2020 13:23:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "2aa3789f-9d11-450f-861d-f39a4e8a6485", + "modelId": "01579645-6803-4345-8db9-659c6a1744a0", "status": "creating", - "createdDateTime": "2020-09-09T22:23:53Z", - "lastUpdatedDateTime": "2020-09-09T22:23:53Z" + "createdDateTime": "2020-10-30T13:23:55Z", + "lastUpdatedDateTime": "2020-10-30T13:23:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2aa3789f-9d11-450f-861d-f39a4e8a6485?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/01579645-6803-4345-8db9-659c6a1744a0?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4602624a0eeeadf5e25c655e4b97f996", "x-ms-return-client-request-id": "true" @@ -118,32 +118,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e690debe-f27b-4553-8ce2-5c30dbc97e16", + "apim-request-id": "28f76ed8-c50b-4515-9d94-317024a3986b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:55 GMT", + "Date": "Fri, 30 Oct 2020 13:23:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "2aa3789f-9d11-450f-861d-f39a4e8a6485", + "modelId": "01579645-6803-4345-8db9-659c6a1744a0", "status": "creating", - "createdDateTime": "2020-09-09T22:23:53Z", - "lastUpdatedDateTime": "2020-09-09T22:23:53Z" + "createdDateTime": "2020-10-30T13:23:55Z", + "lastUpdatedDateTime": "2020-10-30T13:23:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2aa3789f-9d11-450f-861d-f39a4e8a6485?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/01579645-6803-4345-8db9-659c6a1744a0?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4db82fff9eae96fc818f577e82c3dd30", "x-ms-return-client-request-id": "true" @@ -151,32 +151,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6600049e-d7d1-4de1-8e9a-a3edcfc0ecea", + "apim-request-id": "cfa17432-1907-4239-970b-79205f55fa6d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:56 GMT", + "Date": "Fri, 30 Oct 2020 13:23:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "2aa3789f-9d11-450f-861d-f39a4e8a6485", + "modelId": "01579645-6803-4345-8db9-659c6a1744a0", "status": "creating", - "createdDateTime": "2020-09-09T22:23:53Z", - "lastUpdatedDateTime": "2020-09-09T22:23:53Z" + "createdDateTime": "2020-10-30T13:23:55Z", + "lastUpdatedDateTime": "2020-10-30T13:23:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2aa3789f-9d11-450f-861d-f39a4e8a6485?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/01579645-6803-4345-8db9-659c6a1744a0?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0741b4abe6d81a2432ffb6e038ca6987", "x-ms-return-client-request-id": "true" @@ -184,32 +184,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f35b0824-d44d-41d3-bfd6-dab9fcca6201", + "apim-request-id": "d80c672d-f1ff-43f0-8add-fd39d19ebf21", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:57 GMT", + "Date": "Fri, 30 Oct 2020 13:24:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "modelInfo": { - "modelId": "2aa3789f-9d11-450f-861d-f39a4e8a6485", + "modelId": "01579645-6803-4345-8db9-659c6a1744a0", "status": "creating", - "createdDateTime": "2020-09-09T22:23:53Z", - "lastUpdatedDateTime": "2020-09-09T22:23:53Z" + "createdDateTime": "2020-10-30T13:23:55Z", + "lastUpdatedDateTime": "2020-10-30T13:23:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2aa3789f-9d11-450f-861d-f39a4e8a6485?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/01579645-6803-4345-8db9-659c6a1744a0?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "13a9accf0e76abbe666cc45eb6772b1f", "x-ms-return-client-request-id": "true" @@ -217,185 +217,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4213c1b8-7fb5-4ef3-b30c-aa16e19c37ba", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:58 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2aa3789f-9d11-450f-861d-f39a4e8a6485", - "status": "creating", - "createdDateTime": "2020-09-09T22:23:53Z", - "lastUpdatedDateTime": "2020-09-09T22:23:53Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2aa3789f-9d11-450f-861d-f39a4e8a6485?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "97b2357ff15518bd0a9e1bafe81b5eb7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9b92687d-452c-45ee-995e-71a51a7e608c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2aa3789f-9d11-450f-861d-f39a4e8a6485", - "status": "creating", - "createdDateTime": "2020-09-09T22:23:53Z", - "lastUpdatedDateTime": "2020-09-09T22:23:53Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2aa3789f-9d11-450f-861d-f39a4e8a6485?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d5afcf26c9199db9f596a16c22c663bb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "31f586d1-d33e-40de-aaff-da9a254e31e5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2aa3789f-9d11-450f-861d-f39a4e8a6485", - "status": "creating", - "createdDateTime": "2020-09-09T22:23:53Z", - "lastUpdatedDateTime": "2020-09-09T22:23:53Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2aa3789f-9d11-450f-861d-f39a4e8a6485?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "026196d4d218dd31ee9008d8f30fc24a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5c209fe9-c9c5-4878-850e-9efd3e1b6d58", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2aa3789f-9d11-450f-861d-f39a4e8a6485", - "status": "creating", - "createdDateTime": "2020-09-09T22:23:53Z", - "lastUpdatedDateTime": "2020-09-09T22:23:53Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2aa3789f-9d11-450f-861d-f39a4e8a6485?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e6380d0e55c7b5067b15a1bf4f51f644", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "84313271-5a46-4c08-9e15-88e85a3299d4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:03 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "2aa3789f-9d11-450f-861d-f39a4e8a6485", - "status": "creating", - "createdDateTime": "2020-09-09T22:23:53Z", - "lastUpdatedDateTime": "2020-09-09T22:23:53Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2aa3789f-9d11-450f-861d-f39a4e8a6485?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "52da603a5bba539f9ed2e688c1e1a9e6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d8d28dc3-f266-4ea6-989f-5eecdc8a6d7e", + "apim-request-id": "478497d3-1f78-428c-ac64-617feedf5194", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:04 GMT", + "Date": "Fri, 30 Oct 2020 13:24:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "2aa3789f-9d11-450f-861d-f39a4e8a6485", + "modelId": "01579645-6803-4345-8db9-659c6a1744a0", "status": "ready", - "createdDateTime": "2020-09-09T22:23:53Z", - "lastUpdatedDateTime": "2020-09-09T22:24:03Z" + "createdDateTime": "2020-10-30T13:23:55Z", + "lastUpdatedDateTime": "2020-10-30T13:24:00Z" }, "keys": { "clusters": { @@ -433,7 +268,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1832325830" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingWithLabelsModelName.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingWithLabelsModelName.json index f1bb2520a1efa..715d7ed29ff5e 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingWithLabelsModelName.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingWithLabelsModelName.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "68", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2a626e31af8a474e8767788431cf42ac-e5de56d69bf14e4b-00", + "traceparent": "00-83ff69e3aeca9442ae67c2c91d53add9-7ece26a2a146a14e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201008.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6c9655eb911197c0e2359725b2e7855a", @@ -23,24 +23,24 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "3c9d6aec-970d-442b-a563-00dd205ad66e", + "apim-request-id": "1ab46669-10fd-41ef-9f61-65df9e719dc2", "Content-Length": "0", - "Date": "Fri, 09 Oct 2020 00:10:29 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6f0ec22f-8697-4767-9ab0-22ed201596f2", + "Date": "Fri, 30 Oct 2020 13:21:02 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/741ca2b2-d208-4a68-a59d-f6fb1e41c596", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "512" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6f0ec22f-8697-4767-9ab0-22ed201596f2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/741ca2b2-d208-4a68-a59d-f6fb1e41c596?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201008.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2d4183d565c0e5f3b53ee271e0efefa0", @@ -49,32 +49,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83c5cb23-cfa4-4a5b-89fa-2aff3dd4a5d1", + "apim-request-id": "c599032d-a39f-4452-a741-83e1da7418fb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Oct 2020 00:10:29 GMT", + "Date": "Fri, 30 Oct 2020 13:21:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "226" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "6f0ec22f-8697-4767-9ab0-22ed201596f2", + "modelId": "741ca2b2-d208-4a68-a59d-f6fb1e41c596", "modelName": "My training", "status": "creating", - "createdDateTime": "2020-10-09T00:10:28Z", - "lastUpdatedDateTime": "2020-10-09T00:10:28Z" + "createdDateTime": "2020-10-30T13:21:03Z", + "lastUpdatedDateTime": "2020-10-30T13:21:03Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6f0ec22f-8697-4767-9ab0-22ed201596f2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/741ca2b2-d208-4a68-a59d-f6fb1e41c596?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201008.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "52c0faef892dd0d3000efe5c4e1fd1fb", @@ -83,228 +83,24 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "86ef15ea-c42d-428a-bb3a-d604556392de", + "apim-request-id": "628b9ff4-a3fb-445c-b5a5-db413096afcb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Oct 2020 00:10:30 GMT", + "Date": "Fri, 30 Oct 2020 13:21:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "6f0ec22f-8697-4767-9ab0-22ed201596f2", - "modelName": "My training", - "status": "creating", - "createdDateTime": "2020-10-09T00:10:28Z", - "lastUpdatedDateTime": "2020-10-09T00:10:28Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6f0ec22f-8697-4767-9ab0-22ed201596f2?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201008.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e0dde6cd6e2d868b62b1b7d2af4fb6f3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0aa93e31-5bd8-4232-9e6c-560c4c643743", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Oct 2020 00:10:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "6f0ec22f-8697-4767-9ab0-22ed201596f2", - "modelName": "My training", - "status": "creating", - "createdDateTime": "2020-10-09T00:10:28Z", - "lastUpdatedDateTime": "2020-10-09T00:10:28Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6f0ec22f-8697-4767-9ab0-22ed201596f2?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201008.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b735f74632274b2cb0712db267979795", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "592d03f9-23ac-4a0a-a9f1-877094f93c27", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Oct 2020 00:10:33 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "6f0ec22f-8697-4767-9ab0-22ed201596f2", - "modelName": "My training", - "status": "creating", - "createdDateTime": "2020-10-09T00:10:28Z", - "lastUpdatedDateTime": "2020-10-09T00:10:28Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6f0ec22f-8697-4767-9ab0-22ed201596f2?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201008.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "faa3e66d0f1181736f39f07cd20021b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5cb97352-e606-4697-b3c9-94c3de065ce9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Oct 2020 00:10:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "6f0ec22f-8697-4767-9ab0-22ed201596f2", - "modelName": "My training", - "status": "creating", - "createdDateTime": "2020-10-09T00:10:28Z", - "lastUpdatedDateTime": "2020-10-09T00:10:28Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6f0ec22f-8697-4767-9ab0-22ed201596f2?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201008.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "57150a5719e99ad4b9912fbb40d91fca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2f2fe522-8db3-4a18-8232-285a32dfa898", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Oct 2020 00:10:35 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "6f0ec22f-8697-4767-9ab0-22ed201596f2", - "modelName": "My training", - "status": "creating", - "createdDateTime": "2020-10-09T00:10:28Z", - "lastUpdatedDateTime": "2020-10-09T00:10:28Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6f0ec22f-8697-4767-9ab0-22ed201596f2?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201008.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c8652119bbac37e284b348ed42b079b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6325df4b-dc35-4478-8019-22fed5762169", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Oct 2020 00:10:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "6f0ec22f-8697-4767-9ab0-22ed201596f2", - "modelName": "My training", - "status": "creating", - "createdDateTime": "2020-10-09T00:10:28Z", - "lastUpdatedDateTime": "2020-10-09T00:10:28Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6f0ec22f-8697-4767-9ab0-22ed201596f2?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201008.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5c5a7c4f408153ac1108417fdfb74095", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c1aef597-0189-41f5-a92d-41bad247cc55", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Oct 2020 00:10:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "6f0ec22f-8697-4767-9ab0-22ed201596f2", + "modelId": "741ca2b2-d208-4a68-a59d-f6fb1e41c596", "modelName": "My training", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-10-09T00:10:28Z", - "lastUpdatedDateTime": "2020-10-09T00:10:37Z" + "createdDateTime": "2020-10-30T13:21:03Z", + "lastUpdatedDateTime": "2020-10-30T13:21:04Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -405,7 +201,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1748001985" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingWithLabelsModelNameAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingWithLabelsModelNameAsync.json index c0e13efe92f10..1282fb1e3bb29 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingWithLabelsModelNameAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/StartTrainingWithLabelsModelNameAsync.json @@ -1,16 +1,16 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "68", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-702d4f18ec8aa84496a6de4c1602a198-9967a646bfb60b4f-00", + "traceparent": "00-f8c2f9961ff72b4b95e346a0d058b906-c566671ab0935348-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201008.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "01eebbc9c4e93187418dc74b3a869e3d", @@ -23,24 +23,24 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "a7c1167e-99e9-43d0-bc07-0c02e95b931d", + "apim-request-id": "86c566b3-9eac-4d3c-9186-e0dc735569ee", "Content-Length": "0", - "Date": "Fri, 09 Oct 2020 00:10:38 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/57b03013-0979-4e09-8be5-eba2b2c2f548", + "Date": "Fri, 30 Oct 2020 13:24:01 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/79a2c6de-5040-4198-a2fa-ecbe37e71788", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "201" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/57b03013-0979-4e09-8be5-eba2b2c2f548?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/79a2c6de-5040-4198-a2fa-ecbe37e71788?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201008.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0f8276e6aa93cc8ddda172504c59281a", @@ -49,32 +49,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "93a125c2-5741-4586-9972-a23841353553", + "apim-request-id": "8a7a712d-a97d-40e4-bc96-430cb07ed457", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Oct 2020 00:10:38 GMT", + "Date": "Fri, 30 Oct 2020 13:24:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "57b03013-0979-4e09-8be5-eba2b2c2f548", + "modelId": "79a2c6de-5040-4198-a2fa-ecbe37e71788", "modelName": "My training", "status": "creating", - "createdDateTime": "2020-10-09T00:10:38Z", - "lastUpdatedDateTime": "2020-10-09T00:10:38Z" + "createdDateTime": "2020-10-30T13:24:02Z", + "lastUpdatedDateTime": "2020-10-30T13:24:02Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/57b03013-0979-4e09-8be5-eba2b2c2f548?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/79a2c6de-5040-4198-a2fa-ecbe37e71788?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201008.1", + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9af59d045972061d28536f1b77b302d6", @@ -83,58 +83,24 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1cd94086-b951-4cf9-abcd-f1329ddc81e3", + "apim-request-id": "5641e154-cc4c-406a-b07a-d83d049fd8a1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Oct 2020 00:10:39 GMT", + "Date": "Fri, 30 Oct 2020 13:24:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "57b03013-0979-4e09-8be5-eba2b2c2f548", - "modelName": "My training", - "status": "creating", - "createdDateTime": "2020-10-09T00:10:38Z", - "lastUpdatedDateTime": "2020-10-09T00:10:38Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/57b03013-0979-4e09-8be5-eba2b2c2f548?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201008.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bc88eb3234541e3c2d2223475236e4e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "51cf3db4-4dbf-4c3a-92da-90c024c23568", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 09 Oct 2020 00:10:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "modelInfo": { - "modelId": "57b03013-0979-4e09-8be5-eba2b2c2f548", + "modelId": "79a2c6de-5040-4198-a2fa-ecbe37e71788", "modelName": "My training", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-10-09T00:10:38Z", - "lastUpdatedDateTime": "2020-10-09T00:10:40Z" + "createdDateTime": "2020-10-30T13:24:02Z", + "lastUpdatedDateTime": "2020-10-30T13:24:03Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -235,7 +201,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1969755185" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False).json index c2395caaf5461..83220d4f3bb27 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8a7e776de219eb49b4dd6c46989483e5-1631050b35a77d48-00", + "traceparent": "00-f2a548e04fcee840b981e9ee8f8b7e5a-6e75ac68ea1f734e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "636426281891eef9699bbdfd00fd6a07", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "a98b0d4d-b568-4c69-965f-22531e43c77f", + "apim-request-id": "817c9849-219e-4822-8652-80bfb13eacd4", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:22:15 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "Date": "Fri, 30 Oct 2020 13:30:56 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "229" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b79beff98f6c5701a1123ed80542a1fc", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b8d50448-358c-4e34-a0f8-8479eea12950", + "apim-request-id": "f325355b-824d-497b-b1a3-5f1370b6be1f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:15 GMT", + "Date": "Fri, 30 Oct 2020 13:30:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "status": "creating", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" + "createdDateTime": "2020-10-30T13:30:57Z", + "lastUpdatedDateTime": "2020-10-30T13:30:57Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "71a44ce3575b8e10b7531daa302bcb05", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e95c8037-e184-4b6a-99d9-350096793958", + "apim-request-id": "14333b61-0b85-488b-b8cc-d283acf975fa", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:16 GMT", + "Date": "Fri, 30 Oct 2020 13:30:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "status": "creating", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" + "createdDateTime": "2020-10-30T13:30:57Z", + "lastUpdatedDateTime": "2020-10-30T13:30:57Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4af934d406a599d1250dc27ed920e826", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3850ed5-02cb-4401-8b40-8f8372d3601d", + "apim-request-id": "110bb09a-1c2f-4af4-9dc2-af47cc5e4c83", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:19 GMT", + "Date": "Fri, 30 Oct 2020 13:30:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "status": "creating", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" + "createdDateTime": "2020-10-30T13:30:57Z", + "lastUpdatedDateTime": "2020-10-30T13:30:57Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b319c1f9f859a2acdf0cff1871562676", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "98ac7e59-8d09-4b97-9016-b0ae43673c8e", + "apim-request-id": "3d650cb7-9b79-4307-aed0-6ea1a109a034", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:20 GMT", + "Date": "Fri, 30 Oct 2020 13:31:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "status": "creating", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" + "createdDateTime": "2020-10-30T13:30:57Z", + "lastUpdatedDateTime": "2020-10-30T13:30:57Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d10438475749dd577b0a4c4e9591b597", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1783b7fc-7001-4f0b-a91f-035e494c4d42", + "apim-request-id": "d6e491d6-dcab-40c8-8eba-78dce44b0665", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:21 GMT", + "Date": "Fri, 30 Oct 2020 13:31:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "status": "creating", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" + "createdDateTime": "2020-10-30T13:30:57Z", + "lastUpdatedDateTime": "2020-10-30T13:30:57Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6fb1f76a1811dcac87566b9807b927ce", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "57b90ec6-ce50-4b11-a07e-ec3e4a419ff0", + "apim-request-id": "fa39af3d-ae11-439d-9ff0-7a3f9b7a9d61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:22 GMT", + "Date": "Fri, 30 Oct 2020 13:31:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "157" }, "ResponseBody": { "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "status": "creating", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" + "createdDateTime": "2020-10-30T13:30:57Z", + "lastUpdatedDateTime": "2020-10-30T13:30:57Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a0374ce6161ca2dc693c384eac5d0d4d", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6982c769-42b2-4afd-b96b-45980aacd004", + "apim-request-id": "2cb1822b-297d-4448-99c8-1e0297045d2b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:23 GMT", + "Date": "Fri, 30 Oct 2020 13:31:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "197" }, "ResponseBody": { "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "status": "creating", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" + "createdDateTime": "2020-10-30T13:30:57Z", + "lastUpdatedDateTime": "2020-10-30T13:30:57Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "79ad6757b6a52f648c284af2ebbed6c1", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5425f35c-97d9-4a29-b8f1-b998ba6752aa", + "apim-request-id": "3da715ec-22bb-4037-85ee-ead3124d6632", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:24 GMT", + "Date": "Fri, 30 Oct 2020 13:31:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "status": "creating", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" + "createdDateTime": "2020-10-30T13:30:57Z", + "lastUpdatedDateTime": "2020-10-30T13:30:57Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "48677ee21459537a1b0e05d4df5d2f2a", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bc4c8ae9-39de-4726-8842-ac06603e505e", + "apim-request-id": "6bcdb831-5e57-4de4-9350-87aea754afc5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:25 GMT", + "Date": "Fri, 30 Oct 2020 13:31:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "status": "creating", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" + "createdDateTime": "2020-10-30T13:30:57Z", + "lastUpdatedDateTime": "2020-10-30T13:30:57Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9f411e49ad0b2f28e70814f4cce9b6ab", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3003e15c-4e85-44bc-b498-f872ad4a910b", + "apim-request-id": "7e3968d4-92a8-434e-93f5-392995fece8b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:26 GMT", + "Date": "Fri, 30 Oct 2020 13:31:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "status": "creating", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" + "createdDateTime": "2020-10-30T13:30:57Z", + "lastUpdatedDateTime": "2020-10-30T13:30:57Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2e6b7665c4f542f3ec5a5e96b18f4f2f", "x-ms-return-client-request-id": "true" @@ -378,42 +378,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "66fec286-0bbd-4a09-9e62-860a75256809", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:27 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", - "status": "creating", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "cda91ff8377c35b65538615100868631", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "606965ab-82fe-4b3c-a1b7-daf82ae372f0", + "apim-request-id": "24457e9d-7b59-4ae6-97a8-a2403cc2d6f1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:28 GMT", + "Date": "Fri, 30 Oct 2020 13:31:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -421,76 +388,10 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", - "status": "creating", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "686f5a5701f185342afeb2b14e917e57", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ce692a30-77f3-43c0-b02a-b7d5a90ee24c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", - "status": "creating", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "acfbe4b9e9402e2ec036d9bd62a24266", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c61e6716-6045-45dc-a1f5-178e0b9598c6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:30 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "status": "ready", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:29Z" + "createdDateTime": "2020-10-30T13:30:57Z", + "lastUpdatedDateTime": "2020-10-30T13:31:09Z" }, "keys": { "clusters": { @@ -560,36 +461,36 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-88b805deeed5234eb06638131da1e1e0-3575560e38853640-00", + "traceparent": "00-2c3575f3cb42f2418abc88dd431876a7-77e111c5b3884644-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "563f2dd3e620f63eeb23a27e8404e6c3", + "x-ms-client-request-id": "cda91ff8377c35b65538615100868631", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7589d564-7f77-4b0b-8b11-04e03adda17b", + "apim-request-id": "3dc2a32e-2759-4379-b388-dcfff2e5995b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:30 GMT", + "Date": "Fri, 30 Oct 2020 13:31:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "status": "ready", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:29Z" + "createdDateTime": "2020-10-30T13:30:57Z", + "lastUpdatedDateTime": "2020-10-30T13:31:09Z" }, "keys": { "clusters": { @@ -659,1169 +560,2271 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?op=full", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1b9709b9d98a6df12c40a8ba28762288", + "x-ms-client-request-id": "686f5a5701f185342afeb2b14e917e57", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "725f9f19-597e-473c-8eb3-99da3e69fadb", + "apim-request-id": "9d297a10-c19b-4326-b023-794142ba8a3c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:30 GMT", + "Date": "Fri, 30 Oct 2020 13:31:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "385" + "x-envoy-upstream-service-time": "343" }, "ResponseBody": { "modelList": [ { - "modelId": "00865e07-158d-471e-9426-01be75f859e0", - "status": "ready", - "createdDateTime": "2020-08-26T17:32:48Z", - "lastUpdatedDateTime": "2020-08-26T17:33:00Z" - }, - { - "modelId": "020b8b8c-c2f6-491b-b01a-ff5993467086", + "modelId": "007c06a2-25ad-48f2-9d13-b104d0d8f1e0", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-09-09T22:20:27Z", - "lastUpdatedDateTime": "2020-09-09T22:20:40Z" + "createdDateTime": "2020-08-20T18:43:30Z", + "lastUpdatedDateTime": "2020-08-20T18:43:32Z" }, { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", + "modelId": "01579645-6803-4345-8db9-659c6a1744a0", "status": "ready", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:21:02Z" + "createdDateTime": "2020-10-30T13:23:55Z", + "lastUpdatedDateTime": "2020-10-30T13:24:00Z" }, { - "modelId": "052402e5-f6dd-4b4f-a06f-882b793dc037", + "modelId": "01bc0ea9-d7e3-4515-b502-f2b57efb0aa2", "status": "creating", - "createdDateTime": "2020-08-26T17:34:14Z", - "lastUpdatedDateTime": "2020-08-26T17:34:14Z" + "createdDateTime": "2020-08-20T18:44:54Z", + "lastUpdatedDateTime": "2020-08-20T18:44:54Z" }, { - "modelId": "06a29baa-9786-4aab-8b84-a8ea64541595", + "modelId": "01bd21ac-ce1b-4e9f-b1a3-92847479633e", "status": "ready", - "createdDateTime": "2020-08-26T17:34:36Z", - "lastUpdatedDateTime": "2020-08-26T17:34:39Z" + "createdDateTime": "2020-08-20T22:28:00Z", + "lastUpdatedDateTime": "2020-08-20T22:28:09Z" }, { - "modelId": "0d35e818-d64a-40ea-97ac-090610c49e4c", + "modelId": "01ef6d0c-d5c1-4343-bbcd-6add5cda3741", "status": "creating", - "createdDateTime": "2020-08-26T17:50:49Z", - "lastUpdatedDateTime": "2020-08-26T17:50:49Z" + "createdDateTime": "2020-08-17T21:42:37Z", + "lastUpdatedDateTime": "2020-08-17T21:42:37Z" }, { - "modelId": "121c25e5-4890-403d-b427-8abd49dd6a76", + "modelId": "022a3ddc-a723-4df1-bbee-df16b2092efa", "status": "ready", - "createdDateTime": "2020-08-26T17:34:03Z", - "lastUpdatedDateTime": "2020-08-26T17:34:13Z" - }, - { - "modelId": "132f040d-4fa8-4e4f-aab9-c3116eb2d2ec", - "status": "invalid", - "createdDateTime": "2020-09-09T22:20:49Z", - "lastUpdatedDateTime": "2020-09-09T22:20:49Z" + "createdDateTime": "2020-08-14T18:52:29Z", + "lastUpdatedDateTime": "2020-08-14T18:52:37Z" }, { - "modelId": "156a6740-4d04-46ae-94bc-893c8b5d0150", + "modelId": "02f68a79-b056-4f85-9e93-898f8261d55e", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:26:10Z", - "lastUpdatedDateTime": "2020-08-06T23:26:14Z" + "createdDateTime": "2020-08-20T18:44:14Z", + "lastUpdatedDateTime": "2020-08-20T18:44:16Z" }, { - "modelId": "16ca7224-7d40-4b49-aa42-ac360bfc5d4f", - "status": "creating", - "createdDateTime": "2020-08-26T17:34:22Z", - "lastUpdatedDateTime": "2020-08-26T17:34:22Z" + "modelId": "031bb91f-b029-4d9e-a165-f9c76dbec981", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:20:47Z", + "lastUpdatedDateTime": "2020-10-30T13:20:48Z" }, { - "modelId": "16da6907-80c8-4d15-bce6-3eb20128ded2", + "modelId": "032312e5-3e29-4a17-8297-96ce181e9ff7", "status": "ready", - "createdDateTime": "2020-08-07T02:43:17Z", - "lastUpdatedDateTime": "2020-08-07T02:43:25Z" + "createdDateTime": "2020-08-20T23:26:25Z", + "lastUpdatedDateTime": "2020-08-20T23:26:33Z" }, { - "modelId": "1945d79d-a224-48d7-b902-f9eb37b2344b", + "modelId": "0613c81a-b6e2-41f4-94ba-b7d033e07848", "status": "creating", - "createdDateTime": "2020-09-09T22:20:44Z", - "lastUpdatedDateTime": "2020-09-09T22:20:44Z" + "createdDateTime": "2020-08-14T19:44:45Z", + "lastUpdatedDateTime": "2020-08-14T19:44:45Z" }, { - "modelId": "1c93bdda-7a62-45bc-87dc-03f3f3c55ff6", - "status": "creating", - "createdDateTime": "2020-08-11T23:25:09Z", - "lastUpdatedDateTime": "2020-08-11T23:25:09Z" + "modelId": "08500349-8e12-4ecc-b22f-6378fd21a608", + "status": "invalid", + "createdDateTime": "2020-08-14T19:45:11Z", + "lastUpdatedDateTime": "2020-08-14T19:45:11Z" }, { - "modelId": "1ca3b63c-814c-40b8-abf4-b20219bd8899", + "modelId": "09c0ba1d-f88d-4670-ac36-9dc8dc979a1b", "status": "invalid", - "createdDateTime": "2020-08-06T23:22:05Z", - "lastUpdatedDateTime": "2020-08-06T23:22:06Z" + "createdDateTime": "2020-08-20T23:26:11Z", + "lastUpdatedDateTime": "2020-08-20T23:26:11Z" }, { - "modelId": "1f75f019-19a7-4b14-b035-6d65745646dc", + "modelId": "0b325cdc-5a78-4d79-85f2-f53abaf4f151", "status": "creating", - "createdDateTime": "2020-08-26T17:50:52Z", - "lastUpdatedDateTime": "2020-08-26T17:50:52Z" - }, - { - "modelId": "2029918d-c322-4d76-9d8d-cd96e9b2e9c4", - "status": "invalid", - "createdDateTime": "2020-08-07T02:32:59Z", - "lastUpdatedDateTime": "2020-08-07T02:33:00Z" + "createdDateTime": "2020-08-20T22:45:33Z", + "lastUpdatedDateTime": "2020-08-20T22:45:33Z" }, { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", + "modelId": "0b32e649-44b9-4842-803d-4ec855514aa7", "status": "ready", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:19Z" + "createdDateTime": "2020-08-20T21:53:16Z", + "lastUpdatedDateTime": "2020-08-20T21:53:25Z" }, { - "modelId": "237d9501-9ea9-4d69-acef-36eff1740e5c", + "modelId": "0cad4cc0-ea89-497c-86f0-9b57d2f02517", "status": "ready", - "createdDateTime": "2020-08-26T17:51:23Z", - "lastUpdatedDateTime": "2020-08-26T17:51:32Z" + "createdDateTime": "2020-08-20T18:43:46Z", + "lastUpdatedDateTime": "2020-08-20T18:44:00Z" }, { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "0cfe37f7-87fa-4475-a105-1777ea41c6cd", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:40Z" + "createdDateTime": "2020-08-20T21:49:12Z", + "lastUpdatedDateTime": "2020-08-20T21:49:19Z" }, { - "modelId": "2610c2a9-c713-4346-970e-1df296686c9d", - "status": "ready", - "createdDateTime": "2020-08-26T17:53:29Z", - "lastUpdatedDateTime": "2020-08-26T17:53:41Z" + "modelId": "0d93d3a5-9024-479c-827b-859d0bd7c006", + "status": "creating", + "createdDateTime": "2020-08-17T17:15:56Z", + "lastUpdatedDateTime": "2020-08-17T17:15:56Z" }, { - "modelId": "26581cd0-1275-4e90-b0d5-7a927cbd84a2", + "modelId": "0da54f9c-ef82-4d08-9011-ffe4d3c02447", "status": "creating", - "createdDateTime": "2020-09-09T22:20:41Z", - "lastUpdatedDateTime": "2020-09-09T22:20:41Z" + "createdDateTime": "2020-08-14T19:46:50Z", + "lastUpdatedDateTime": "2020-08-14T19:46:50Z" }, { - "modelId": "29b1506d-77ee-4aa1-8b82-6430edc36784", + "modelId": "0ea70033-e01f-4365-b890-839c2a628ea7", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-07T02:33:00Z", - "lastUpdatedDateTime": "2020-08-07T02:33:04Z" + "createdDateTime": "2020-08-20T22:43:43Z", + "lastUpdatedDateTime": "2020-08-20T22:43:44Z" }, { - "modelId": "29c77b2a-64f4-4f7e-8543-eb5a1fbcd472", + "modelId": "0ef04b5c-64f9-4e63-986c-ffdb85804382", "status": "invalid", - "createdDateTime": "2020-08-26T17:53:06Z", - "lastUpdatedDateTime": "2020-08-26T17:53:07Z" + "createdDateTime": "2020-10-30T13:23:53Z", + "lastUpdatedDateTime": "2020-10-30T13:23:54Z" }, { - "modelId": "35afdcd3-5b1e-4a30-bfc0-50bbbc909623", + "modelId": "0fd3cd6d-4782-4f5e-bb8f-319394c848dd", "status": "ready", - "createdDateTime": "2020-08-07T02:38:59Z", - "lastUpdatedDateTime": "2020-08-07T02:39:02Z" + "createdDateTime": "2020-08-20T18:43:21Z", + "lastUpdatedDateTime": "2020-08-20T18:43:24Z" }, { - "modelId": "35db4c6a-7d0b-4f5e-a9b4-2ad3bfd6b98d", - "status": "invalid", - "createdDateTime": "2020-08-06T23:21:58Z", - "lastUpdatedDateTime": "2020-08-06T23:21:59Z" + "modelId": "102e5b73-5b01-431e-bfce-ca83ebc47c05", + "status": "ready", + "createdDateTime": "2020-08-20T22:49:46Z", + "lastUpdatedDateTime": "2020-08-20T22:49:55Z" }, { - "modelId": "3b22a35d-b881-4d75-85cb-852c6ec9a825", + "modelId": "1034ef53-16b6-492b-a511-2a89e5326349", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:34:41Z", - "lastUpdatedDateTime": "2020-08-26T17:34:42Z" + "createdDateTime": "2020-10-30T13:13:32Z", + "lastUpdatedDateTime": "2020-10-30T13:13:34Z" }, { - "modelId": "3d3e2947-66a2-477b-8ec5-d732ab144946", + "modelId": "1127179b-ee78-46d0-a51a-ca8a088ec177", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-19T20:22:50Z", - "lastUpdatedDateTime": "2020-08-19T20:22:52Z" + "createdDateTime": "2020-08-20T18:42:19Z", + "lastUpdatedDateTime": "2020-08-20T18:42:21Z" }, { - "modelId": "3d5aa64d-b058-4ae8-8793-2b80b085f0bc", + "modelId": "11eb2552-c707-43f3-a673-897433da9f66", "status": "invalid", - "createdDateTime": "2020-08-26T17:51:05Z", - "lastUpdatedDateTime": "2020-08-26T17:51:06Z" + "createdDateTime": "2020-08-20T21:25:24Z", + "lastUpdatedDateTime": "2020-08-20T21:25:24Z" }, { - "modelId": "3f87db49-3554-4a2c-a9fa-7bb97c1ff995", + "modelId": "1239ac73-a1ba-43a8-b725-6118c6c4cb7d", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-07T02:39:06Z", - "lastUpdatedDateTime": "2020-08-07T02:39:17Z" + "createdDateTime": "2020-08-20T21:08:03Z", + "lastUpdatedDateTime": "2020-08-20T21:08:10Z" }, { - "modelId": "3f8e97ff-0f71-42a2-bee1-3a9a76a3b5d6", - "status": "ready", - "createdDateTime": "2020-08-26T17:36:40Z", - "lastUpdatedDateTime": "2020-08-26T17:36:49Z" + "modelId": "12b12b23-10d3-4efa-927b-8b79c153099a", + "status": "creating", + "createdDateTime": "2020-08-14T19:10:34Z", + "lastUpdatedDateTime": "2020-08-14T19:10:34Z" }, { - "modelId": "3fea230b-4ac7-4835-b7f3-f874c5fb5b0f", - "status": "ready", - "createdDateTime": "2020-08-06T23:15:17Z", - "lastUpdatedDateTime": "2020-08-06T23:15:25Z" + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc", + "status": "creating", + "createdDateTime": "2020-10-30T13:22:45Z", + "lastUpdatedDateTime": "2020-10-30T13:22:45Z" }, { - "modelId": "4644f514-2bf6-49d7-b77d-2e8489e5a15e", + "modelId": "17c078da-8f4e-4376-923a-7672a8a621ab", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:50:27Z", - "lastUpdatedDateTime": "2020-08-26T17:50:30Z" + "createdDateTime": "2020-08-14T19:47:37Z", + "lastUpdatedDateTime": "2020-08-14T19:47:38Z" + }, + { + "modelId": "17e8374c-6cd4-40d7-8d33-8fa52286a883", + "status": "ready", + "createdDateTime": "2020-08-20T22:06:19Z", + "lastUpdatedDateTime": "2020-08-20T22:06:29Z" + }, + { + "modelId": "18cb6b55-f009-4df2-8d56-ab423d29d5c4", + "status": "ready", + "createdDateTime": "2020-08-20T22:43:20Z", + "lastUpdatedDateTime": "2020-08-20T22:43:23Z" }, { - "modelId": "4658c32f-ffb8-43cf-895d-c4e64ee60105", + "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", "status": "ready", - "createdDateTime": "2020-08-26T17:37:27Z", - "lastUpdatedDateTime": "2020-08-26T17:37:36Z" + "createdDateTime": "2020-08-20T21:25:32Z", + "lastUpdatedDateTime": "2020-08-20T21:25:40Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzQ4ZDA5YjljLWI2NWMtNDkxZS04OTEzLTJjMDYzNmFkN2EwZC80OGQwOWI5Yy1iNjVjLTQ5MWUtODkxMy0yYzA2MzZhZDdhMGQuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzQ4ZDA5YjljLWI2NWMtNDkxZS04OTEzLTJjMDYzNmFkN2EwZC80OGQwOWI5Yy1iNjVjLTQ5MWUtODkxMy0yYzA2MzZhZDdhMGQuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "21dd4cbc2852d236a605c11c47b0aabb", + "x-ms-client-request-id": "acfbe4b9e9402e2ec036d9bd62a24266", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "fc1b83ff-c7d3-453a-8345-79103170199c", + "Content-Length": "358", + "Content-Type": "application/json", + "Date": "Fri, 30 Oct 2020 13:31:11 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "acfbe4b9e9402e2ec036d9bd62a24266", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e1395f97-4039-44a8-92d1-8ea729d8de27", + "apim-request-id": "3387d9e5-490d-4d06-895b-78cfca47ff05", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:31 GMT", + "Date": "Fri, 30 Oct 2020 13:31:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "445" + "x-envoy-upstream-service-time": "286" }, "ResponseBody": { "modelList": [ { - "modelId": "49702f1d-c4d1-4adb-9201-0e3160e2c8c5", - "status": "creating", - "createdDateTime": "2020-08-06T23:21:04Z", - "lastUpdatedDateTime": "2020-08-06T23:21:04Z" + "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", + "status": "ready", + "createdDateTime": "2020-08-20T21:25:32Z", + "lastUpdatedDateTime": "2020-08-20T21:25:40Z" }, { - "modelId": "4ae452c7-4160-4aa5-8820-3ac11b452561", + "modelId": "1bf14c97-93e2-44ee-9ac6-a11478fc33da", "status": "creating", - "createdDateTime": "2020-08-06T23:21:21Z", - "lastUpdatedDateTime": "2020-08-06T23:21:21Z" + "createdDateTime": "2020-08-20T23:28:45Z", + "lastUpdatedDateTime": "2020-08-20T23:28:45Z" }, { - "modelId": "4f7977d8-d301-44d0-9b24-1fb3480c745b", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-09-09T03:33:10Z", - "lastUpdatedDateTime": "2020-09-09T03:33:12Z" + "modelId": "1cba0c75-0acd-4ff0-9a06-02fd708ebd0b", + "status": "creating", + "createdDateTime": "2020-08-14T19:46:51Z", + "lastUpdatedDateTime": "2020-08-14T19:46:51Z" }, { - "modelId": "52fcf54f-2507-47f4-b8c1-d86e91143f28", + "modelId": "1cc4fde0-89ac-4b67-b537-1fcf6275fe8e", "status": "ready", - "createdDateTime": "2020-08-07T02:41:59Z", - "lastUpdatedDateTime": "2020-08-07T02:42:08Z" + "createdDateTime": "2020-08-20T23:29:22Z", + "lastUpdatedDateTime": "2020-08-20T23:29:30Z" }, { - "modelId": "53df4b19-55cf-447a-98ea-3b85c3b2c098", + "modelId": "1f2bca7f-9bf8-4138-8a4c-53c03c3c8f55", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-07T02:38:49Z", - "lastUpdatedDateTime": "2020-08-07T02:38:58Z" + "createdDateTime": "2020-08-20T21:46:19Z", + "lastUpdatedDateTime": "2020-08-20T21:46:26Z" }, { - "modelId": "55897d03-168d-412f-8de7-3daa009cacb5", - "status": "ready", - "createdDateTime": "2020-08-06T23:20:33Z", - "lastUpdatedDateTime": "2020-08-06T23:20:36Z" + "modelId": "1fd33a7f-9726-4d73-a737-5e4a3016d7ad", + "status": "invalid", + "createdDateTime": "2020-08-14T19:47:13Z", + "lastUpdatedDateTime": "2020-08-14T19:47:13Z" }, { - "modelId": "56b12cb9-da45-499c-a840-a357b5d263da", + "modelId": "20cbcc4d-191f-4c74-aac5-ecc2e3d959e6", "status": "ready", - "createdDateTime": "2020-08-07T02:34:32Z", - "lastUpdatedDateTime": "2020-08-07T02:34:40Z" + "createdDateTime": "2020-08-20T23:25:30Z", + "lastUpdatedDateTime": "2020-08-20T23:25:38Z" }, { - "modelId": "571764d5-7433-4ce3-b421-cc62bd2e6399", + "modelId": "24307288-59a3-4cf8-b5c3-cc981928dc5d", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:51:34Z", - "lastUpdatedDateTime": "2020-08-26T17:51:35Z" + "createdDateTime": "2020-08-20T21:23:00Z", + "lastUpdatedDateTime": "2020-08-20T21:23:08Z" + }, + { + "modelId": "25365575-b6ce-4351-add0-b3c5b6f68ad0", + "status": "creating", + "createdDateTime": "2020-08-20T22:45:28Z", + "lastUpdatedDateTime": "2020-08-20T22:45:28Z" }, { - "modelId": "5818a965-88b3-4737-bd4a-3e04f28f9b99", + "modelId": "253f0935-8a68-4425-88ca-9804d7ef40a4", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-08T23:38:46Z", - "lastUpdatedDateTime": "2020-09-08T23:38:53Z" + "createdDateTime": "2020-08-14T19:11:18Z", + "lastUpdatedDateTime": "2020-08-14T19:11:20Z" }, { - "modelId": "591d1226-2f87-4f71-88eb-1d516adf80c2", + "modelId": "26e8eb28-909b-4a5e-b10d-c862e0dde861", "status": "ready", - "createdDateTime": "2020-08-26T17:35:39Z", - "lastUpdatedDateTime": "2020-08-26T17:35:49Z" + "createdDateTime": "2020-08-20T22:45:55Z", + "lastUpdatedDateTime": "2020-08-20T22:46:01Z" }, { - "modelId": "5d123f4a-fdda-4e34-9605-8bcdafc786c8", - "status": "ready", - "createdDateTime": "2020-08-26T17:34:43Z", - "lastUpdatedDateTime": "2020-08-26T17:34:54Z" + "modelId": "272021b8-def8-48d8-8b89-10b3664b4dd4", + "status": "creating", + "createdDateTime": "2020-08-20T18:44:54Z", + "lastUpdatedDateTime": "2020-08-20T18:44:54Z" }, { - "modelId": "5d9e3a2f-ed7f-418c-b345-82ac311de989", + "modelId": "27bc87a8-6ef8-4e41-b023-22f3484a078b", "status": "ready", - "createdDateTime": "2020-08-11T23:26:55Z", - "lastUpdatedDateTime": "2020-08-11T23:26:58Z" + "createdDateTime": "2020-08-14T19:29:45Z", + "lastUpdatedDateTime": "2020-08-14T19:29:52Z" }, { - "modelId": "5e68fb32-de1c-4d27-8e1a-f94c61cc84ca", - "status": "ready", - "createdDateTime": "2020-08-11T23:26:45Z", - "lastUpdatedDateTime": "2020-08-11T23:26:54Z" + "modelId": "2800da27-3d69-4333-bd95-e9b217732660", + "status": "creating", + "createdDateTime": "2020-10-30T13:22:42Z", + "lastUpdatedDateTime": "2020-10-30T13:22:42Z" }, { - "modelId": "6769e2e4-5272-4ea4-b294-72e4dcdcbd8f", + "modelId": "284f716b-a8a0-4333-9ad5-6be8b981ce79", "status": "creating", - "createdDateTime": "2020-08-07T02:32:12Z", - "lastUpdatedDateTime": "2020-08-07T02:32:12Z" + "createdDateTime": "2020-08-17T21:43:17Z", + "lastUpdatedDateTime": "2020-08-17T21:43:17Z" }, { - "modelId": "692430a0-bb79-4deb-9012-32cdddbae457", + "modelId": "28cd0f90-8143-48e9-85b2-baf4b2cc4a8f", "status": "creating", - "createdDateTime": "2020-08-26T17:32:14Z", - "lastUpdatedDateTime": "2020-08-26T17:32:14Z" + "createdDateTime": "2020-08-20T21:22:36Z", + "lastUpdatedDateTime": "2020-08-20T21:22:36Z" }, { - "modelId": "6a0b22c7-f9d2-4122-b5ef-181577d60ba9", + "modelId": "2a023ee3-7a0c-42ee-9946-571124631d68", "status": "ready", - "createdDateTime": "2020-08-07T02:38:25Z", - "lastUpdatedDateTime": "2020-08-07T02:38:29Z" + "createdDateTime": "2020-08-20T21:51:49Z", + "lastUpdatedDateTime": "2020-08-20T21:51:58Z" }, { - "modelId": "6a48b90c-4f90-405d-b7ea-399f5e42a9b1", + "modelId": "2a3fb884-1ef3-462c-bd28-0684e728d55a", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:31:45Z", - "lastUpdatedDateTime": "2020-08-26T17:31:46Z" - }, - { - "modelId": "6b2e9fcb-1dce-4436-96d4-1698750f1385", - "status": "ready", - "createdDateTime": "2020-08-07T02:40:43Z", - "lastUpdatedDateTime": "2020-08-07T02:41:00Z" + "createdDateTime": "2020-08-20T18:45:27Z", + "lastUpdatedDateTime": "2020-08-20T18:45:28Z" }, { - "modelId": "6b9496bb-2670-401d-9805-14772a73a399", + "modelId": "2d0d3ec2-c813-4840-837a-65e3f14a4fd7", "status": "ready", - "createdDateTime": "2020-08-07T02:31:22Z", - "lastUpdatedDateTime": "2020-08-07T02:31:29Z" - }, - { - "modelId": "7087ab96-2bfe-4ee2-b589-8ba3277705cc", - "status": "invalid", - "createdDateTime": "2020-09-09T22:20:50Z", - "lastUpdatedDateTime": "2020-09-09T22:20:51Z" + "createdDateTime": "2020-08-20T21:25:26Z", + "lastUpdatedDateTime": "2020-08-20T21:25:30Z" }, { - "modelId": "73323aac-41dc-4c87-8ed1-a0163184fcf6", - "attributes": { - "isComposed": false - }, + "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", "status": "ready", - "createdDateTime": "2020-09-09T22:21:20Z", - "lastUpdatedDateTime": "2020-09-09T22:21:22Z" + "createdDateTime": "2020-10-30T13:21:15Z", + "lastUpdatedDateTime": "2020-10-30T13:21:26Z" }, { - "modelId": "757dfe38-07b3-48c4-ab0c-86839b172f24", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "ready", - "createdDateTime": "2020-08-06T23:16:31Z", - "lastUpdatedDateTime": "2020-08-06T23:16:33Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:25Z" }, { - "modelId": "78ee6951-7b9b-45bc-9da2-b8c6964d6f5f", - "status": "invalid", - "createdDateTime": "2020-08-26T17:34:34Z", - "lastUpdatedDateTime": "2020-08-26T17:34:34Z" + "modelId": "2fb4524b-3239-45c6-a9c0-4667b16ab72e", + "status": "creating", + "createdDateTime": "2020-08-20T18:42:49Z", + "lastUpdatedDateTime": "2020-08-20T18:42:49Z" }, { - "modelId": "7dc2909e-615d-48aa-8e59-d008292881cd", + "modelId": "32a70028-9497-4938-b27d-a46c07315800", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:33:01Z", - "lastUpdatedDateTime": "2020-08-26T17:33:03Z" + "createdDateTime": "2020-08-20T21:50:08Z", + "lastUpdatedDateTime": "2020-08-20T21:50:10Z" }, { - "modelId": "7edad8db-18f2-41af-9bfc-b1801eea3fea", + "modelId": "33921c16-6dd2-4666-aaed-3863b28e0eeb", "status": "creating", - "createdDateTime": "2020-08-19T20:19:47Z", - "lastUpdatedDateTime": "2020-08-19T20:19:47Z" - }, - { - "modelId": "80f764e0-6f63-4926-8895-2b3ff0624e07", - "status": "invalid", - "createdDateTime": "2020-08-11T23:26:26Z", - "lastUpdatedDateTime": "2020-08-11T23:26:27Z" + "createdDateTime": "2020-08-14T19:10:34Z", + "lastUpdatedDateTime": "2020-08-14T19:10:34Z" }, { - "modelId": "85aebc18-2ff1-4539-8b64-04638f9c4042", - "status": "invalid", - "createdDateTime": "2020-08-11T23:26:23Z", - "lastUpdatedDateTime": "2020-08-11T23:26:26Z" + "modelId": "34c52af3-ce6c-465c-9fc0-797f8b6dcfdc", + "status": "ready", + "createdDateTime": "2020-08-14T19:08:14Z", + "lastUpdatedDateTime": "2020-08-14T19:08:22Z" }, { - "modelId": "87408940-0c48-48b8-aff2-42af068cd40f", + "modelId": "34d0ed4c-634b-4626-ae4a-4472f3740b79", "status": "creating", - "createdDateTime": "2020-08-07T02:35:13Z", - "lastUpdatedDateTime": "2020-08-07T02:35:13Z" + "createdDateTime": "2020-10-30T13:19:43Z", + "lastUpdatedDateTime": "2020-10-30T13:19:43Z" }, { - "modelId": "8826958b-526d-430f-9c09-194f2cd36802", + "modelId": "35238cbc-5c0b-4ae6-b19d-779568d5c3af", "status": "ready", - "createdDateTime": "2020-08-11T23:26:58Z", - "lastUpdatedDateTime": "2020-08-11T23:27:08Z" + "createdDateTime": "2020-08-20T21:06:49Z", + "lastUpdatedDateTime": "2020-08-20T21:06:57Z" }, { - "modelId": "8a019169-da20-4578-83f4-33b75ae85a80", + "modelId": "35a3d57f-d630-437e-85cf-14f0a6ed1f29", "status": "ready", - "createdDateTime": "2020-08-11T23:25:43Z", - "lastUpdatedDateTime": "2020-08-11T23:25:53Z" + "createdDateTime": "2020-08-14T19:44:36Z", + "lastUpdatedDateTime": "2020-08-14T19:44:44Z" }, { - "modelId": "8b8035e6-3130-423e-97dd-dc4a95d7e553", + "modelId": "361ba8b7-61d0-4051-ba20-2dac77a428ef", "status": "ready", - "createdDateTime": "2020-08-26T17:36:30Z", - "lastUpdatedDateTime": "2020-08-26T17:36:39Z" + "createdDateTime": "2020-08-14T18:52:29Z", + "lastUpdatedDateTime": "2020-08-14T18:52:37Z" }, { - "modelId": "8e1873bf-beee-4698-8eb0-dfac5de174cf", - "status": "ready", - "createdDateTime": "2020-08-06T23:22:44Z", - "lastUpdatedDateTime": "2020-08-06T23:22:56Z" + "modelId": "362283cc-f24c-49d6-9bf1-a711a9621e65", + "status": "creating", + "createdDateTime": "2020-10-30T13:22:42Z", + "lastUpdatedDateTime": "2020-10-30T13:22:42Z" }, { - "modelId": "948a86a3-4ecd-453a-9a93-d0ec4d431a46", + "modelId": "37cbc664-e1aa-4fc1-b73e-d241dec98dfe", + "status": "invalid", + "createdDateTime": "2020-08-20T21:25:25Z", + "lastUpdatedDateTime": "2020-08-20T21:25:26Z" + }, + { + "modelId": "38d1e2ad-b058-4dfe-bb00-797b4f6ef957", "status": "creating", - "createdDateTime": "2020-08-11T23:25:53Z", - "lastUpdatedDateTime": "2020-08-11T23:25:53Z" + "createdDateTime": "2020-08-20T22:42:57Z", + "lastUpdatedDateTime": "2020-08-20T22:42:57Z" }, { - "modelId": "94d121f1-9b81-4218-b178-30fbb62ef533", + "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", "status": "ready", - "createdDateTime": "2020-08-26T17:32:03Z", - "lastUpdatedDateTime": "2020-08-26T17:32:13Z" + "createdDateTime": "2020-08-20T22:46:04Z", + "lastUpdatedDateTime": "2020-08-20T22:46:12Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzk0ZDEyMWYxLTliODEtNDIxOC1iMTc4LTMwZmJiNjJlZjUzMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzk0ZDEyMWYxLTliODEtNDIxOC1iMTc4LTMwZmJiNjJlZjUzMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "58031550260af9db3bd12ae03e83cd74", + "x-ms-client-request-id": "563f2dd3e620f63eeb23a27e8404e6c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f35ca18-6f1c-4c16-8096-ce3390e514ee", + "apim-request-id": "0118c718-e7ef-4b6f-9bff-e57427c8d9d1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:31 GMT", + "Date": "Fri, 30 Oct 2020 13:31:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "401" + "x-envoy-upstream-service-time": "220" }, "ResponseBody": { "modelList": [ { - "modelId": "94d121f1-9b81-4218-b178-30fbb62ef533", + "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", + "status": "ready", + "createdDateTime": "2020-08-20T22:46:04Z", + "lastUpdatedDateTime": "2020-08-20T22:46:12Z" + }, + { + "modelId": "3af295a0-785e-4567-bba5-54797c4aa61d", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:32:03Z", - "lastUpdatedDateTime": "2020-08-26T17:32:13Z" + "createdDateTime": "2020-08-20T21:23:19Z", + "lastUpdatedDateTime": "2020-08-20T21:23:20Z" }, { - "modelId": "94fb7913-80d7-4145-9375-b9b5073544ec", + "modelId": "3d445599-3e82-43bb-ad48-241788aec3b9", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:15:17Z", - "lastUpdatedDateTime": "2020-08-06T23:15:25Z" + "createdDateTime": "2020-08-20T22:42:25Z", + "lastUpdatedDateTime": "2020-08-20T22:42:32Z" }, { - "modelId": "95b47659-413f-4f9c-9fc0-cea2d98c1099", - "status": "creating", - "createdDateTime": "2020-08-26T17:34:14Z", - "lastUpdatedDateTime": "2020-08-26T17:34:14Z" + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", + "status": "ready", + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:50Z" }, { - "modelId": "979a5681-2776-4f26-ac8c-9cc6a96c8e52", + "modelId": "3e5d1032-b968-458c-901f-7daa543210a7", "status": "ready", - "createdDateTime": "2020-08-26T17:54:11Z", - "lastUpdatedDateTime": "2020-08-26T17:54:22Z" + "createdDateTime": "2020-08-14T19:49:17Z", + "lastUpdatedDateTime": "2020-08-14T19:49:25Z" }, { - "modelId": "981536fe-92a5-4a10-9f07-f589ebbc42ef", + "modelId": "3efd32fe-763f-4cca-a58b-2fa57d13dc83", "status": "creating", - "createdDateTime": "2020-08-07T02:32:17Z", - "lastUpdatedDateTime": "2020-08-07T02:32:17Z" + "createdDateTime": "2020-08-17T17:15:30Z", + "lastUpdatedDateTime": "2020-08-17T17:15:30Z" }, { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258", + "modelId": "40152914-610e-47f8-b6c6-8c155df7650e", + "status": "creating", + "createdDateTime": "2020-08-20T22:45:46Z", + "lastUpdatedDateTime": "2020-08-20T22:45:46Z" + }, + { + "modelId": "40383a51-dfe6-4c51-9c4c-e3d5ad3a662b", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:19:56Z", - "lastUpdatedDateTime": "2020-09-09T22:19:58Z" + "createdDateTime": "2020-10-30T13:21:35Z", + "lastUpdatedDateTime": "2020-10-30T13:21:37Z" }, { - "modelId": "99cab2af-1ebf-4587-a557-24a99abf6784", + "modelId": "4120e08d-2693-4f80-a69f-53029d556457", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:22:22Z", - "lastUpdatedDateTime": "2020-08-06T23:22:34Z" - }, - { - "modelId": "9e99bc89-72c1-4839-9c47-4f4e07c9c277", - "status": "creating", - "createdDateTime": "2020-08-06T23:21:04Z", - "lastUpdatedDateTime": "2020-08-06T23:21:04Z" + "createdDateTime": "2020-08-20T23:29:31Z", + "lastUpdatedDateTime": "2020-08-20T23:29:38Z" }, { - "modelId": "a11162bf-bfbc-461e-a41a-125bae4f0027", + "modelId": "412a541e-6015-4ba3-bc06-bda9dcfb4563", "status": "ready", - "createdDateTime": "2020-08-07T02:38:37Z", - "lastUpdatedDateTime": "2020-08-07T02:38:40Z" - }, - { - "modelId": "a2ddc891-9980-454d-b876-20347c4fe2e1", - "status": "creating", - "createdDateTime": "2020-08-26T17:50:49Z", - "lastUpdatedDateTime": "2020-08-26T17:50:49Z" + "createdDateTime": "2020-08-20T21:28:50Z", + "lastUpdatedDateTime": "2020-08-20T21:28:58Z" }, { - "modelId": "a2f07e6c-08bc-4d5e-bda1-f2895ceebeef", + "modelId": "41dcd3b4-7da4-4947-afc2-8267342bf8d3", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:32:40Z", - "lastUpdatedDateTime": "2020-08-26T17:32:47Z" + "createdDateTime": "2020-08-14T19:08:56Z", + "lastUpdatedDateTime": "2020-08-14T19:08:58Z" }, { - "modelId": "a3ac9510-b86f-45a6-adf1-bb6e189cd5e8", + "modelId": "42ca775f-ce05-4794-9afa-1206f9ec4e4b", "status": "ready", - "createdDateTime": "2020-08-06T23:22:12Z", - "lastUpdatedDateTime": "2020-08-06T23:22:15Z" + "createdDateTime": "2020-08-14T19:28:36Z", + "lastUpdatedDateTime": "2020-08-14T19:28:44Z" }, { - "modelId": "a3fdcfd1-2c5c-4c67-9038-1c4429ed69c4", - "status": "invalid", - "createdDateTime": "2020-08-26T17:34:32Z", - "lastUpdatedDateTime": "2020-08-26T17:34:33Z" + "modelId": "4363499c-72ab-45b2-8931-d8b1838bef70", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:26:34Z", + "lastUpdatedDateTime": "2020-08-20T23:26:41Z" }, { - "modelId": "a50e5ae0-6af6-4087-92da-845e12c71655", + "modelId": "438b68f8-bec6-4313-88d6-43f201f64e26", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:52:35Z", - "lastUpdatedDateTime": "2020-08-26T17:52:46Z" + "createdDateTime": "2020-08-20T21:22:10Z", + "lastUpdatedDateTime": "2020-08-20T21:22:12Z" }, { - "modelId": "a5583bd4-9d64-4971-a4e3-ad202a2f1711", + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", "status": "ready", - "createdDateTime": "2020-08-07T02:33:05Z", - "lastUpdatedDateTime": "2020-08-07T02:33:09Z" + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:49Z" }, { - "modelId": "a59ea0d6-3fa4-4879-91f9-f83319790278", - "status": "creating", - "createdDateTime": "2020-08-17T23:02:26Z", - "lastUpdatedDateTime": "2020-08-17T23:02:26Z" + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:22:18Z", + "lastUpdatedDateTime": "2020-10-30T13:22:19Z" }, { - "modelId": "a646e66b-c795-470b-a59d-ed208e8107c4", + "modelId": "44cf7b0c-17d8-461b-8a14-972532fcf6d6", "status": "creating", - "createdDateTime": "2020-08-07T02:32:39Z", - "lastUpdatedDateTime": "2020-08-07T02:32:39Z" + "createdDateTime": "2020-08-17T22:30:19Z", + "lastUpdatedDateTime": "2020-08-17T22:30:19Z" }, { - "modelId": "a72d7916-ab9f-4c63-aa32-79ffed1bb391", + "modelId": "44d3f221-a1ad-4726-a5f5-43bc37fe7222", "status": "ready", - "createdDateTime": "2020-08-07T02:33:27Z", - "lastUpdatedDateTime": "2020-08-07T02:34:01Z" + "createdDateTime": "2020-08-20T22:45:18Z", + "lastUpdatedDateTime": "2020-08-20T22:45:27Z" }, { - "modelId": "a7bc5b1f-af0b-449a-bcd1-3daef200c131", + "modelId": "4559697f-580d-439c-a336-1272be0526f9", "status": "invalid", - "createdDateTime": "2020-08-06T23:21:39Z", - "lastUpdatedDateTime": "2020-08-06T23:21:53Z" + "createdDateTime": "2020-10-30T13:20:53Z", + "lastUpdatedDateTime": "2020-10-30T13:20:54Z" }, { - "modelId": "a87b6655-71cb-481b-bedd-bdca02704320", - "status": "ready", - "createdDateTime": "2020-08-26T17:55:11Z", - "lastUpdatedDateTime": "2020-08-26T17:55:20Z" + "modelId": "45c5498b-3755-44fd-95d5-8d5b5924e3a6", + "status": "invalid", + "createdDateTime": "2020-08-20T22:43:19Z", + "lastUpdatedDateTime": "2020-08-20T22:43:19Z" }, { - "modelId": "a9643e41-d890-434b-a3ea-d5f9de22a81b", + "modelId": "45f1adde-a451-4746-a675-f0ebb166151b", "status": "creating", - "createdDateTime": "2020-08-26T17:52:47Z", - "lastUpdatedDateTime": "2020-08-26T17:52:47Z" + "createdDateTime": "2020-08-20T21:47:08Z", + "lastUpdatedDateTime": "2020-08-20T21:47:08Z" }, { - "modelId": "aa4c7c66-c63e-453c-b6c8-6eb34bded19c", - "status": "ready", - "createdDateTime": "2020-08-26T17:53:08Z", - "lastUpdatedDateTime": "2020-08-26T17:53:14Z" + "modelId": "46201f03-7ffc-4e1e-bd07-a48bb6bccad4", + "status": "creating", + "createdDateTime": "2020-08-14T19:08:23Z", + "lastUpdatedDateTime": "2020-08-14T19:08:23Z" }, { - "modelId": "ae63d47a-b069-4e06-9b23-fa01eb02e7a4", - "attributes": { - "isComposed": false - }, + "modelId": "46a86632-ff1f-4e80-bd06-6c8d48af3157", "status": "ready", - "createdDateTime": "2020-08-26T17:53:28Z", - "lastUpdatedDateTime": "2020-08-26T17:53:29Z" + "createdDateTime": "2020-08-20T18:44:45Z", + "lastUpdatedDateTime": "2020-08-20T18:44:53Z" }, { - "modelId": "b17cb2c7-bd8d-4f5f-80d1-a20559f55dc0", + "modelId": "47a7b4cd-d993-4d83-b6ca-ee18c547acfb", "status": "ready", - "createdDateTime": "2020-08-07T02:33:07Z", - "lastUpdatedDateTime": "2020-08-07T02:33:23Z" + "createdDateTime": "2020-08-20T22:49:07Z", + "lastUpdatedDateTime": "2020-08-20T22:49:16Z" }, { - "modelId": "b29c550b-6b80-43f8-bc95-cf0655cbe4fb", - "status": "creating", - "createdDateTime": "2020-09-09T22:20:41Z", - "lastUpdatedDateTime": "2020-09-09T22:20:41Z" - }, - { - "modelId": "b2e963b2-39e0-4e5f-acaa-9d48e0ad7570", + "modelId": "488d74c6-25ae-4271-b7e5-cff85e10abc4", "status": "ready", - "createdDateTime": "2020-08-26T17:51:07Z", - "lastUpdatedDateTime": "2020-08-26T17:51:13Z" + "createdDateTime": "2020-08-20T18:26:04Z", + "lastUpdatedDateTime": "2020-08-20T18:26:12Z" }, { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", + "modelId": "49b0f1a2-e699-4f0d-a873-040df8e08e6c", "status": "ready", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:17:12Z" + "createdDateTime": "2020-08-14T19:13:59Z", + "lastUpdatedDateTime": "2020-08-14T19:14:08Z" }, { - "modelId": "b3bf06ee-649c-4195-b79a-743efe134b3a", - "status": "creating", - "createdDateTime": "2020-08-11T23:26:07Z", - "lastUpdatedDateTime": "2020-08-11T23:26:07Z" + "modelId": "4acac1b2-4f07-46b2-9d21-c172d2a66330", + "status": "ready", + "createdDateTime": "2020-08-14T19:28:36Z", + "lastUpdatedDateTime": "2020-08-14T19:28:44Z" }, { - "modelId": "b4f76870-a421-49fc-b407-0eff0259b35f", + "modelId": "4b815719-ec80-4bd7-a709-91ae6a44fdf7", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:52:11Z", - "lastUpdatedDateTime": "2020-08-26T17:52:13Z" - }, - { - "modelId": "b505e41b-7b1f-403b-8934-b61ec312a33c", - "status": "ready", - "createdDateTime": "2020-08-07T02:31:58Z", - "lastUpdatedDateTime": "2020-08-07T02:32:11Z" + "createdDateTime": "2020-10-30T13:24:33Z", + "lastUpdatedDateTime": "2020-10-30T13:24:35Z" }, { - "modelId": "bd24dcfe-a630-4b9f-bb41-6f2462d7dc49", + "modelId": "4bfcc25d-0b2f-4fa2-a284-bcc98cf1f8fd", "status": "ready", - "createdDateTime": "2020-08-07T02:34:59Z", - "lastUpdatedDateTime": "2020-08-07T02:35:12Z" + "createdDateTime": "2020-08-20T21:31:42Z", + "lastUpdatedDateTime": "2020-08-20T21:31:51Z" }, { - "modelId": "bf6945cc-5534-4fc7-bd7c-2371601328ff", - "status": "creating", - "createdDateTime": "2020-08-07T02:35:13Z", - "lastUpdatedDateTime": "2020-08-07T02:35:13Z" - }, - { - "modelId": "c20f99d1-31dd-4db9-baaa-97cc063209b9", - "status": "creating", - "createdDateTime": "2020-08-07T02:35:22Z", - "lastUpdatedDateTime": "2020-08-07T02:35:22Z" - }, - { - "modelId": "c2d66fc3-bb2c-4001-a6f8-c38e8b14edb9", + "modelId": "4c92bc3c-f25c-4f02-84d9-f8ceae9b16b6", "status": "ready", - "createdDateTime": "2020-08-26T17:56:05Z", - "lastUpdatedDateTime": "2020-08-26T17:56:15Z" + "createdDateTime": "2020-08-14T19:11:09Z", + "lastUpdatedDateTime": "2020-08-14T19:11:17Z" }, { - "modelId": "c345d537-db8a-42e9-8ed1-a1ff3fac62b0", - "status": "ready", - "createdDateTime": "2020-08-07T02:33:24Z", - "lastUpdatedDateTime": "2020-08-07T02:33:26Z" - }, + "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", + "status": "invalid", + "createdDateTime": "2020-08-20T18:45:20Z", + "lastUpdatedDateTime": "2020-08-20T18:45:20Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1b9709b9d98a6df12c40a8ba28762288", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "4c189b5e-f2f0-4c51-bb3d-1432ed11053c", + "Content-Length": "356", + "Content-Type": "application/json", + "Date": "Fri, 30 Oct 2020 13:31:53 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 second. Please contact Azure support service if you would like to further increase the default rate limit." + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1b9709b9d98a6df12c40a8ba28762288", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "81dcc3bc-ccc8-4d0d-ad57-c9df3e48e90f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:31:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "243" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", + "status": "invalid", + "createdDateTime": "2020-08-20T18:45:20Z", + "lastUpdatedDateTime": "2020-08-20T18:45:20Z" + }, + { + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", + "status": "ready", + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:25:13Z" + }, + { + "modelId": "52db9454-9b6c-4514-a6f4-27d3d404a999", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:43:30Z", + "lastUpdatedDateTime": "2020-08-20T22:43:32Z" + }, + { + "modelId": "547f6f41-f70e-4cb5-aa8f-2129e33df2af", + "status": "ready", + "createdDateTime": "2020-07-30T00:55:04Z", + "lastUpdatedDateTime": "2020-07-30T00:55:12Z" + }, + { + "modelId": "551c272c-ff8f-493e-b234-a719bc35ee23", + "status": "creating", + "createdDateTime": "2020-10-30T13:19:42Z", + "lastUpdatedDateTime": "2020-10-30T13:19:42Z" + }, + { + "modelId": "55c30a55-134a-4f9d-8b42-37caa8198471", + "status": "ready", + "createdDateTime": "2020-08-14T19:11:21Z", + "lastUpdatedDateTime": "2020-08-14T19:11:31Z" + }, + { + "modelId": "56292da4-33e9-421f-ad9b-859234c5d111", + "status": "invalid", + "createdDateTime": "2020-08-20T23:29:05Z", + "lastUpdatedDateTime": "2020-08-20T23:29:05Z" + }, + { + "modelId": "566b7d84-318a-4acb-a928-d684e42b93b3", + "status": "invalid", + "createdDateTime": "2020-08-20T21:50:02Z", + "lastUpdatedDateTime": "2020-08-20T21:50:02Z" + }, + { + "modelId": "56ce1ece-256f-480d-8637-1005534971de", + "status": "ready", + "createdDateTime": "2020-08-20T21:27:11Z", + "lastUpdatedDateTime": "2020-08-20T21:27:19Z" + }, + { + "modelId": "5737eddb-d3c3-4e43-8658-b0f4322af5dc", + "status": "invalid", + "createdDateTime": "2020-08-20T23:29:06Z", + "lastUpdatedDateTime": "2020-08-20T23:29:07Z" + }, + { + "modelId": "578062d7-dbfb-4548-a54e-299c967f17be", + "status": "ready", + "createdDateTime": "2020-08-20T18:48:16Z", + "lastUpdatedDateTime": "2020-08-20T18:48:27Z" + }, + { + "modelId": "57c1049c-a148-461a-ad5d-fe7e953f7d09", + "status": "creating", + "createdDateTime": "2020-08-14T19:10:36Z", + "lastUpdatedDateTime": "2020-08-14T19:10:36Z" + }, + { + "modelId": "57e0eb22-6bdb-4ef9-a597-11d96876ad1d", + "status": "ready", + "createdDateTime": "2020-08-14T19:45:21Z", + "lastUpdatedDateTime": "2020-08-14T19:45:29Z" + }, + { + "modelId": "5802c9ef-6ce3-41ac-be05-b4afb5613cb2", + "status": "ready", + "createdDateTime": "2020-08-20T21:08:18Z", + "lastUpdatedDateTime": "2020-08-20T21:08:26Z" + }, + { + "modelId": "5837470d-2183-4c9a-b005-80ab6b76765b", + "status": "ready", + "createdDateTime": "2020-08-20T23:31:12Z", + "lastUpdatedDateTime": "2020-08-20T23:31:26Z" + }, + { + "modelId": "584c4432-36cf-4a0b-a2e1-5c651bfd4227", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:08:02Z", + "lastUpdatedDateTime": "2020-08-14T19:08:04Z" + }, + { + "modelId": "58871fae-0f09-4f14-bce7-769d4bd35354", + "status": "creating", + "createdDateTime": "2020-08-14T19:08:30Z", + "lastUpdatedDateTime": "2020-08-14T19:08:30Z" + }, + { + "modelId": "5bde02de-1dcb-4ea8-b497-0427a16b26fb", + "status": "creating", + "createdDateTime": "2020-08-20T23:25:39Z", + "lastUpdatedDateTime": "2020-08-20T23:25:39Z" + }, + { + "modelId": "5f0ca916-4ca0-4f2d-9447-caeac53bcf2e", + "status": "ready", + "createdDateTime": "2020-08-20T23:32:15Z", + "lastUpdatedDateTime": "2020-08-20T23:32:25Z" + }, + { + "modelId": "5faf34f8-8399-477b-ba82-48f1e2e7688f", + "status": "invalid", + "createdDateTime": "2020-08-14T19:45:12Z", + "lastUpdatedDateTime": "2020-08-14T19:45:12Z" + }, + { + "modelId": "5feddb70-fa11-450f-b34b-37a45b5c80d3", + "status": "invalid", + "createdDateTime": "2020-08-20T23:26:09Z", + "lastUpdatedDateTime": "2020-08-20T23:26:10Z" + }, + { + "modelId": "6035d354-53ef-4dcd-93de-5b9ad1c1ea77", + "status": "ready", + "createdDateTime": "2020-08-20T18:42:40Z", + "lastUpdatedDateTime": "2020-08-20T18:42:48Z" + }, + { + "modelId": "6216b1ae-970a-485b-a35e-070150082adb", + "status": "creating", + "createdDateTime": "2020-08-20T22:42:57Z", + "lastUpdatedDateTime": "2020-08-20T22:42:57Z" + }, + { + "modelId": "63262869-1ff0-49d0-a26f-1d1552cad649", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:09:49Z", + "lastUpdatedDateTime": "2020-08-20T23:09:51Z" + }, + { + "modelId": "637426f9-5d46-4e4c-8bfb-86f2b60bd94b", + "status": "creating", + "createdDateTime": "2020-08-20T21:49:44Z", + "lastUpdatedDateTime": "2020-08-20T21:49:44Z" + }, + { + "modelId": "66087b32-fce4-402d-9101-1bc4f627462d", + "status": "ready", + "createdDateTime": "2020-08-20T21:22:24Z", + "lastUpdatedDateTime": "2020-08-20T21:22:33Z" + }, + { + "modelId": "6645dde9-caf0-4beb-8758-501325f2e605", + "status": "ready", + "createdDateTime": "2020-08-20T21:53:58Z", + "lastUpdatedDateTime": "2020-08-20T21:54:06Z" + }, + { + "modelId": "68f6c9f8-795d-43bc-97bd-619dad38c66d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:28:13Z", + "lastUpdatedDateTime": "2020-08-20T23:28:19Z" + }, + { + "modelId": "6bbda4de-97ee-4d62-a7ab-2a9a13f503f6", + "status": "invalid", + "createdDateTime": "2020-08-20T21:49:56Z", + "lastUpdatedDateTime": "2020-08-20T21:49:56Z" + }, + { + "modelId": "6c252bb0-d84a-47c8-82af-0dabf36c4c6f", + "status": "invalid", + "createdDateTime": "2020-08-20T21:47:26Z", + "lastUpdatedDateTime": "2020-08-20T21:47:27Z" + }, + { + "modelId": "6c6bd1f5-4009-435f-b938-df50c1966733", + "status": "ready", + "createdDateTime": "2020-08-20T21:28:00Z", + "lastUpdatedDateTime": "2020-08-20T21:28:08Z" + }, + { + "modelId": "6fbe2ae1-fd8f-40c7-bf2e-c05e90931aac", + "status": "creating", + "createdDateTime": "2020-08-20T23:28:45Z", + "lastUpdatedDateTime": "2020-08-20T23:28:45Z" + }, + { + "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", + "status": "ready", + "createdDateTime": "2020-08-20T18:45:22Z", + "lastUpdatedDateTime": "2020-08-20T18:45:26Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "21dd4cbc2852d236a605c11c47b0aabb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b7238caa-5637-4575-a341-4d432286a3c1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:31:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "273" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", + "status": "ready", + "createdDateTime": "2020-08-20T18:45:22Z", + "lastUpdatedDateTime": "2020-08-20T18:45:26Z" + }, + { + "modelId": "714cd9ba-6084-4966-bf98-079fc90562fe", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:10:07Z", + "lastUpdatedDateTime": "2020-08-14T19:10:09Z" + }, + { + "modelId": "7156bc3a-1e6b-4125-b89f-10d971d5ba14", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:27:48Z", + "lastUpdatedDateTime": "2020-08-20T22:27:50Z" + }, + { + "modelId": "741ca2b2-d208-4a68-a59d-f6fb1e41c596", + "modelName": "My training", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:21:03Z", + "lastUpdatedDateTime": "2020-10-30T13:21:04Z" + }, + { + "modelId": "74ea7917-ea1e-4d62-8bd9-551fcac9d963", + "status": "ready", + "createdDateTime": "2020-08-14T19:50:11Z", + "lastUpdatedDateTime": "2020-08-14T19:50:19Z" + }, + { + "modelId": "765cd50a-d9bd-4bbe-9e77-8e496c234240", + "status": "ready", + "createdDateTime": "2020-08-20T18:46:18Z", + "lastUpdatedDateTime": "2020-08-20T18:46:27Z" + }, + { + "modelId": "76aed1f7-5a15-4754-925c-45d27d7fd0c5", + "status": "creating", + "createdDateTime": "2020-08-20T21:22:34Z", + "lastUpdatedDateTime": "2020-08-20T21:22:34Z" + }, + { + "modelId": "76e1dc72-2be3-4c40-9f07-6b29a0bf327a", + "status": "creating", + "createdDateTime": "2020-08-14T19:44:45Z", + "lastUpdatedDateTime": "2020-08-14T19:44:45Z" + }, + { + "modelId": "76e25188-e121-4fc3-a5f3-3cb861033259", + "status": "creating", + "createdDateTime": "2020-08-20T21:25:07Z", + "lastUpdatedDateTime": "2020-08-20T21:25:07Z" + }, + { + "modelId": "795417b4-25af-4d41-aa61-3cef0084e589", + "status": "ready", + "createdDateTime": "2020-08-20T21:50:03Z", + "lastUpdatedDateTime": "2020-08-20T21:50:07Z" + }, + { + "modelId": "79a2c6de-5040-4198-a2fa-ecbe37e71788", + "modelName": "My training", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:02Z", + "lastUpdatedDateTime": "2020-10-30T13:24:03Z" + }, + { + "modelId": "7c9a4c19-1761-40d2-8f2b-10f10510ca74", + "status": "ready", + "createdDateTime": "2020-08-14T19:10:57Z", + "lastUpdatedDateTime": "2020-08-14T19:11:00Z" + }, + { + "modelId": "7dd8a381-1484-4809-ad11-db27dc50841e", + "status": "ready", + "createdDateTime": "2020-08-20T21:49:31Z", + "lastUpdatedDateTime": "2020-08-20T21:49:39Z" + }, + { + "modelId": "7dfcb89d-abc6-43ca-bae6-cce241d06e4f", + "status": "ready", + "createdDateTime": "2020-08-20T21:30:14Z", + "lastUpdatedDateTime": "2020-08-20T21:30:22Z" + }, + { + "modelId": "7f2745e3-7f0d-46f7-919a-96b939030594", + "status": "creating", + "createdDateTime": "2020-08-20T22:42:59Z", + "lastUpdatedDateTime": "2020-08-20T22:42:59Z" + }, + { + "modelId": "80601216-855c-4286-b532-34af33c229ae", + "status": "ready", + "createdDateTime": "2020-08-14T19:13:08Z", + "lastUpdatedDateTime": "2020-08-14T19:13:16Z" + }, + { + "modelId": "84fd2414-5018-4f5a-9805-b80467ce7593", + "status": "ready", + "createdDateTime": "2020-08-20T21:47:27Z", + "lastUpdatedDateTime": "2020-08-20T21:47:31Z" + }, + { + "modelId": "8692493e-799d-48c3-b217-950e1471adba", + "status": "ready", + "createdDateTime": "2020-08-14T19:48:16Z", + "lastUpdatedDateTime": "2020-08-14T19:48:24Z" + }, + { + "modelId": "878a4cd7-39c2-46a0-a905-7cc1bd071837", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:46:09Z", + "lastUpdatedDateTime": "2020-08-14T19:46:12Z" + }, + { + "modelId": "87f0f103-08c9-4cae-91b8-f5a0a205bb35", + "status": "creating", + "createdDateTime": "2020-08-17T22:32:37Z", + "lastUpdatedDateTime": "2020-08-17T22:32:37Z" + }, + { + "modelId": "88d34ad1-0508-475c-9d75-2c15594876ac", + "status": "invalid", + "createdDateTime": "2020-08-14T19:47:12Z", + "lastUpdatedDateTime": "2020-08-14T19:47:12Z" + }, + { + "modelId": "8a2a6999-df6a-4b64-9633-87d097b2af06", + "status": "invalid", + "createdDateTime": "2020-08-20T22:45:53Z", + "lastUpdatedDateTime": "2020-08-20T22:45:53Z" + }, + { + "modelId": "91f0a68b-5890-4e2a-8856-4489113f9d54", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:11:01Z", + "lastUpdatedDateTime": "2020-08-14T19:11:08Z" + }, + { + "modelId": "91f917c8-c8ad-457e-8d62-00e3e1686aac", + "status": "invalid", + "createdDateTime": "2020-08-20T18:43:19Z", + "lastUpdatedDateTime": "2020-08-20T18:43:20Z" + }, + { + "modelId": "921d9d16-9a9d-4dab-a0c5-63deb0aed5a6", + "status": "ready", + "createdDateTime": "2020-08-20T22:42:48Z", + "lastUpdatedDateTime": "2020-08-20T22:42:56Z" + }, + { + "modelId": "9259c76f-7273-41a7-83e2-fd176eeef64e", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:46:02Z", + "lastUpdatedDateTime": "2020-08-20T22:46:04Z" + }, + { + "modelId": "92829e8f-ef96-4b83-8d54-4e2064729e84", + "status": "invalid", + "createdDateTime": "2020-08-14T19:08:49Z", + "lastUpdatedDateTime": "2020-08-14T19:08:49Z" + }, + { + "modelId": "932ef024-3b06-4445-bc05-863f0b7365db", + "status": "ready", + "createdDateTime": "2020-08-14T19:10:25Z", + "lastUpdatedDateTime": "2020-08-14T19:10:32Z" + }, + { + "modelId": "94e1ae64-db16-4b11-b3ec-db684b3eb473", + "status": "ready", + "createdDateTime": "2020-08-20T21:46:57Z", + "lastUpdatedDateTime": "2020-08-20T21:47:05Z" + }, + { + "modelId": "959a6767-936a-4388-be50-47b1471173e2", + "status": "ready", + "createdDateTime": "2020-08-20T22:43:33Z", + "lastUpdatedDateTime": "2020-08-20T22:43:42Z" + }, + { + "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:51Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "58031550260af9db3bd12ae03e83cd74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9f6c7b5c-9e13-4b83-a698-38291febdeef", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:31:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "246" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:51Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" + }, + { + "modelId": "9794b06a-303c-4014-ac9c-d64ccd2d897d", + "status": "creating", + "createdDateTime": "2020-08-20T21:22:33Z", + "lastUpdatedDateTime": "2020-08-20T21:22:33Z" + }, + { + "modelId": "97be7970-9a98-4b3f-980c-77bf06f29131", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:21:52Z", + "lastUpdatedDateTime": "2020-10-30T13:21:54Z" + }, + { + "modelId": "98fc2d15-8bb1-4eb8-85f8-dbde2d188615", + "status": "ready", + "createdDateTime": "2020-08-14T19:46:41Z", + "lastUpdatedDateTime": "2020-08-14T19:46:48Z" + }, + { + "modelId": "9947fcd1-42b4-4c38-930e-1b0403e6f761", + "status": "ready", + "createdDateTime": "2020-08-14T19:45:42Z", + "lastUpdatedDateTime": "2020-08-14T19:45:53Z" + }, + { + "modelId": "99c2b562-6e31-4923-a25c-8d940951ed2f", + "status": "ready", + "createdDateTime": "2020-08-14T19:47:23Z", + "lastUpdatedDateTime": "2020-08-14T19:47:32Z" + }, + { + "modelId": "9a0b42b4-09e2-4c90-8bd0-64395fb588e8", + "status": "ready", + "createdDateTime": "2020-08-20T23:28:36Z", + "lastUpdatedDateTime": "2020-08-20T23:28:44Z" + }, + { + "modelId": "9aa701a8-3822-4d5d-bc37-4891415c267f", + "status": "ready", + "createdDateTime": "2020-08-20T22:06:19Z", + "lastUpdatedDateTime": "2020-08-20T22:06:29Z" + }, + { + "modelId": "9d8aac28-0ab6-4b18-bb80-35341797a3ad", + "status": "ready", + "createdDateTime": "2020-08-20T21:53:04Z", + "lastUpdatedDateTime": "2020-08-20T21:53:15Z" + }, + { + "modelId": "9e6eb7bc-d4b9-4887-a38a-58957d712769", + "status": "ready", + "createdDateTime": "2020-08-20T21:30:14Z", + "lastUpdatedDateTime": "2020-08-20T21:30:22Z" + }, + { + "modelId": "9f7271da-c7c1-4407-bd1a-92577c187995", + "status": "invalid", + "createdDateTime": "2020-08-20T18:45:21Z", + "lastUpdatedDateTime": "2020-08-20T18:45:22Z" + }, + { + "modelId": "a00e27ee-1358-468a-a95c-c80e5bff6343", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:45:08Z", + "lastUpdatedDateTime": "2020-08-20T22:45:15Z" + }, + { + "modelId": "a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", + "status": "ready", + "createdDateTime": "2020-10-30T13:30:57Z", + "lastUpdatedDateTime": "2020-10-30T13:31:09Z" + }, + { + "modelId": "a0a7e72a-d8ec-4293-8dee-7fbe726fc115", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T18:45:38Z", + "lastUpdatedDateTime": "2020-08-20T18:45:39Z" + }, + { + "modelId": "a1513cf9-13dd-4eb7-bac5-7ceee4658c13", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T18:53:36Z", + "lastUpdatedDateTime": "2020-08-14T18:53:43Z" + }, + { + "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", + "status": "ready", + "createdDateTime": "2020-10-30T13:20:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:01Z" + }, + { + "modelId": "a2a41673-e1b2-4319-8eef-44910ce4d9cf", + "status": "ready", + "createdDateTime": "2020-08-20T18:43:33Z", + "lastUpdatedDateTime": "2020-08-20T18:43:41Z" + }, + { + "modelId": "a2b05934-353c-4eb9-ac8b-45d1d2e489f2", + "status": "ready", + "createdDateTime": "2020-08-20T22:46:14Z", + "lastUpdatedDateTime": "2020-08-20T22:46:24Z" + }, + { + "modelId": "a3189094-17a1-4acf-a788-f8c05c6e6a19", + "status": "invalid", + "createdDateTime": "2020-08-20T22:45:54Z", + "lastUpdatedDateTime": "2020-08-20T22:45:55Z" + }, + { + "modelId": "a336ff42-7e03-4b7f-821a-1246209f29de", + "status": "ready", + "createdDateTime": "2020-08-14T19:08:51Z", + "lastUpdatedDateTime": "2020-08-14T19:08:55Z" + }, + { + "modelId": "a38f391d-fad5-4ed5-be4c-5a3644803cf4", + "status": "ready", + "createdDateTime": "2020-08-20T23:29:39Z", + "lastUpdatedDateTime": "2020-08-20T23:29:51Z" + }, + { + "modelId": "a3cb3ffe-ba7b-4a0d-838a-eced98e48e8c", + "status": "invalid", + "createdDateTime": "2020-08-20T22:43:18Z", + "lastUpdatedDateTime": "2020-08-20T22:43:18Z" + }, + { + "modelId": "a5f5ef27-523c-44a4-a06c-a56470180145", + "status": "creating", + "createdDateTime": "2020-08-14T19:44:55Z", + "lastUpdatedDateTime": "2020-08-14T19:44:55Z" + }, + { + "modelId": "a67b821e-e8f2-419d-97f6-e28903abe6a0", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:25:31Z", + "lastUpdatedDateTime": "2020-08-20T21:25:32Z" + }, + { + "modelId": "a70a5d5b-3b72-486b-91f1-0b518e077a43", + "status": "ready", + "createdDateTime": "2020-08-20T22:48:57Z", + "lastUpdatedDateTime": "2020-08-20T22:49:06Z" + }, + { + "modelId": "a78b3a1c-9189-4901-9bc2-ccceec21bf20", + "status": "creating", + "createdDateTime": "2020-08-20T18:44:56Z", + "lastUpdatedDateTime": "2020-08-20T18:44:56Z" + }, + { + "modelId": "a7d5f0a1-b604-4fd4-a1fb-5df92c6deaef", + "status": "ready", + "createdDateTime": "2020-08-20T18:26:04Z", + "lastUpdatedDateTime": "2020-08-20T18:26:12Z" + }, + { + "modelId": "a8b5afb6-f11a-4496-ad62-a70e3ecda523", + "status": "ready", + "createdDateTime": "2020-08-14T19:49:09Z", + "lastUpdatedDateTime": "2020-08-14T19:49:17Z" + }, + { + "modelId": "a95aa07c-a27b-4323-8bc6-3a02485f2707", + "status": "ready", + "createdDateTime": "2020-08-20T21:50:21Z", + "lastUpdatedDateTime": "2020-08-20T21:50:32Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5NWFhMDdjLWEyN2ItNDMyMy04YmM2LTNhMDI0ODVmMjcwNy9hOTVhYTA3Yy1hMjdiLTQzMjMtOGJjNi0zYTAyNDg1ZjI3MDcuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5NWFhMDdjLWEyN2ItNDMyMy04YmM2LTNhMDI0ODVmMjcwNy9hOTVhYTA3Yy1hMjdiLTQzMjMtOGJjNi0zYTAyNDg1ZjI3MDcuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "37c11901c4269170d3c5758518d5267b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "db329643-68e4-4650-bd0c-61f7f2b8f69c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:31:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "275" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "a95aa07c-a27b-4323-8bc6-3a02485f2707", + "status": "ready", + "createdDateTime": "2020-08-20T21:50:21Z", + "lastUpdatedDateTime": "2020-08-20T21:50:32Z" + }, + { + "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:46:13Z", + "lastUpdatedDateTime": "2020-08-20T22:46:14Z" + }, + { + "modelId": "a9dbcb83-f15c-4b42-aaef-c2e78adb3169", + "status": "ready", + "createdDateTime": "2020-08-14T19:47:14Z", + "lastUpdatedDateTime": "2020-08-14T19:47:20Z" + }, + { + "modelId": "ab71a8bd-e38c-41dd-8b9f-4677355e9ab5", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:21:05Z", + "lastUpdatedDateTime": "2020-10-30T13:21:06Z" + }, + { + "modelId": "ac2a0641-62e3-43e4-ab21-2f0eb52b6e61", + "status": "ready", + "createdDateTime": "2020-08-20T21:24:53Z", + "lastUpdatedDateTime": "2020-08-20T21:25:02Z" + }, + { + "modelId": "ad2694f9-88d9-48b6-b85c-71b6000aa9df", + "status": "ready", + "createdDateTime": "2020-08-14T19:47:39Z", + "lastUpdatedDateTime": "2020-08-14T19:47:49Z" + }, + { + "modelId": "af6d3536-b663-4856-9824-9e8872fc83ed", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T18:43:43Z", + "lastUpdatedDateTime": "2020-08-20T18:43:45Z" + }, + { + "modelId": "b01f6909-840f-4ca9-85a3-769538176fe5", + "status": "ready", + "createdDateTime": "2020-08-20T22:43:50Z", + "lastUpdatedDateTime": "2020-08-20T22:44:01Z" + }, + { + "modelId": "b08b7db5-97ae-4459-9603-47d5994e9f4a", + "status": "ready", + "createdDateTime": "2020-08-14T19:11:57Z", + "lastUpdatedDateTime": "2020-08-14T19:12:05Z" + }, + { + "modelId": "b0b6140c-fb6e-4c67-b7f1-420074909323", + "status": "creating", + "createdDateTime": "2020-08-20T23:28:47Z", + "lastUpdatedDateTime": "2020-08-20T23:28:47Z" + }, + { + "modelId": "b102b022-de56-4e48-8c16-41dae496d899", + "status": "invalid", + "createdDateTime": "2020-08-20T21:47:25Z", + "lastUpdatedDateTime": "2020-08-20T21:47:25Z" + }, + { + "modelId": "b370849a-a304-464b-acdb-1308a78b2fa2", + "status": "invalid", + "createdDateTime": "2020-10-30T13:20:52Z", + "lastUpdatedDateTime": "2020-10-30T13:20:52Z" + }, + { + "modelId": "b3cc3815-9fc0-40bc-ad82-0533b038db9d", + "status": "ready", + "createdDateTime": "2020-08-14T19:45:13Z", + "lastUpdatedDateTime": "2020-08-14T19:45:17Z" + }, + { + "modelId": "b404b97b-0e37-4eb5-8ad1-4ced5d0a34a5", + "status": "ready", + "createdDateTime": "2020-08-20T18:45:29Z", + "lastUpdatedDateTime": "2020-08-20T18:45:37Z" + }, + { + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", + "status": "ready", + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:22:15Z" + }, + { + "modelId": "b6cf7b42-a0ea-4d17-9a2e-080f0370f562", + "status": "invalid", + "createdDateTime": "2020-08-20T21:22:55Z", + "lastUpdatedDateTime": "2020-08-20T21:22:55Z" + }, + { + "modelId": "b768df27-adda-4f47-8223-4f9b696b3591", + "status": "creating", + "createdDateTime": "2020-08-20T21:47:08Z", + "lastUpdatedDateTime": "2020-08-20T21:47:08Z" + }, + { + "modelId": "b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:23:46Z", + "lastUpdatedDateTime": "2020-10-30T13:23:47Z" + }, + { + "modelId": "bacfa117-235d-43f0-b919-913a0e0ae686", + "status": "ready", + "createdDateTime": "2020-08-20T22:47:48Z", + "lastUpdatedDateTime": "2020-08-20T22:47:56Z" + }, + { + "modelId": "bc1133f6-33d3-4ac1-a848-0695866e1786", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:25:41Z", + "lastUpdatedDateTime": "2020-08-20T21:25:42Z" + }, + { + "modelId": "bc6ae2e0-2eb4-40bb-b8d0-0ca37f413c58", + "status": "invalid", + "createdDateTime": "2020-08-20T21:22:53Z", + "lastUpdatedDateTime": "2020-08-20T21:22:54Z" + }, + { + "modelId": "bd10694b-d9fd-402e-9f89-2e5994a7691f", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T18:27:08Z", + "lastUpdatedDateTime": "2020-08-20T18:27:10Z" + }, + { + "modelId": "be8593fc-3fab-4300-8b14-f77966b99c04", + "status": "invalid", + "createdDateTime": "2020-08-14T19:10:54Z", + "lastUpdatedDateTime": "2020-08-14T19:10:54Z" + }, + { + "modelId": "c1cf6bc1-0d0f-4a23-b453-9df1b937710a", + "status": "ready", + "createdDateTime": "2020-08-20T18:47:27Z", + "lastUpdatedDateTime": "2020-08-20T18:47:35Z" + }, + { + "modelId": "c2401fd4-05c0-48d4-bd2f-7a30589b1306", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:09:15Z", + "lastUpdatedDateTime": "2020-08-14T19:09:27Z" + }, + { + "modelId": "c39ee6fa-e7a8-4ad9-990e-aa9049846fff", + "status": "ready", + "createdDateTime": "2020-08-20T23:29:08Z", + "lastUpdatedDateTime": "2020-08-20T23:29:13Z" + }, + { + "modelId": "c5797a87-180d-4ec3-a23f-aa44848ad149", + "status": "ready", + "createdDateTime": "2020-08-20T23:26:12Z", + "lastUpdatedDateTime": "2020-08-20T23:26:17Z" + }, + { + "modelId": "c690cad3-cb93-4b4b-9139-f542f08aefa2", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:26:23Z", + "lastUpdatedDateTime": "2020-08-20T23:26:24Z" + }, { - "modelId": "c59b42e7-7aca-497e-9aad-c65bbeed9b57", + "modelId": "c6a30526-4a60-4aac-90db-dea83bf04799", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:22:35Z", - "lastUpdatedDateTime": "2020-08-06T23:22:42Z" + "createdDateTime": "2020-08-20T23:25:05Z", + "lastUpdatedDateTime": "2020-08-20T23:25:07Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2M1OWI0MmU3LTdhY2EtNDk3ZS05YWFkLWM2NWJiZWVkOWI1Ny91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M2YTMwNTI2LTRhNjAtNGFhYy05MGRiLWRlYTgzYmYwNDc5OS9jNmEzMDUyNi00YTYwLTRhYWMtOTBkYi1kZWE4M2JmMDQ3OTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2M1OWI0MmU3LTdhY2EtNDk3ZS05YWFkLWM2NWJiZWVkOWI1Ny91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M2YTMwNTI2LTRhNjAtNGFhYy05MGRiLWRlYTgzYmYwNDc5OS9jNmEzMDUyNi00YTYwLTRhYWMtOTBkYi1kZWE4M2JmMDQ3OTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "37c11901c4269170d3c5758518d5267b", + "x-ms-client-request-id": "1269ec96c972957e71e4e581fd569322", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92d0b627-c595-4dd2-af17-aa5e7404d01d", + "apim-request-id": "5612256b-4d44-481d-a4d0-977ab9583e00", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:32 GMT", + "Date": "Fri, 30 Oct 2020 13:31:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "362" + "x-envoy-upstream-service-time": "227" }, "ResponseBody": { "modelList": [ { - "modelId": "c59b42e7-7aca-497e-9aad-c65bbeed9b57", + "modelId": "c6a30526-4a60-4aac-90db-dea83bf04799", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:22:35Z", - "lastUpdatedDateTime": "2020-08-06T23:22:42Z" + "createdDateTime": "2020-08-20T23:25:05Z", + "lastUpdatedDateTime": "2020-08-20T23:25:07Z" }, { - "modelId": "c8986d9f-8e8a-4d04-8bb0-6638b754e15d", - "status": "invalid", - "createdDateTime": "2020-08-07T02:36:41Z", - "lastUpdatedDateTime": "2020-08-07T02:36:42Z" - }, - { - "modelId": "c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", "status": "ready", - "createdDateTime": "2020-09-09T22:22:16Z", - "lastUpdatedDateTime": "2020-09-09T22:22:29Z" + "createdDateTime": "2020-08-20T23:33:14Z", + "lastUpdatedDateTime": "2020-08-20T23:33:22Z" }, { - "modelId": "ca22fcf9-50fd-4f30-9cc2-89ce165da9e5", + "modelId": "c89e3c61-0048-4ac6-93e6-4f28e4c290cc", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:54:59Z", - "lastUpdatedDateTime": "2020-08-26T17:55:09Z" - }, - { - "modelId": "cb5e24c2-a87a-4d58-9eb6-d45c354188d2", - "status": "creating", - "createdDateTime": "2020-08-26T17:52:51Z", - "lastUpdatedDateTime": "2020-08-26T17:52:51Z" - }, - { - "modelId": "cc311fd7-86eb-45db-9d4d-a3d8e0370b65", - "status": "invalid", - "createdDateTime": "2020-08-26T17:53:05Z", - "lastUpdatedDateTime": "2020-08-26T17:53:06Z" + "createdDateTime": "2020-08-14T19:29:28Z", + "lastUpdatedDateTime": "2020-08-14T19:29:35Z" }, { - "modelId": "cdc006db-a59c-4cc8-a2dc-ab16c680ea79", + "modelId": "c8b76997-38b0-444f-9646-40e930bd7b5c", "status": "ready", - "createdDateTime": "2020-08-11T23:26:28Z", - "lastUpdatedDateTime": "2020-08-11T23:26:31Z" + "createdDateTime": "2020-08-20T21:47:50Z", + "lastUpdatedDateTime": "2020-08-20T21:48:01Z" }, { - "modelId": "cf827cbd-7ef9-4d03-bcb2-3196ac232a27", + "modelId": "cdb4705a-40e1-4ff4-8ad0-fec5734f4325", "status": "ready", - "createdDateTime": "2020-08-07T02:42:09Z", - "lastUpdatedDateTime": "2020-08-07T02:42:23Z" + "createdDateTime": "2020-08-20T23:10:08Z", + "lastUpdatedDateTime": "2020-08-20T23:10:17Z" }, { - "modelId": "cfe75f49-a7d5-4642-98f2-63dc697109fc", - "status": "invalid", - "createdDateTime": "2020-08-26T17:32:33Z", - "lastUpdatedDateTime": "2020-08-26T17:32:34Z" - }, - { - "modelId": "d191bdd0-84ab-46aa-a6c3-f8def1867cf1", - "attributes": { - "isComposed": false - }, + "modelId": "cde04bf1-6d25-46f7-bdb5-2d056d9d0770", "status": "ready", - "createdDateTime": "2020-08-26T17:51:14Z", - "lastUpdatedDateTime": "2020-08-26T17:51:17Z" + "createdDateTime": "2020-08-14T19:09:28Z", + "lastUpdatedDateTime": "2020-08-14T19:09:39Z" }, { - "modelId": "d1bf30dc-45a1-4bfe-9e5e-6e50d6ffa19d", + "modelId": "cdfdd9de-9047-4c6b-9a87-eb8f561f73ff", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:21:03Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" - }, - { - "modelId": "d273c5ba-313e-4954-9487-697d5088f802", - "status": "invalid", - "createdDateTime": "2020-08-07T02:32:53Z", - "lastUpdatedDateTime": "2020-08-07T02:32:53Z" - }, - { - "modelId": "d7e283fe-3aec-4bf8-94fe-61fe21940395", - "status": "creating", - "createdDateTime": "2020-08-26T17:32:14Z", - "lastUpdatedDateTime": "2020-08-26T17:32:14Z" + "createdDateTime": "2020-08-14T19:47:21Z", + "lastUpdatedDateTime": "2020-08-14T19:47:23Z" }, { - "modelId": "d93c3dfe-b120-414e-9f51-ad40310c4a43", + "modelId": "cee73923-0fa2-40dd-8eda-8446c153ecbb", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:33:41Z", - "lastUpdatedDateTime": "2020-08-26T17:33:49Z" + "createdDateTime": "2020-08-14T19:45:18Z", + "lastUpdatedDateTime": "2020-08-14T19:45:20Z" }, { - "modelId": "db508217-f07e-493a-89c4-72a5f714a4b9", - "status": "invalid", - "createdDateTime": "2020-08-26T17:51:04Z", - "lastUpdatedDateTime": "2020-08-26T17:51:04Z" - }, - { - "modelId": "dc8ece10-6525-4660-8090-b1bcc26c4e9d", + "modelId": "cf0a0084-92b5-4c82-aaee-b899a0645f91", "status": "ready", - "createdDateTime": "2020-08-06T23:42:46Z", - "lastUpdatedDateTime": "2020-08-06T23:42:54Z" + "createdDateTime": "2020-08-14T18:53:51Z", + "lastUpdatedDateTime": "2020-08-14T18:53:59Z" }, { - "modelId": "ddb1a1cd-e9d7-4044-a077-d5bfa01c98ee", + "modelId": "cfe8a11b-ae8c-4105-a8a3-ab69bd8a4354", "status": "invalid", - "createdDateTime": "2020-08-26T17:32:32Z", - "lastUpdatedDateTime": "2020-08-26T17:32:32Z" + "createdDateTime": "2020-10-30T13:23:52Z", + "lastUpdatedDateTime": "2020-10-30T13:23:52Z" }, { - "modelId": "e3059236-3520-4d20-93d2-5d82c089a198", + "modelId": "d1ebd4b5-6e79-4a31-9ed2-0d492b409a6c", "status": "creating", - "createdDateTime": "2020-08-26T17:32:17Z", - "lastUpdatedDateTime": "2020-08-26T17:32:17Z" + "createdDateTime": "2020-08-14T19:46:50Z", + "lastUpdatedDateTime": "2020-08-14T19:46:50Z" }, { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4", + "modelId": "d234c2cd-e20d-407c-b023-2bb7e0065875", "status": "ready", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:27Z" + "createdDateTime": "2020-08-20T21:06:49Z", + "lastUpdatedDateTime": "2020-08-20T21:06:57Z" }, { - "modelId": "e54e8d47-0c59-4c6f-8e42-42075bca2625", - "status": "invalid", - "createdDateTime": "2020-08-07T02:38:17Z", - "lastUpdatedDateTime": "2020-08-07T02:38:23Z" + "modelId": "d2bb2813-e890-4726-ad3a-5b2137840550", + "status": "ready", + "createdDateTime": "2020-08-14T19:08:59Z", + "lastUpdatedDateTime": "2020-08-14T19:09:09Z" }, { - "modelId": "e68af186-60e9-43ab-bf44-957aaa96e75f", + "modelId": "d35b3816-19e2-4263-840b-749342c5a9ae", "status": "creating", - "createdDateTime": "2020-08-26T17:52:47Z", - "lastUpdatedDateTime": "2020-08-26T17:52:47Z" + "createdDateTime": "2020-08-20T23:25:48Z", + "lastUpdatedDateTime": "2020-08-20T23:25:48Z" }, { - "modelId": "e76f563f-8640-4330-b98a-d2431721debd", + "modelId": "d38c3724-ecc0-46ad-be24-9cfb55e88fdd", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:50:38Z", - "lastUpdatedDateTime": "2020-08-26T17:50:48Z" + "createdDateTime": "2020-08-20T23:29:19Z", + "lastUpdatedDateTime": "2020-08-20T23:29:21Z" }, { - "modelId": "ea436462-f638-49a6-b220-ed94172d8701", + "modelId": "d44ad36d-9b3f-4528-aeed-50111c87d0d8", "status": "ready", - "createdDateTime": "2020-08-06T23:17:00Z", - "lastUpdatedDateTime": "2020-08-06T23:17:07Z" + "createdDateTime": "2020-08-20T21:22:56Z", + "lastUpdatedDateTime": "2020-08-20T21:22:59Z" }, { - "modelId": "ebbbbee8-942c-4374-b3a6-ac594f195e78", + "modelId": "d71f1973-c8bc-4723-95f6-270faeb0d710", "status": "ready", - "createdDateTime": "2020-08-07T02:03:56Z", - "lastUpdatedDateTime": "2020-08-07T02:04:09Z" + "createdDateTime": "2020-08-05T20:02:42Z", + "lastUpdatedDateTime": "2020-08-05T20:02:53Z" }, { - "modelId": "eff726db-d669-457a-b2a4-f003290d914c", + "modelId": "d76bbb87-3665-4fcf-bd78-5af39fa70371", + "status": "creating", + "createdDateTime": "2020-08-20T21:25:03Z", + "lastUpdatedDateTime": "2020-08-20T21:25:03Z" + }, + { + "modelId": "d7c60908-afae-4db7-97a4-7dfee044d9fb", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-11T23:26:32Z", - "lastUpdatedDateTime": "2020-08-11T23:26:45Z" + "createdDateTime": "2020-08-14T19:44:20Z", + "lastUpdatedDateTime": "2020-08-14T19:44:27Z" }, { - "modelId": "f0261c04-3454-4073-ae5f-c2f450dcd690", + "modelId": "d8bc8709-3324-4d86-a702-fb13d83bd3fd", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:37:58Z", - "lastUpdatedDateTime": "2020-08-06T23:38:08Z" + "createdDateTime": "2020-08-20T21:24:37Z", + "lastUpdatedDateTime": "2020-08-20T21:24:38Z" }, { - "modelId": "f0add33b-8563-4329-855b-665e87cafc5c", + "modelId": "d9d6453d-555a-411b-8969-29023fc1d347", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:33:04Z", - "lastUpdatedDateTime": "2020-08-26T17:33:17Z" + "createdDateTime": "2020-08-20T21:50:19Z", + "lastUpdatedDateTime": "2020-08-20T21:50:21Z" }, { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859", + "modelId": "da9ff68e-3cb0-4066-8030-84fac4049adf", "status": "ready", - "createdDateTime": "2020-09-09T22:15:54Z", - "lastUpdatedDateTime": "2020-09-09T22:16:06Z" + "createdDateTime": "2020-08-20T23:26:42Z", + "lastUpdatedDateTime": "2020-08-20T23:26:55Z" }, { - "modelId": "f4579713-39a2-421d-b166-08a7a50e12f3", + "modelId": "db37c79c-cb7c-4e82-b5a6-de8761e95791", + "status": "creating", + "createdDateTime": "2020-08-17T22:33:39Z", + "lastUpdatedDateTime": "2020-08-17T22:33:39Z" + }, + { + "modelId": "de0c3af0-ab73-4a50-88b9-0be008348ff3", "status": "ready", - "createdDateTime": "2020-08-26T17:53:18Z", - "lastUpdatedDateTime": "2020-08-26T17:53:26Z" + "createdDateTime": "2020-08-14T19:12:59Z", + "lastUpdatedDateTime": "2020-08-14T19:13:07Z" }, { - "modelId": "f5e89999-37c5-41ef-88b9-4341e3ab14b1", + "modelId": "ded45364-1d15-4185-9ba1-349085488c79", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:34:55Z", - "lastUpdatedDateTime": "2020-08-26T17:34:56Z" + "createdDateTime": "2020-08-20T21:31:28Z", + "lastUpdatedDateTime": "2020-08-20T21:31:30Z" }, { - "modelId": "f7797595-6c64-490c-9048-b1bef3c8bfb0", + "modelId": "df46a938-d337-4664-82f6-13fe40a3ccbd", "status": "ready", - "createdDateTime": "2020-08-26T17:32:35Z", - "lastUpdatedDateTime": "2020-08-26T17:32:39Z" + "createdDateTime": "2020-08-05T20:05:23Z", + "lastUpdatedDateTime": "2020-08-05T20:05:34Z" }, { - "modelId": "f9479181-78be-4c36-86d0-1d2248f05941", - "attributes": { - "isComposed": false - }, + "modelId": "dfed1264-2f66-4fa1-83fd-adce189c3ae9", + "status": "creating", + "createdDateTime": "2020-08-17T22:30:35Z", + "lastUpdatedDateTime": "2020-08-17T22:30:35Z" + }, + { + "modelId": "e10d0994-db23-4546-9ea7-377e52f85c7e", "status": "ready", - "createdDateTime": "2020-08-26T17:53:15Z", - "lastUpdatedDateTime": "2020-08-26T17:53:17Z" + "createdDateTime": "2020-08-20T21:47:40Z", + "lastUpdatedDateTime": "2020-08-20T21:47:48Z" }, { - "modelId": "f94ccf91-64ab-4c90-baf6-c37ca2201301", - "status": "creating", - "createdDateTime": "2020-08-11T23:25:53Z", - "lastUpdatedDateTime": "2020-08-11T23:25:53Z" + "modelId": "e1fb3fc5-8672-4d3c-ad29-fa0c489f21fd", + "status": "invalid", + "createdDateTime": "2020-08-20T18:43:14Z", + "lastUpdatedDateTime": "2020-08-20T18:43:15Z" }, { - "modelId": "fa1f65c2-0b27-4061-8928-61b6d0659d18", + "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", "status": "ready", - "createdDateTime": "2020-08-26T17:51:36Z", - "lastUpdatedDateTime": "2020-08-26T17:51:48Z" + "createdDateTime": "2020-08-20T18:47:17Z", + "lastUpdatedDateTime": "2020-08-20T18:47:25Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2ZhMWY2NWMyLTBiMjctNDA2MS04OTI4LTYxYjZkMDY1OWQxOC9mYTFmNjVjMi0wYjI3LTQwNjEtODkyOC02MWI2ZDA2NTlkMTguanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyNGY1YjFlLTQxNjctNGZjNy04NGZiLTI5OGYwODNhMTk1OS9lMjRmNWIxZS00MTY3LTRmYzctODRmYi0yOThmMDgzYTE5NTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2ZhMWY2NWMyLTBiMjctNDA2MS04OTI4LTYxYjZkMDY1OWQxOC9mYTFmNjVjMi0wYjI3LTQwNjEtODkyOC02MWI2ZDA2NTlkMTguanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyNGY1YjFlLTQxNjctNGZjNy04NGZiLTI5OGYwODNhMTk1OS9lMjRmNWIxZS00MTY3LTRmYzctODRmYi0yOThmMDgzYTE5NTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1269ec96c972957e71e4e581fd569322", + "x-ms-client-request-id": "2d1a4c3772ee8c94a5728544b155e066", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4d2682dd-d92a-419e-aaf9-3baaa6cf61b1", + "apim-request-id": "821985cf-2907-4ddf-9b7f-e4d3f103e72f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:32 GMT", + "Date": "Fri, 30 Oct 2020 13:31:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "204" }, "ResponseBody": { "modelList": [ { - "modelId": "fa1f65c2-0b27-4061-8928-61b6d0659d18", + "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", + "status": "ready", + "createdDateTime": "2020-08-20T18:47:17Z", + "lastUpdatedDateTime": "2020-08-20T18:47:25Z" + }, + { + "modelId": "e29f1d60-4987-478c-b1c7-ad4dd466a719", + "status": "ready", + "createdDateTime": "2020-08-20T21:50:10Z", + "lastUpdatedDateTime": "2020-08-20T21:50:18Z" + }, + { + "modelId": "e2d2eecf-d810-4fd9-8b94-cc370a9d3dc5", + "status": "creating", + "createdDateTime": "2020-08-20T21:49:40Z", + "lastUpdatedDateTime": "2020-08-20T21:49:40Z" + }, + { + "modelId": "e31e548b-1c1a-4345-907b-b77bec13260d", + "status": "creating", + "createdDateTime": "2020-08-17T17:11:47Z", + "lastUpdatedDateTime": "2020-08-17T17:11:47Z" + }, + { + "modelId": "e4100004-e84e-4795-b220-983fafee5a10", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:19:24Z", + "lastUpdatedDateTime": "2020-10-30T13:19:26Z" + }, + { + "modelId": "e4949cbb-05e0-4d1b-bab9-c4e444b25c9e", + "status": "invalid", + "createdDateTime": "2020-08-14T19:08:50Z", + "lastUpdatedDateTime": "2020-08-14T19:08:51Z" + }, + { + "modelId": "e8679f07-a7ae-43ff-af1c-417567ece17f", + "status": "creating", + "createdDateTime": "2020-08-14T19:08:23Z", + "lastUpdatedDateTime": "2020-08-14T19:08:23Z" + }, + { + "modelId": "eb78387f-b93d-47c4-8ff2-5a75fa2848c2", + "status": "creating", + "createdDateTime": "2020-08-17T17:11:08Z", + "lastUpdatedDateTime": "2020-08-17T17:11:08Z" + }, + { + "modelId": "eccc2f1b-08fc-4bdf-af54-45bbb3a94dc8", + "status": "creating", + "createdDateTime": "2020-08-20T21:47:16Z", + "lastUpdatedDateTime": "2020-08-20T21:47:16Z" + }, + { + "modelId": "f019ba8f-b377-4307-aed2-2e357d88faad", + "status": "invalid", + "createdDateTime": "2020-08-14T19:10:55Z", + "lastUpdatedDateTime": "2020-08-14T19:10:56Z" + }, + { + "modelId": "f0790982-b19e-4f0b-9f3d-0bd73c22d50b", + "status": "ready", + "createdDateTime": "2020-08-20T18:45:40Z", + "lastUpdatedDateTime": "2020-08-20T18:45:50Z" + }, + { + "modelId": "f09bb379-e552-423b-a66e-11d4a47b4cad", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:45:30Z", + "lastUpdatedDateTime": "2020-08-14T19:45:41Z" + }, + { + "modelId": "f16a5995-6f9d-429c-a9ce-94b42e707f4e", + "status": "ready", + "createdDateTime": "2020-08-20T21:23:21Z", + "lastUpdatedDateTime": "2020-08-20T21:23:32Z" + }, + { + "modelId": "f2b17543-4827-4824-8f0a-297915305924", + "status": "creating", + "createdDateTime": "2020-08-20T23:25:39Z", + "lastUpdatedDateTime": "2020-08-20T23:25:39Z" + }, + { + "modelId": "f313494f-2d7d-4c1b-baca-4f019e1bb372", + "status": "ready", + "createdDateTime": "2020-08-20T21:23:09Z", + "lastUpdatedDateTime": "2020-08-20T21:23:17Z" + }, + { + "modelId": "f4a51dde-7357-46f7-b160-1321e8cf6a8e", + "status": "creating", + "createdDateTime": "2020-08-20T21:25:03Z", + "lastUpdatedDateTime": "2020-08-20T21:25:03Z" + }, + { + "modelId": "f5b14d6e-2c12-4a8b-a26b-6f919fb3fc22", "status": "ready", - "createdDateTime": "2020-08-26T17:51:36Z", - "lastUpdatedDateTime": "2020-08-26T17:51:48Z" + "createdDateTime": "2020-08-20T18:27:28Z", + "lastUpdatedDateTime": "2020-08-20T18:27:36Z" }, { - "modelId": "fd4189a4-0770-41b7-a564-3458a22681ae", + "modelId": "f630338a-704f-49e6-90df-3661cdb70919", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:47:48Z", + "lastUpdatedDateTime": "2020-08-20T21:47:49Z" + }, + { + "modelId": "f86960b5-529c-434d-900e-72383c3535bd", + "status": "ready", + "createdDateTime": "2020-08-20T21:27:51Z", + "lastUpdatedDateTime": "2020-08-20T21:27:59Z" + }, + { + "modelId": "f8ec4bc9-ae6d-4ff7-ae5e-5ce9155164cf", + "status": "ready", + "createdDateTime": "2020-08-20T23:32:06Z", + "lastUpdatedDateTime": "2020-08-20T23:32:14Z" + }, + { + "modelId": "f9ad28eb-5fdc-4844-8a72-04a115dd2029", + "status": "creating", + "createdDateTime": "2020-08-20T18:42:49Z", + "lastUpdatedDateTime": "2020-08-20T18:42:49Z" + }, + { + "modelId": "f9eac550-7eab-49e7-ac68-71da7921e50e", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:04Z", + "lastUpdatedDateTime": "2020-10-30T13:24:06Z" + }, + { + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100", + "status": "creating", + "createdDateTime": "2020-10-30T13:19:47Z", + "lastUpdatedDateTime": "2020-10-30T13:19:47Z" + }, + { + "modelId": "fae7acb8-2ffc-40d1-9e07-a2f2af6f54f5", "status": "ready", - "createdDateTime": "2020-08-26T17:34:57Z", - "lastUpdatedDateTime": "2020-08-26T17:35:10Z" + "createdDateTime": "2020-08-20T21:25:43Z", + "lastUpdatedDateTime": "2020-08-20T21:25:54Z" }, { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "fbc59a11-f373-4f3d-b24c-3e32aa033d7e", + "status": "creating", + "createdDateTime": "2020-08-20T18:42:56Z", + "lastUpdatedDateTime": "2020-08-20T18:42:56Z" + }, + { + "modelId": "fc0d549e-3a1f-4eda-bb96-fb6bf60c0f53", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:22:04Z" + "createdDateTime": "2020-08-20T21:47:32Z", + "lastUpdatedDateTime": "2020-08-20T21:47:39Z" + }, + { + "modelId": "fca987e8-8ed2-4c00-8aa4-eeff583bb155", + "status": "creating", + "createdDateTime": "2020-08-20T21:49:40Z", + "lastUpdatedDateTime": "2020-08-20T21:49:40Z" } ], "nextLink": "" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?op=summary", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e3ea1e46d7a02a4e8d042ccbca762c17-6c3041eb87e1db4d-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2d1a4c3772ee8c94a5728544b155e066", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 429, - "ResponseHeaders": { - "apim-request-id": "7efa689f-46a8-4e10-b002-d0311c2bccb4", - "Content-Length": "334", - "Content-Type": "application/json", - "Date": "Wed, 09 Sep 2020 22:22:32 GMT", - "Retry-After": "1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff" - }, - "ResponseBody": { - "error": { - "code": "429", - "message": "Requests to the Form - List Custom Models Operation under Form Recognizer API (v2.1-preview.1) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?op=summary", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e3ea1e46d7a02a4e8d042ccbca762c17-6c3041eb87e1db4d-00", + "traceparent": "00-3a48523dac92ed438995602dd0b82eb4-8768de1bdd6a204f-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2d1a4c3772ee8c94a5728544b155e066", + "x-ms-client-request-id": "5249aeaabb1a37029b2cc642deee937c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5fe8445b-a0c5-4d1a-983e-9fc073581c00", + "apim-request-id": "535677e3-2978-4e09-b310-8ebac338d7ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:09 GMT", + "Date": "Fri, 30 Oct 2020 13:31:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "174" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "summary": { - "count": 137, + "count": 267, "limit": 5000, - "lastUpdatedDateTime": "2020-09-09T22:23:10Z" + "lastUpdatedDateTime": "2020-10-30T13:31:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b0f0f3dfc53f0d449cde9d78e112420f-823c0e2b91c21b45-00", + "traceparent": "00-80126df31bd2674686b10b19bcbd18c0-c6b73f94d265f940-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5249aeaabb1a37029b2cc642deee937c", + "x-ms-client-request-id": "cb4d5231f9ba248d57dd6d004339e31b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "6e35fc1e-3c23-4720-b227-14bb1dfff467", + "apim-request-id": "61d6a38e-07c7-4f38-929d-bbb43bfce27e", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:23:09 GMT", + "Date": "Fri, 30 Oct 2020 13:31:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c8c235a6-2ec3-44c1-b078-9f9c74ca857d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d3a1bcb377725044b567b92f450e2300-11cbeff820493a4f-00", + "traceparent": "00-a65cadc89c934b49a3d809bf25ac2fc4-c856644be2ced64e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "cb4d5231f9ba248d57dd6d004339e31b", + "x-ms-client-request-id": "4ed67f03410d7c084ae391c2ab52adb6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "e1c9c6b1-9c70-4b59-8b3a-5ae3af9058f7", + "apim-request-id": "00d4d288-6e74-453d-84bd-bf0c06125ad3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:23:09 GMT", + "Date": "Fri, 30 Oct 2020 13:31:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "error": { "code": "1022", - "message": "Model with \u0027id=c8c235a6-2ec3-44c1-b078-9f9c74ca857d\u0027 not found." + "message": "Model with \u0027id=a05c7f08-3c69-4a74-9f21-c5a4ae79c1ad\u0027 not found." } } } @@ -1829,7 +2832,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "758005240" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False)Async.json index 381c57abdcd76..c153ef35f5ef0 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(False)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e4c7aefd1a4f2478d6a2111d16456ae-ce6eb492caa8204b-00", + "traceparent": "00-8bb4bac13077624eb47ce2eca2988ed4-0bc42b7b91b9c846-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3ce345527cb1a8021f5125e3a73ca90b", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "8455eb1d-2809-4f76-8f05-edf709bff571", + "apim-request-id": "8e6f89b9-47fd-4d4d-8070-78aa325acc58", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:24:53 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba", + "Date": "Fri, 30 Oct 2020 13:32:59 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "246" + "x-envoy-upstream-service-time": "138" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f29be5b0b15554df7004cb36df2ce5f8", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d14a2629-e5b7-432b-96dd-8f1bfc33dfca", + "apim-request-id": "cefe4f59-2ca6-4181-8e7a-2ddda2b6999e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:53 GMT", + "Date": "Fri, 30 Oct 2020 13:32:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", + "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", "status": "creating", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:24:54Z" + "createdDateTime": "2020-10-30T13:33:00Z", + "lastUpdatedDateTime": "2020-10-30T13:33:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a4c15e8ccb6eeb7b9a2f498cf6016ff8", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c47b033-98ba-4cf4-be99-c5caec718b29", + "apim-request-id": "564c0976-f871-413b-8f28-b7c6e1c47650", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:54 GMT", + "Date": "Fri, 30 Oct 2020 13:33:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", + "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", "status": "creating", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:24:54Z" + "createdDateTime": "2020-10-30T13:33:00Z", + "lastUpdatedDateTime": "2020-10-30T13:33:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "38d845deef96a1f1658fcbadb0cbc8f3", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c029b45-efea-4b10-b6d8-0689e54c6592", + "apim-request-id": "17b6363e-cbff-44ba-bb90-a3fa75cf89f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:55 GMT", + "Date": "Fri, 30 Oct 2020 13:33:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", + "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", "status": "creating", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:24:54Z" + "createdDateTime": "2020-10-30T13:33:00Z", + "lastUpdatedDateTime": "2020-10-30T13:33:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "49562c6c047ae59c69af582667535e6f", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b6715b21-7362-4b09-a80c-919d1faa68fe", + "apim-request-id": "143d0a9f-bd4b-4496-9f50-e30c4e880863", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:56 GMT", + "Date": "Fri, 30 Oct 2020 13:33:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", + "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", "status": "creating", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:24:54Z" + "createdDateTime": "2020-10-30T13:33:00Z", + "lastUpdatedDateTime": "2020-10-30T13:33:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9958d295ac539d616d203edf00ce3acf", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2ec89a0d-7b38-4d46-a8bf-85873b587c28", + "apim-request-id": "d08ef494-a893-43d3-8f1a-13fe07350877", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:57 GMT", + "Date": "Fri, 30 Oct 2020 13:33:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", + "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", "status": "creating", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:24:54Z" + "createdDateTime": "2020-10-30T13:33:00Z", + "lastUpdatedDateTime": "2020-10-30T13:33:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c920566626aad97ea8f3cfe797ca3a12", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f6bd2e8-4796-4c81-8d73-b97f5749bf16", + "apim-request-id": "27981655-bd1d-4aa2-b567-cb9563743c54", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:58 GMT", + "Date": "Fri, 30 Oct 2020 13:33:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "77" }, "ResponseBody": { "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", + "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", "status": "creating", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:24:54Z" + "createdDateTime": "2020-10-30T13:33:00Z", + "lastUpdatedDateTime": "2020-10-30T13:33:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "de175c302f72bfa0cbb9db59c5bde49b", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84fbad9c-4d4d-4da2-af4e-14081a8980e2", + "apim-request-id": "a6c258a0-08fd-44c0-a5a8-8f9a2f209ed8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:59 GMT", + "Date": "Fri, 30 Oct 2020 13:33:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "90" }, "ResponseBody": { "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", + "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", "status": "creating", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:24:54Z" + "createdDateTime": "2020-10-30T13:33:00Z", + "lastUpdatedDateTime": "2020-10-30T13:33:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "11c0887495326fc4537ef15fdd7a05a2", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a717390f-dada-4097-8c92-3919fe9af7a3", + "apim-request-id": "63547212-435c-4050-9d5d-08112af57e5e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:00 GMT", + "Date": "Fri, 30 Oct 2020 13:33:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", + "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", "status": "creating", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:24:54Z" + "createdDateTime": "2020-10-30T13:33:00Z", + "lastUpdatedDateTime": "2020-10-30T13:33:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a4ae2ce65cb6365cb561fef04a2513eb", "x-ms-return-client-request-id": "true" @@ -312,75 +312,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f470869a-00ef-4fab-9fb2-508a284cd954", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", - "status": "creating", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:24:54Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "0f72330e280a9bdf97a88bf33e40e150", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cfc2a2bb-0b30-4fab-8b45-aba6cce71f34", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", - "status": "creating", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:24:54Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "997239b4400e18e42b895bd196d3242e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "fab0fda0-14d4-4e2c-ae7e-1b1c5ce231db", + "apim-request-id": "75ae5d2c-dca8-457b-9789-6321bf6e204c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:03 GMT", + "Date": "Fri, 30 Oct 2020 13:33:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -388,76 +322,43 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", - "status": "creating", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:24:54Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a951056bf607bd984c120c0dd169f874", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a5b8b01e-310d-4250-9b94-845cee7e1fb7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", + "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", "status": "creating", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:24:54Z" + "createdDateTime": "2020-10-30T13:33:00Z", + "lastUpdatedDateTime": "2020-10-30T13:33:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "113cad7f7ab2cedc4f5ae381cd0d04c4", + "x-ms-client-request-id": "0f72330e280a9bdf97a88bf33e40e150", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "75b5880a-4dc2-4492-8049-e5963b405218", + "apim-request-id": "3c337646-b4bf-4166-93dc-15f421f1e943", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:07 GMT", + "Date": "Fri, 30 Oct 2020 13:33:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", + "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", "status": "ready", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:25:05Z" + "createdDateTime": "2020-10-30T13:33:00Z", + "lastUpdatedDateTime": "2020-10-30T13:33:11Z" }, "keys": { "clusters": { @@ -527,36 +428,36 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-15793f3fff0b004586cf1e7df16de74b-2304ee43d74ec648-00", + "traceparent": "00-a9d83362fc2b8441bb3667d62ad63b43-04adc551be15634c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "38885c8337efbd49a1b54cfc34d747c2", + "x-ms-client-request-id": "997239b4400e18e42b895bd196d3242e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fda5d403-a985-4869-b9fe-747ad601ae4e", + "apim-request-id": "b862b5ac-8d9c-4cd9-8d0f-9691110b6f54", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:07 GMT", + "Date": "Fri, 30 Oct 2020 13:33:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "modelInfo": { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", + "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", "status": "ready", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:25:05Z" + "createdDateTime": "2020-10-30T13:33:00Z", + "lastUpdatedDateTime": "2020-10-30T13:33:11Z" }, "keys": { "clusters": { @@ -626,1232 +527,2302 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?op=full", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e952e6901396f17b29825aad1316f03e", + "x-ms-client-request-id": "a951056bf607bd984c120c0dd169f874", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c06d6425-c64e-4570-989b-e05a814e831a", + "apim-request-id": "ae4f14a3-f3d4-471e-ab5c-09b4aa46cf07", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:07 GMT", + "Date": "Fri, 30 Oct 2020 13:33:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "337" + "x-envoy-upstream-service-time": "775" }, "ResponseBody": { "modelList": [ { - "modelId": "00865e07-158d-471e-9426-01be75f859e0", - "status": "ready", - "createdDateTime": "2020-08-26T17:32:48Z", - "lastUpdatedDateTime": "2020-08-26T17:33:00Z" - }, - { - "modelId": "020b8b8c-c2f6-491b-b01a-ff5993467086", - "status": "ready", - "createdDateTime": "2020-09-09T22:20:27Z", - "lastUpdatedDateTime": "2020-09-09T22:20:40Z" - }, - { - "modelId": "028fea9c-452b-424b-b013-131263f59718", + "modelId": "007c06a2-25ad-48f2-9d13-b104d0d8f1e0", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:23:10Z", - "lastUpdatedDateTime": "2020-09-09T22:23:12Z" + "createdDateTime": "2020-08-20T18:43:30Z", + "lastUpdatedDateTime": "2020-08-20T18:43:32Z" }, { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", + "modelId": "01579645-6803-4345-8db9-659c6a1744a0", "status": "ready", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:21:02Z" + "createdDateTime": "2020-10-30T13:23:55Z", + "lastUpdatedDateTime": "2020-10-30T13:24:00Z" }, { - "modelId": "052402e5-f6dd-4b4f-a06f-882b793dc037", + "modelId": "01bc0ea9-d7e3-4515-b502-f2b57efb0aa2", "status": "creating", - "createdDateTime": "2020-08-26T17:34:14Z", - "lastUpdatedDateTime": "2020-08-26T17:34:14Z" + "createdDateTime": "2020-08-20T18:44:54Z", + "lastUpdatedDateTime": "2020-08-20T18:44:54Z" }, { - "modelId": "06a29baa-9786-4aab-8b84-a8ea64541595", + "modelId": "01bd21ac-ce1b-4e9f-b1a3-92847479633e", "status": "ready", - "createdDateTime": "2020-08-26T17:34:36Z", - "lastUpdatedDateTime": "2020-08-26T17:34:39Z" + "createdDateTime": "2020-08-20T22:28:00Z", + "lastUpdatedDateTime": "2020-08-20T22:28:09Z" }, { - "modelId": "0d35e818-d64a-40ea-97ac-090610c49e4c", + "modelId": "01ef6d0c-d5c1-4343-bbcd-6add5cda3741", "status": "creating", - "createdDateTime": "2020-08-26T17:50:49Z", - "lastUpdatedDateTime": "2020-08-26T17:50:49Z" + "createdDateTime": "2020-08-17T21:42:37Z", + "lastUpdatedDateTime": "2020-08-17T21:42:37Z" }, { - "modelId": "121c25e5-4890-403d-b427-8abd49dd6a76", + "modelId": "022a3ddc-a723-4df1-bbee-df16b2092efa", "status": "ready", - "createdDateTime": "2020-08-26T17:34:03Z", - "lastUpdatedDateTime": "2020-08-26T17:34:13Z" - }, - { - "modelId": "132f040d-4fa8-4e4f-aab9-c3116eb2d2ec", - "status": "invalid", - "createdDateTime": "2020-09-09T22:20:49Z", - "lastUpdatedDateTime": "2020-09-09T22:20:49Z" + "createdDateTime": "2020-08-14T18:52:29Z", + "lastUpdatedDateTime": "2020-08-14T18:52:37Z" }, { - "modelId": "156a6740-4d04-46ae-94bc-893c8b5d0150", + "modelId": "02f68a79-b056-4f85-9e93-898f8261d55e", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:26:10Z", - "lastUpdatedDateTime": "2020-08-06T23:26:14Z" - }, - { - "modelId": "16ca7224-7d40-4b49-aa42-ac360bfc5d4f", - "status": "creating", - "createdDateTime": "2020-08-26T17:34:22Z", - "lastUpdatedDateTime": "2020-08-26T17:34:22Z" + "createdDateTime": "2020-08-20T18:44:14Z", + "lastUpdatedDateTime": "2020-08-20T18:44:16Z" }, { - "modelId": "16da6907-80c8-4d15-bce6-3eb20128ded2", + "modelId": "031bb91f-b029-4d9e-a165-f9c76dbec981", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, "status": "ready", - "createdDateTime": "2020-08-07T02:43:17Z", - "lastUpdatedDateTime": "2020-08-07T02:43:25Z" + "createdDateTime": "2020-10-30T13:20:47Z", + "lastUpdatedDateTime": "2020-10-30T13:20:48Z" }, { - "modelId": "1945d79d-a224-48d7-b902-f9eb37b2344b", - "status": "creating", - "createdDateTime": "2020-09-09T22:20:44Z", - "lastUpdatedDateTime": "2020-09-09T22:20:44Z" + "modelId": "032312e5-3e29-4a17-8297-96ce181e9ff7", + "status": "ready", + "createdDateTime": "2020-08-20T23:26:25Z", + "lastUpdatedDateTime": "2020-08-20T23:26:33Z" }, { - "modelId": "1c93bdda-7a62-45bc-87dc-03f3f3c55ff6", + "modelId": "0613c81a-b6e2-41f4-94ba-b7d033e07848", "status": "creating", - "createdDateTime": "2020-08-11T23:25:09Z", - "lastUpdatedDateTime": "2020-08-11T23:25:09Z" + "createdDateTime": "2020-08-14T19:44:45Z", + "lastUpdatedDateTime": "2020-08-14T19:44:45Z" }, { - "modelId": "1ca3b63c-814c-40b8-abf4-b20219bd8899", + "modelId": "08500349-8e12-4ecc-b22f-6378fd21a608", "status": "invalid", - "createdDateTime": "2020-08-06T23:22:05Z", - "lastUpdatedDateTime": "2020-08-06T23:22:06Z" - }, - { - "modelId": "1f75f019-19a7-4b14-b035-6d65745646dc", - "status": "creating", - "createdDateTime": "2020-08-26T17:50:52Z", - "lastUpdatedDateTime": "2020-08-26T17:50:52Z" + "createdDateTime": "2020-08-14T19:45:11Z", + "lastUpdatedDateTime": "2020-08-14T19:45:11Z" }, { - "modelId": "2029918d-c322-4d76-9d8d-cd96e9b2e9c4", + "modelId": "09c0ba1d-f88d-4670-ac36-9dc8dc979a1b", "status": "invalid", - "createdDateTime": "2020-08-07T02:32:59Z", - "lastUpdatedDateTime": "2020-08-07T02:33:00Z" + "createdDateTime": "2020-08-20T23:26:11Z", + "lastUpdatedDateTime": "2020-08-20T23:26:11Z" }, { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", - "status": "ready", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:19Z" + "modelId": "0b325cdc-5a78-4d79-85f2-f53abaf4f151", + "status": "creating", + "createdDateTime": "2020-08-20T22:45:33Z", + "lastUpdatedDateTime": "2020-08-20T22:45:33Z" }, { - "modelId": "237d9501-9ea9-4d69-acef-36eff1740e5c", + "modelId": "0b32e649-44b9-4842-803d-4ec855514aa7", "status": "ready", - "createdDateTime": "2020-08-26T17:51:23Z", - "lastUpdatedDateTime": "2020-08-26T17:51:32Z" + "createdDateTime": "2020-08-20T21:53:16Z", + "lastUpdatedDateTime": "2020-08-20T21:53:25Z" }, { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "0cad4cc0-ea89-497c-86f0-9b57d2f02517", "status": "ready", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:40Z" + "createdDateTime": "2020-08-20T18:43:46Z", + "lastUpdatedDateTime": "2020-08-20T18:44:00Z" }, { - "modelId": "2610c2a9-c713-4346-970e-1df296686c9d", + "modelId": "0cfe37f7-87fa-4475-a105-1777ea41c6cd", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:53:29Z", - "lastUpdatedDateTime": "2020-08-26T17:53:41Z" + "createdDateTime": "2020-08-20T21:49:12Z", + "lastUpdatedDateTime": "2020-08-20T21:49:19Z" }, { - "modelId": "26581cd0-1275-4e90-b0d5-7a927cbd84a2", + "modelId": "0d93d3a5-9024-479c-827b-859d0bd7c006", "status": "creating", - "createdDateTime": "2020-09-09T22:20:41Z", - "lastUpdatedDateTime": "2020-09-09T22:20:41Z" + "createdDateTime": "2020-08-17T17:15:56Z", + "lastUpdatedDateTime": "2020-08-17T17:15:56Z" }, { - "modelId": "27a877ec-0f51-4d1a-b159-36f68a7e3828", + "modelId": "0da54f9c-ef82-4d08-9011-ffe4d3c02447", "status": "creating", - "createdDateTime": "2020-09-09T22:23:43Z", - "lastUpdatedDateTime": "2020-09-09T22:23:43Z" + "createdDateTime": "2020-08-14T19:46:50Z", + "lastUpdatedDateTime": "2020-08-14T19:46:50Z" }, { - "modelId": "29b1506d-77ee-4aa1-8b82-6430edc36784", + "modelId": "0ea70033-e01f-4365-b890-839c2a628ea7", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-07T02:33:00Z", - "lastUpdatedDateTime": "2020-08-07T02:33:04Z" + "createdDateTime": "2020-08-20T22:43:43Z", + "lastUpdatedDateTime": "2020-08-20T22:43:44Z" }, { - "modelId": "29c77b2a-64f4-4f7e-8543-eb5a1fbcd472", + "modelId": "0ef04b5c-64f9-4e63-986c-ffdb85804382", "status": "invalid", - "createdDateTime": "2020-08-26T17:53:06Z", - "lastUpdatedDateTime": "2020-08-26T17:53:07Z" + "createdDateTime": "2020-10-30T13:23:53Z", + "lastUpdatedDateTime": "2020-10-30T13:23:54Z" + }, + { + "modelId": "0fd3cd6d-4782-4f5e-bb8f-319394c848dd", + "status": "ready", + "createdDateTime": "2020-08-20T18:43:21Z", + "lastUpdatedDateTime": "2020-08-20T18:43:24Z" }, { - "modelId": "2aa3789f-9d11-450f-861d-f39a4e8a6485", + "modelId": "102e5b73-5b01-431e-bfce-ca83ebc47c05", "status": "ready", - "createdDateTime": "2020-09-09T22:23:53Z", - "lastUpdatedDateTime": "2020-09-09T22:24:03Z" + "createdDateTime": "2020-08-20T22:49:46Z", + "lastUpdatedDateTime": "2020-08-20T22:49:55Z" }, { - "modelId": "311c23a0-755a-41b5-9d57-0ad0428e15ba", + "modelId": "1034ef53-16b6-492b-a511-2a89e5326349", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-09-09T22:24:54Z", - "lastUpdatedDateTime": "2020-09-09T22:25:05Z" + "createdDateTime": "2020-10-30T13:13:32Z", + "lastUpdatedDateTime": "2020-10-30T13:13:34Z" }, { - "modelId": "35afdcd3-5b1e-4a30-bfc0-50bbbc909623", + "modelId": "1127179b-ee78-46d0-a51a-ca8a088ec177", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-07T02:38:59Z", - "lastUpdatedDateTime": "2020-08-07T02:39:02Z" + "createdDateTime": "2020-08-20T18:42:19Z", + "lastUpdatedDateTime": "2020-08-20T18:42:21Z" }, { - "modelId": "35db4c6a-7d0b-4f5e-a9b4-2ad3bfd6b98d", + "modelId": "11eb2552-c707-43f3-a673-897433da9f66", "status": "invalid", - "createdDateTime": "2020-08-06T23:21:58Z", - "lastUpdatedDateTime": "2020-08-06T23:21:59Z" + "createdDateTime": "2020-08-20T21:25:24Z", + "lastUpdatedDateTime": "2020-08-20T21:25:24Z" }, { - "modelId": "3b22a35d-b881-4d75-85cb-852c6ec9a825", + "modelId": "1239ac73-a1ba-43a8-b725-6118c6c4cb7d", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:34:41Z", - "lastUpdatedDateTime": "2020-08-26T17:34:42Z" + "createdDateTime": "2020-08-20T21:08:03Z", + "lastUpdatedDateTime": "2020-08-20T21:08:10Z" + }, + { + "modelId": "12b12b23-10d3-4efa-927b-8b79c153099a", + "status": "creating", + "createdDateTime": "2020-08-14T19:10:34Z", + "lastUpdatedDateTime": "2020-08-14T19:10:34Z" + }, + { + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc", + "status": "creating", + "createdDateTime": "2020-10-30T13:22:45Z", + "lastUpdatedDateTime": "2020-10-30T13:22:45Z" }, { - "modelId": "3d3e2947-66a2-477b-8ec5-d732ab144946", + "modelId": "17c078da-8f4e-4376-923a-7672a8a621ab", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-19T20:22:50Z", - "lastUpdatedDateTime": "2020-08-19T20:22:52Z" + "createdDateTime": "2020-08-14T19:47:37Z", + "lastUpdatedDateTime": "2020-08-14T19:47:38Z" }, { - "modelId": "3d5aa64d-b058-4ae8-8793-2b80b085f0bc", - "status": "invalid", - "createdDateTime": "2020-08-26T17:51:05Z", - "lastUpdatedDateTime": "2020-08-26T17:51:06Z" + "modelId": "17e8374c-6cd4-40d7-8d33-8fa52286a883", + "status": "ready", + "createdDateTime": "2020-08-20T22:06:19Z", + "lastUpdatedDateTime": "2020-08-20T22:06:29Z" + }, + { + "modelId": "18cb6b55-f009-4df2-8d56-ab423d29d5c4", + "status": "ready", + "createdDateTime": "2020-08-20T22:43:20Z", + "lastUpdatedDateTime": "2020-08-20T22:43:23Z" }, { - "modelId": "3f87db49-3554-4a2c-a9fa-7bb97c1ff995", + "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", "status": "ready", - "createdDateTime": "2020-08-07T02:39:06Z", - "lastUpdatedDateTime": "2020-08-07T02:39:17Z" + "createdDateTime": "2020-08-20T21:25:32Z", + "lastUpdatedDateTime": "2020-08-20T21:25:40Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzNmOGU5N2ZmLTBmNzEtNDJhMi1iZWUxLTNhOWE3NmEzYjVkNi8zZjhlOTdmZi0wZjcxLTQyYTItYmVlMS0zYTlhNzZhM2I1ZDYuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzNmOGU5N2ZmLTBmNzEtNDJhMi1iZWUxLTNhOWE3NmEzYjVkNi8zZjhlOTdmZi0wZjcxLTQyYTItYmVlMS0zYTlhNzZhM2I1ZDYuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7489480dc0e04785647f70fd2de09a77", + "x-ms-client-request-id": "113cad7f7ab2cedc4f5ae381cd0d04c4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb6757c6-32c1-4d3d-bc85-775fb78a2d84", + "apim-request-id": "c058011a-ba50-4f7a-b09f-06fdf67b6b65", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:07 GMT", + "Date": "Fri, 30 Oct 2020 13:33:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "319" + "x-envoy-upstream-service-time": "1374" }, "ResponseBody": { "modelList": [ { - "modelId": "3f8e97ff-0f71-42a2-bee1-3a9a76a3b5d6", + "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", "status": "ready", - "createdDateTime": "2020-08-26T17:36:40Z", - "lastUpdatedDateTime": "2020-08-26T17:36:49Z" + "createdDateTime": "2020-08-20T21:25:32Z", + "lastUpdatedDateTime": "2020-08-20T21:25:40Z" + }, + { + "modelId": "1bf14c97-93e2-44ee-9ac6-a11478fc33da", + "status": "creating", + "createdDateTime": "2020-08-20T23:28:45Z", + "lastUpdatedDateTime": "2020-08-20T23:28:45Z" + }, + { + "modelId": "1cba0c75-0acd-4ff0-9a06-02fd708ebd0b", + "status": "creating", + "createdDateTime": "2020-08-14T19:46:51Z", + "lastUpdatedDateTime": "2020-08-14T19:46:51Z" }, { - "modelId": "3fea230b-4ac7-4835-b7f3-f874c5fb5b0f", + "modelId": "1cc4fde0-89ac-4b67-b537-1fcf6275fe8e", "status": "ready", - "createdDateTime": "2020-08-06T23:15:17Z", - "lastUpdatedDateTime": "2020-08-06T23:15:25Z" + "createdDateTime": "2020-08-20T23:29:22Z", + "lastUpdatedDateTime": "2020-08-20T23:29:30Z" }, { - "modelId": "4644f514-2bf6-49d7-b77d-2e8489e5a15e", + "modelId": "1f2bca7f-9bf8-4138-8a4c-53c03c3c8f55", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:50:27Z", - "lastUpdatedDateTime": "2020-08-26T17:50:30Z" + "createdDateTime": "2020-08-20T21:46:19Z", + "lastUpdatedDateTime": "2020-08-20T21:46:26Z" + }, + { + "modelId": "1fd33a7f-9726-4d73-a737-5e4a3016d7ad", + "status": "invalid", + "createdDateTime": "2020-08-14T19:47:13Z", + "lastUpdatedDateTime": "2020-08-14T19:47:13Z" }, { - "modelId": "4658c32f-ffb8-43cf-895d-c4e64ee60105", + "modelId": "20cbcc4d-191f-4c74-aac5-ecc2e3d959e6", "status": "ready", - "createdDateTime": "2020-08-26T17:37:27Z", - "lastUpdatedDateTime": "2020-08-26T17:37:36Z" + "createdDateTime": "2020-08-20T23:25:30Z", + "lastUpdatedDateTime": "2020-08-20T23:25:38Z" }, { - "modelId": "49702f1d-c4d1-4adb-9201-0e3160e2c8c5", - "status": "creating", - "createdDateTime": "2020-08-06T23:21:04Z", - "lastUpdatedDateTime": "2020-08-06T23:21:04Z" + "modelId": "24307288-59a3-4cf8-b5c3-cc981928dc5d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:23:00Z", + "lastUpdatedDateTime": "2020-08-20T21:23:08Z" }, { - "modelId": "4ae452c7-4160-4aa5-8820-3ac11b452561", + "modelId": "25365575-b6ce-4351-add0-b3c5b6f68ad0", "status": "creating", - "createdDateTime": "2020-08-06T23:21:21Z", - "lastUpdatedDateTime": "2020-08-06T23:21:21Z" + "createdDateTime": "2020-08-20T22:45:28Z", + "lastUpdatedDateTime": "2020-08-20T22:45:28Z" }, { - "modelId": "4f7977d8-d301-44d0-9b24-1fb3480c745b", + "modelId": "253f0935-8a68-4425-88ca-9804d7ef40a4", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T03:33:10Z", - "lastUpdatedDateTime": "2020-09-09T03:33:12Z" - }, - { - "modelId": "52fcf54f-2507-47f4-b8c1-d86e91143f28", - "status": "ready", - "createdDateTime": "2020-08-07T02:41:59Z", - "lastUpdatedDateTime": "2020-08-07T02:42:08Z" + "createdDateTime": "2020-08-14T19:11:18Z", + "lastUpdatedDateTime": "2020-08-14T19:11:20Z" }, { - "modelId": "53df4b19-55cf-447a-98ea-3b85c3b2c098", + "modelId": "26e8eb28-909b-4a5e-b10d-c862e0dde861", "status": "ready", - "createdDateTime": "2020-08-07T02:38:49Z", - "lastUpdatedDateTime": "2020-08-07T02:38:58Z" + "createdDateTime": "2020-08-20T22:45:55Z", + "lastUpdatedDateTime": "2020-08-20T22:46:01Z" }, { - "modelId": "55897d03-168d-412f-8de7-3daa009cacb5", - "status": "ready", - "createdDateTime": "2020-08-06T23:20:33Z", - "lastUpdatedDateTime": "2020-08-06T23:20:36Z" + "modelId": "272021b8-def8-48d8-8b89-10b3664b4dd4", + "status": "creating", + "createdDateTime": "2020-08-20T18:44:54Z", + "lastUpdatedDateTime": "2020-08-20T18:44:54Z" }, { - "modelId": "5630148f-2da4-4e14-a6f1-95f6944e72f1", + "modelId": "27bc87a8-6ef8-4e41-b023-22f3484a078b", "status": "ready", - "createdDateTime": "2020-09-09T22:23:21Z", - "lastUpdatedDateTime": "2020-09-09T22:23:35Z" + "createdDateTime": "2020-08-14T19:29:45Z", + "lastUpdatedDateTime": "2020-08-14T19:29:52Z" }, { - "modelId": "56b12cb9-da45-499c-a840-a357b5d263da", - "status": "ready", - "createdDateTime": "2020-08-07T02:34:32Z", - "lastUpdatedDateTime": "2020-08-07T02:34:40Z" + "modelId": "2800da27-3d69-4333-bd95-e9b217732660", + "status": "creating", + "createdDateTime": "2020-10-30T13:22:42Z", + "lastUpdatedDateTime": "2020-10-30T13:22:42Z" }, { - "modelId": "571764d5-7433-4ce3-b421-cc62bd2e6399", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-26T17:51:34Z", - "lastUpdatedDateTime": "2020-08-26T17:51:35Z" + "modelId": "284f716b-a8a0-4333-9ad5-6be8b981ce79", + "status": "creating", + "createdDateTime": "2020-08-17T21:43:17Z", + "lastUpdatedDateTime": "2020-08-17T21:43:17Z" }, { - "modelId": "5818a965-88b3-4737-bd4a-3e04f28f9b99", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-09-08T23:38:46Z", - "lastUpdatedDateTime": "2020-09-08T23:38:53Z" + "modelId": "28cd0f90-8143-48e9-85b2-baf4b2cc4a8f", + "status": "creating", + "createdDateTime": "2020-08-20T21:22:36Z", + "lastUpdatedDateTime": "2020-08-20T21:22:36Z" }, { - "modelId": "591d1226-2f87-4f71-88eb-1d516adf80c2", + "modelId": "2a023ee3-7a0c-42ee-9946-571124631d68", "status": "ready", - "createdDateTime": "2020-08-26T17:35:39Z", - "lastUpdatedDateTime": "2020-08-26T17:35:49Z" + "createdDateTime": "2020-08-20T21:51:49Z", + "lastUpdatedDateTime": "2020-08-20T21:51:58Z" }, { - "modelId": "5caa8c69-5ae7-4948-9274-d72806c35838", + "modelId": "2a3fb884-1ef3-462c-bd28-0684e728d55a", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:24:04Z", - "lastUpdatedDateTime": "2020-09-09T22:24:07Z" - }, - { - "modelId": "5d123f4a-fdda-4e34-9605-8bcdafc786c8", - "status": "ready", - "createdDateTime": "2020-08-26T17:34:43Z", - "lastUpdatedDateTime": "2020-08-26T17:34:54Z" + "createdDateTime": "2020-08-20T18:45:27Z", + "lastUpdatedDateTime": "2020-08-20T18:45:28Z" }, { - "modelId": "5d9e3a2f-ed7f-418c-b345-82ac311de989", + "modelId": "2d0d3ec2-c813-4840-837a-65e3f14a4fd7", "status": "ready", - "createdDateTime": "2020-08-11T23:26:55Z", - "lastUpdatedDateTime": "2020-08-11T23:26:58Z" + "createdDateTime": "2020-08-20T21:25:26Z", + "lastUpdatedDateTime": "2020-08-20T21:25:30Z" }, { - "modelId": "5e68fb32-de1c-4d27-8e1a-f94c61cc84ca", + "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", "status": "ready", - "createdDateTime": "2020-08-11T23:26:45Z", - "lastUpdatedDateTime": "2020-08-11T23:26:54Z" + "createdDateTime": "2020-10-30T13:21:15Z", + "lastUpdatedDateTime": "2020-10-30T13:21:26Z" }, { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "ready", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:22Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:25Z" }, { - "modelId": "6769e2e4-5272-4ea4-b294-72e4dcdcbd8f", + "modelId": "2fb4524b-3239-45c6-a9c0-4667b16ab72e", "status": "creating", - "createdDateTime": "2020-08-07T02:32:12Z", - "lastUpdatedDateTime": "2020-08-07T02:32:12Z" + "createdDateTime": "2020-08-20T18:42:49Z", + "lastUpdatedDateTime": "2020-08-20T18:42:49Z" }, { - "modelId": "67e57c2c-d232-4245-a4a8-8c42b4e37582", - "status": "creating", - "createdDateTime": "2020-09-09T22:23:36Z", - "lastUpdatedDateTime": "2020-09-09T22:23:36Z" + "modelId": "32a70028-9497-4938-b27d-a46c07315800", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:50:08Z", + "lastUpdatedDateTime": "2020-08-20T21:50:10Z" }, { - "modelId": "692430a0-bb79-4deb-9012-32cdddbae457", + "modelId": "33921c16-6dd2-4666-aaed-3863b28e0eeb", "status": "creating", - "createdDateTime": "2020-08-26T17:32:14Z", - "lastUpdatedDateTime": "2020-08-26T17:32:14Z" + "createdDateTime": "2020-08-14T19:10:34Z", + "lastUpdatedDateTime": "2020-08-14T19:10:34Z" }, { - "modelId": "6a0b22c7-f9d2-4122-b5ef-181577d60ba9", + "modelId": "34c52af3-ce6c-465c-9fc0-797f8b6dcfdc", "status": "ready", - "createdDateTime": "2020-08-07T02:38:25Z", - "lastUpdatedDateTime": "2020-08-07T02:38:29Z" + "createdDateTime": "2020-08-14T19:08:14Z", + "lastUpdatedDateTime": "2020-08-14T19:08:22Z" }, { - "modelId": "6a48b90c-4f90-405d-b7ea-399f5e42a9b1", - "attributes": { - "isComposed": false - }, + "modelId": "34d0ed4c-634b-4626-ae4a-4472f3740b79", + "status": "creating", + "createdDateTime": "2020-10-30T13:19:43Z", + "lastUpdatedDateTime": "2020-10-30T13:19:43Z" + }, + { + "modelId": "35238cbc-5c0b-4ae6-b19d-779568d5c3af", "status": "ready", - "createdDateTime": "2020-08-26T17:31:45Z", - "lastUpdatedDateTime": "2020-08-26T17:31:46Z" + "createdDateTime": "2020-08-20T21:06:49Z", + "lastUpdatedDateTime": "2020-08-20T21:06:57Z" }, { - "modelId": "6b2e9fcb-1dce-4436-96d4-1698750f1385", + "modelId": "35a3d57f-d630-437e-85cf-14f0a6ed1f29", "status": "ready", - "createdDateTime": "2020-08-07T02:40:43Z", - "lastUpdatedDateTime": "2020-08-07T02:41:00Z" + "createdDateTime": "2020-08-14T19:44:36Z", + "lastUpdatedDateTime": "2020-08-14T19:44:44Z" }, { - "modelId": "6b9496bb-2670-401d-9805-14772a73a399", + "modelId": "361ba8b7-61d0-4051-ba20-2dac77a428ef", "status": "ready", - "createdDateTime": "2020-08-07T02:31:22Z", - "lastUpdatedDateTime": "2020-08-07T02:31:29Z" + "createdDateTime": "2020-08-14T18:52:29Z", + "lastUpdatedDateTime": "2020-08-14T18:52:37Z" }, { - "modelId": "6e2281f4-8a46-4578-a89b-47a6ba1d4b4b", - "status": "invalid", - "createdDateTime": "2020-09-09T22:23:51Z", - "lastUpdatedDateTime": "2020-09-09T22:23:51Z" + "modelId": "362283cc-f24c-49d6-9bf1-a711a9621e65", + "status": "creating", + "createdDateTime": "2020-10-30T13:22:42Z", + "lastUpdatedDateTime": "2020-10-30T13:22:42Z" }, { - "modelId": "7087ab96-2bfe-4ee2-b589-8ba3277705cc", + "modelId": "37cbc664-e1aa-4fc1-b73e-d241dec98dfe", "status": "invalid", - "createdDateTime": "2020-09-09T22:20:50Z", - "lastUpdatedDateTime": "2020-09-09T22:20:51Z" + "createdDateTime": "2020-08-20T21:25:25Z", + "lastUpdatedDateTime": "2020-08-20T21:25:26Z" }, { - "modelId": "73323aac-41dc-4c87-8ed1-a0163184fcf6", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-09-09T22:21:20Z", - "lastUpdatedDateTime": "2020-09-09T22:21:22Z" + "modelId": "38d1e2ad-b058-4dfe-bb00-797b4f6ef957", + "status": "creating", + "createdDateTime": "2020-08-20T22:42:57Z", + "lastUpdatedDateTime": "2020-08-20T22:42:57Z" }, { - "modelId": "757dfe38-07b3-48c4-ab0c-86839b172f24", + "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", "status": "ready", - "createdDateTime": "2020-08-06T23:16:31Z", - "lastUpdatedDateTime": "2020-08-06T23:16:33Z" - }, - { - "modelId": "78ee6951-7b9b-45bc-9da2-b8c6964d6f5f", - "status": "invalid", - "createdDateTime": "2020-08-26T17:34:34Z", - "lastUpdatedDateTime": "2020-08-26T17:34:34Z" + "createdDateTime": "2020-08-20T22:46:04Z", + "lastUpdatedDateTime": "2020-08-20T22:46:12Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzdkYzI5MDllLTYxNWQtNDhhYS04ZTU5LWQwMDgyOTI4ODFjZC83ZGMyOTA5ZS02MTVkLTQ4YWEtOGU1OS1kMDA4MjkyODgxY2QuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzdkYzI5MDllLTYxNWQtNDhhYS04ZTU5LWQwMDgyOTI4ODFjZC83ZGMyOTA5ZS02MTVkLTQ4YWEtOGU1OS1kMDA4MjkyODgxY2QuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e6f021131bbb702de0970e6cdc9caa8a", + "x-ms-client-request-id": "38885c8337efbd49a1b54cfc34d747c2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f6d0acfb-5a15-495f-81fd-3e309f3a34a0", + "apim-request-id": "c293a0a9-f8c4-4f3b-a301-2279ec464535", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:08 GMT", + "Date": "Fri, 30 Oct 2020 13:33:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "448" + "x-envoy-upstream-service-time": "695" }, "ResponseBody": { "modelList": [ { - "modelId": "7dc2909e-615d-48aa-8e59-d008292881cd", + "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", + "status": "ready", + "createdDateTime": "2020-08-20T22:46:04Z", + "lastUpdatedDateTime": "2020-08-20T22:46:12Z" + }, + { + "modelId": "3af295a0-785e-4567-bba5-54797c4aa61d", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:33:01Z", - "lastUpdatedDateTime": "2020-08-26T17:33:03Z" - }, - { - "modelId": "7edad8db-18f2-41af-9bfc-b1801eea3fea", - "status": "creating", - "createdDateTime": "2020-08-19T20:19:47Z", - "lastUpdatedDateTime": "2020-08-19T20:19:47Z" - }, - { - "modelId": "80f764e0-6f63-4926-8895-2b3ff0624e07", - "status": "invalid", - "createdDateTime": "2020-08-11T23:26:26Z", - "lastUpdatedDateTime": "2020-08-11T23:26:27Z" - }, - { - "modelId": "85aebc18-2ff1-4539-8b64-04638f9c4042", - "status": "invalid", - "createdDateTime": "2020-08-11T23:26:23Z", - "lastUpdatedDateTime": "2020-08-11T23:26:26Z" + "createdDateTime": "2020-08-20T21:23:19Z", + "lastUpdatedDateTime": "2020-08-20T21:23:20Z" }, { - "modelId": "87408940-0c48-48b8-aff2-42af068cd40f", - "status": "creating", - "createdDateTime": "2020-08-07T02:35:13Z", - "lastUpdatedDateTime": "2020-08-07T02:35:13Z" - }, - { - "modelId": "8826958b-526d-430f-9c09-194f2cd36802", + "modelId": "3d445599-3e82-43bb-ad48-241788aec3b9", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-11T23:26:58Z", - "lastUpdatedDateTime": "2020-08-11T23:27:08Z" + "createdDateTime": "2020-08-20T22:42:25Z", + "lastUpdatedDateTime": "2020-08-20T22:42:32Z" }, { - "modelId": "8a019169-da20-4578-83f4-33b75ae85a80", + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", "status": "ready", - "createdDateTime": "2020-08-11T23:25:43Z", - "lastUpdatedDateTime": "2020-08-11T23:25:53Z" + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:50Z" }, { - "modelId": "8b8035e6-3130-423e-97dd-dc4a95d7e553", + "modelId": "3e5d1032-b968-458c-901f-7daa543210a7", "status": "ready", - "createdDateTime": "2020-08-26T17:36:30Z", - "lastUpdatedDateTime": "2020-08-26T17:36:39Z" + "createdDateTime": "2020-08-14T19:49:17Z", + "lastUpdatedDateTime": "2020-08-14T19:49:25Z" }, { - "modelId": "8e1873bf-beee-4698-8eb0-dfac5de174cf", - "status": "ready", - "createdDateTime": "2020-08-06T23:22:44Z", - "lastUpdatedDateTime": "2020-08-06T23:22:56Z" + "modelId": "3efd32fe-763f-4cca-a58b-2fa57d13dc83", + "status": "creating", + "createdDateTime": "2020-08-17T17:15:30Z", + "lastUpdatedDateTime": "2020-08-17T17:15:30Z" }, { - "modelId": "948a86a3-4ecd-453a-9a93-d0ec4d431a46", + "modelId": "40152914-610e-47f8-b6c6-8c155df7650e", "status": "creating", - "createdDateTime": "2020-08-11T23:25:53Z", - "lastUpdatedDateTime": "2020-08-11T23:25:53Z" + "createdDateTime": "2020-08-20T22:45:46Z", + "lastUpdatedDateTime": "2020-08-20T22:45:46Z" }, { - "modelId": "94d121f1-9b81-4218-b178-30fbb62ef533", + "modelId": "40383a51-dfe6-4c51-9c4c-e3d5ad3a662b", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:32:03Z", - "lastUpdatedDateTime": "2020-08-26T17:32:13Z" + "createdDateTime": "2020-10-30T13:21:35Z", + "lastUpdatedDateTime": "2020-10-30T13:21:37Z" }, { - "modelId": "94fb7913-80d7-4145-9375-b9b5073544ec", + "modelId": "4120e08d-2693-4f80-a69f-53029d556457", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:15:17Z", - "lastUpdatedDateTime": "2020-08-06T23:15:25Z" - }, - { - "modelId": "95b47659-413f-4f9c-9fc0-cea2d98c1099", - "status": "creating", - "createdDateTime": "2020-08-26T17:34:14Z", - "lastUpdatedDateTime": "2020-08-26T17:34:14Z" + "createdDateTime": "2020-08-20T23:29:31Z", + "lastUpdatedDateTime": "2020-08-20T23:29:38Z" }, { - "modelId": "979a5681-2776-4f26-ac8c-9cc6a96c8e52", + "modelId": "412a541e-6015-4ba3-bc06-bda9dcfb4563", "status": "ready", - "createdDateTime": "2020-08-26T17:54:11Z", - "lastUpdatedDateTime": "2020-08-26T17:54:22Z" - }, - { - "modelId": "981536fe-92a5-4a10-9f07-f589ebbc42ef", - "status": "creating", - "createdDateTime": "2020-08-07T02:32:17Z", - "lastUpdatedDateTime": "2020-08-07T02:32:17Z" + "createdDateTime": "2020-08-20T21:28:50Z", + "lastUpdatedDateTime": "2020-08-20T21:28:58Z" }, { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258", + "modelId": "41dcd3b4-7da4-4947-afc2-8267342bf8d3", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:19:56Z", - "lastUpdatedDateTime": "2020-09-09T22:19:58Z" + "createdDateTime": "2020-08-14T19:08:56Z", + "lastUpdatedDateTime": "2020-08-14T19:08:58Z" }, { - "modelId": "99cab2af-1ebf-4587-a557-24a99abf6784", + "modelId": "42ca775f-ce05-4794-9afa-1206f9ec4e4b", "status": "ready", - "createdDateTime": "2020-08-06T23:22:22Z", - "lastUpdatedDateTime": "2020-08-06T23:22:34Z" + "createdDateTime": "2020-08-14T19:28:36Z", + "lastUpdatedDateTime": "2020-08-14T19:28:44Z" }, { - "modelId": "9e99bc89-72c1-4839-9c47-4f4e07c9c277", - "status": "creating", - "createdDateTime": "2020-08-06T23:21:04Z", - "lastUpdatedDateTime": "2020-08-06T23:21:04Z" + "modelId": "4363499c-72ab-45b2-8931-d8b1838bef70", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:26:34Z", + "lastUpdatedDateTime": "2020-08-20T23:26:41Z" }, { - "modelId": "a11162bf-bfbc-461e-a41a-125bae4f0027", + "modelId": "438b68f8-bec6-4313-88d6-43f201f64e26", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-07T02:38:37Z", - "lastUpdatedDateTime": "2020-08-07T02:38:40Z" + "createdDateTime": "2020-08-20T21:22:10Z", + "lastUpdatedDateTime": "2020-08-20T21:22:12Z" }, { - "modelId": "a2ddc891-9980-454d-b876-20347c4fe2e1", - "status": "creating", - "createdDateTime": "2020-08-26T17:50:49Z", - "lastUpdatedDateTime": "2020-08-26T17:50:49Z" + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", + "status": "ready", + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:49Z" }, { - "modelId": "a2f07e6c-08bc-4d5e-bda1-f2895ceebeef", + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:32:40Z", - "lastUpdatedDateTime": "2020-08-26T17:32:47Z" + "createdDateTime": "2020-10-30T13:22:18Z", + "lastUpdatedDateTime": "2020-10-30T13:22:19Z" }, { - "modelId": "a3ac9510-b86f-45a6-adf1-bb6e189cd5e8", - "status": "ready", - "createdDateTime": "2020-08-06T23:22:12Z", - "lastUpdatedDateTime": "2020-08-06T23:22:15Z" + "modelId": "44cf7b0c-17d8-461b-8a14-972532fcf6d6", + "status": "creating", + "createdDateTime": "2020-08-17T22:30:19Z", + "lastUpdatedDateTime": "2020-08-17T22:30:19Z" }, { - "modelId": "a3fdcfd1-2c5c-4c67-9038-1c4429ed69c4", - "status": "invalid", - "createdDateTime": "2020-08-26T17:34:32Z", - "lastUpdatedDateTime": "2020-08-26T17:34:33Z" + "modelId": "44d3f221-a1ad-4726-a5f5-43bc37fe7222", + "status": "ready", + "createdDateTime": "2020-08-20T22:45:18Z", + "lastUpdatedDateTime": "2020-08-20T22:45:27Z" }, { - "modelId": "a50e5ae0-6af6-4087-92da-845e12c71655", - "status": "ready", - "createdDateTime": "2020-08-26T17:52:35Z", - "lastUpdatedDateTime": "2020-08-26T17:52:46Z" + "modelId": "4559697f-580d-439c-a336-1272be0526f9", + "status": "invalid", + "createdDateTime": "2020-10-30T13:20:53Z", + "lastUpdatedDateTime": "2020-10-30T13:20:54Z" }, { - "modelId": "a5583bd4-9d64-4971-a4e3-ad202a2f1711", - "status": "ready", - "createdDateTime": "2020-08-07T02:33:05Z", - "lastUpdatedDateTime": "2020-08-07T02:33:09Z" + "modelId": "45c5498b-3755-44fd-95d5-8d5b5924e3a6", + "status": "invalid", + "createdDateTime": "2020-08-20T22:43:19Z", + "lastUpdatedDateTime": "2020-08-20T22:43:19Z" }, { - "modelId": "a59ea0d6-3fa4-4879-91f9-f83319790278", + "modelId": "45f1adde-a451-4746-a675-f0ebb166151b", "status": "creating", - "createdDateTime": "2020-08-17T23:02:26Z", - "lastUpdatedDateTime": "2020-08-17T23:02:26Z" + "createdDateTime": "2020-08-20T21:47:08Z", + "lastUpdatedDateTime": "2020-08-20T21:47:08Z" }, { - "modelId": "a646e66b-c795-470b-a59d-ed208e8107c4", + "modelId": "46201f03-7ffc-4e1e-bd07-a48bb6bccad4", "status": "creating", - "createdDateTime": "2020-08-07T02:32:39Z", - "lastUpdatedDateTime": "2020-08-07T02:32:39Z" + "createdDateTime": "2020-08-14T19:08:23Z", + "lastUpdatedDateTime": "2020-08-14T19:08:23Z" }, { - "modelId": "a72d7916-ab9f-4c63-aa32-79ffed1bb391", + "modelId": "46a86632-ff1f-4e80-bd06-6c8d48af3157", "status": "ready", - "createdDateTime": "2020-08-07T02:33:27Z", - "lastUpdatedDateTime": "2020-08-07T02:34:01Z" - }, - { - "modelId": "a767b61b-330f-4e9a-ae21-2bdc75c3d7d6", - "status": "creating", - "createdDateTime": "2020-09-09T22:23:36Z", - "lastUpdatedDateTime": "2020-09-09T22:23:36Z" + "createdDateTime": "2020-08-20T18:44:45Z", + "lastUpdatedDateTime": "2020-08-20T18:44:53Z" }, { - "modelId": "a7bc5b1f-af0b-449a-bcd1-3daef200c131", - "status": "invalid", - "createdDateTime": "2020-08-06T23:21:39Z", - "lastUpdatedDateTime": "2020-08-06T23:21:53Z" + "modelId": "47a7b4cd-d993-4d83-b6ca-ee18c547acfb", + "status": "ready", + "createdDateTime": "2020-08-20T22:49:07Z", + "lastUpdatedDateTime": "2020-08-20T22:49:16Z" }, { - "modelId": "a87b6655-71cb-481b-bedd-bdca02704320", + "modelId": "488d74c6-25ae-4271-b7e5-cff85e10abc4", "status": "ready", - "createdDateTime": "2020-08-26T17:55:11Z", - "lastUpdatedDateTime": "2020-08-26T17:55:20Z" + "createdDateTime": "2020-08-20T18:26:04Z", + "lastUpdatedDateTime": "2020-08-20T18:26:12Z" }, { - "modelId": "a9643e41-d890-434b-a3ea-d5f9de22a81b", - "status": "creating", - "createdDateTime": "2020-08-26T17:52:47Z", - "lastUpdatedDateTime": "2020-08-26T17:52:47Z" + "modelId": "49b0f1a2-e699-4f0d-a873-040df8e08e6c", + "status": "ready", + "createdDateTime": "2020-08-14T19:13:59Z", + "lastUpdatedDateTime": "2020-08-14T19:14:08Z" }, { - "modelId": "aa4c7c66-c63e-453c-b6c8-6eb34bded19c", + "modelId": "4acac1b2-4f07-46b2-9d21-c172d2a66330", "status": "ready", - "createdDateTime": "2020-08-26T17:53:08Z", - "lastUpdatedDateTime": "2020-08-26T17:53:14Z" + "createdDateTime": "2020-08-14T19:28:36Z", + "lastUpdatedDateTime": "2020-08-14T19:28:44Z" }, { - "modelId": "ae63d47a-b069-4e06-9b23-fa01eb02e7a4", + "modelId": "4b815719-ec80-4bd7-a709-91ae6a44fdf7", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:53:28Z", - "lastUpdatedDateTime": "2020-08-26T17:53:29Z" + "createdDateTime": "2020-10-30T13:24:33Z", + "lastUpdatedDateTime": "2020-10-30T13:24:35Z" }, { - "modelId": "b17cb2c7-bd8d-4f5f-80d1-a20559f55dc0", + "modelId": "4bfcc25d-0b2f-4fa2-a284-bcc98cf1f8fd", "status": "ready", - "createdDateTime": "2020-08-07T02:33:07Z", - "lastUpdatedDateTime": "2020-08-07T02:33:23Z" + "createdDateTime": "2020-08-20T21:31:42Z", + "lastUpdatedDateTime": "2020-08-20T21:31:51Z" }, { - "modelId": "b29c550b-6b80-43f8-bc95-cf0655cbe4fb", - "status": "creating", - "createdDateTime": "2020-09-09T22:20:41Z", - "lastUpdatedDateTime": "2020-09-09T22:20:41Z" + "modelId": "4c92bc3c-f25c-4f02-84d9-f8ceae9b16b6", + "status": "ready", + "createdDateTime": "2020-08-14T19:11:09Z", + "lastUpdatedDateTime": "2020-08-14T19:11:17Z" + }, + { + "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", + "status": "invalid", + "createdDateTime": "2020-08-20T18:45:20Z", + "lastUpdatedDateTime": "2020-08-20T18:45:20Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2IyZTk2M2IyLTM5ZTAtNGU1Zi1hY2FhLTlkNDhlMGFkNzU3MC9iMmU5NjNiMi0zOWUwLTRlNWYtYWNhYS05ZDQ4ZTBhZDc1NzAuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2IyZTk2M2IyLTM5ZTAtNGU1Zi1hY2FhLTlkNDhlMGFkNzU3MC9iMmU5NjNiMi0zOWUwLTRlNWYtYWNhYS05ZDQ4ZTBhZDc1NzAuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ebee0ec4d24dd0e1610b8517a37ec449", + "x-ms-client-request-id": "e952e6901396f17b29825aad1316f03e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "a61efd70-69f3-49a8-9601-edba52e19eb2", + "Content-Length": "358", + "Content-Type": "application/json", + "Date": "Fri, 30 Oct 2020 13:33:15 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e952e6901396f17b29825aad1316f03e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e247c351-a996-435c-b90b-6f8b9ec33ec9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:33:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "329" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", + "status": "invalid", + "createdDateTime": "2020-08-20T18:45:20Z", + "lastUpdatedDateTime": "2020-08-20T18:45:20Z" + }, + { + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", + "status": "ready", + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:25:13Z" + }, + { + "modelId": "52db9454-9b6c-4514-a6f4-27d3d404a999", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:43:30Z", + "lastUpdatedDateTime": "2020-08-20T22:43:32Z" + }, + { + "modelId": "547f6f41-f70e-4cb5-aa8f-2129e33df2af", + "status": "ready", + "createdDateTime": "2020-07-30T00:55:04Z", + "lastUpdatedDateTime": "2020-07-30T00:55:12Z" + }, + { + "modelId": "551c272c-ff8f-493e-b234-a719bc35ee23", + "status": "creating", + "createdDateTime": "2020-10-30T13:19:42Z", + "lastUpdatedDateTime": "2020-10-30T13:19:42Z" + }, + { + "modelId": "55c30a55-134a-4f9d-8b42-37caa8198471", + "status": "ready", + "createdDateTime": "2020-08-14T19:11:21Z", + "lastUpdatedDateTime": "2020-08-14T19:11:31Z" + }, + { + "modelId": "56292da4-33e9-421f-ad9b-859234c5d111", + "status": "invalid", + "createdDateTime": "2020-08-20T23:29:05Z", + "lastUpdatedDateTime": "2020-08-20T23:29:05Z" + }, + { + "modelId": "566b7d84-318a-4acb-a928-d684e42b93b3", + "status": "invalid", + "createdDateTime": "2020-08-20T21:50:02Z", + "lastUpdatedDateTime": "2020-08-20T21:50:02Z" + }, + { + "modelId": "56ce1ece-256f-480d-8637-1005534971de", + "status": "ready", + "createdDateTime": "2020-08-20T21:27:11Z", + "lastUpdatedDateTime": "2020-08-20T21:27:19Z" + }, + { + "modelId": "5737eddb-d3c3-4e43-8658-b0f4322af5dc", + "status": "invalid", + "createdDateTime": "2020-08-20T23:29:06Z", + "lastUpdatedDateTime": "2020-08-20T23:29:07Z" + }, + { + "modelId": "578062d7-dbfb-4548-a54e-299c967f17be", + "status": "ready", + "createdDateTime": "2020-08-20T18:48:16Z", + "lastUpdatedDateTime": "2020-08-20T18:48:27Z" + }, + { + "modelId": "57c1049c-a148-461a-ad5d-fe7e953f7d09", + "status": "creating", + "createdDateTime": "2020-08-14T19:10:36Z", + "lastUpdatedDateTime": "2020-08-14T19:10:36Z" + }, + { + "modelId": "57e0eb22-6bdb-4ef9-a597-11d96876ad1d", + "status": "ready", + "createdDateTime": "2020-08-14T19:45:21Z", + "lastUpdatedDateTime": "2020-08-14T19:45:29Z" + }, + { + "modelId": "5802c9ef-6ce3-41ac-be05-b4afb5613cb2", + "status": "ready", + "createdDateTime": "2020-08-20T21:08:18Z", + "lastUpdatedDateTime": "2020-08-20T21:08:26Z" + }, + { + "modelId": "5837470d-2183-4c9a-b005-80ab6b76765b", + "status": "ready", + "createdDateTime": "2020-08-20T23:31:12Z", + "lastUpdatedDateTime": "2020-08-20T23:31:26Z" + }, + { + "modelId": "584c4432-36cf-4a0b-a2e1-5c651bfd4227", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:08:02Z", + "lastUpdatedDateTime": "2020-08-14T19:08:04Z" + }, + { + "modelId": "58871fae-0f09-4f14-bce7-769d4bd35354", + "status": "creating", + "createdDateTime": "2020-08-14T19:08:30Z", + "lastUpdatedDateTime": "2020-08-14T19:08:30Z" + }, + { + "modelId": "5bde02de-1dcb-4ea8-b497-0427a16b26fb", + "status": "creating", + "createdDateTime": "2020-08-20T23:25:39Z", + "lastUpdatedDateTime": "2020-08-20T23:25:39Z" + }, + { + "modelId": "5f0ca916-4ca0-4f2d-9447-caeac53bcf2e", + "status": "ready", + "createdDateTime": "2020-08-20T23:32:15Z", + "lastUpdatedDateTime": "2020-08-20T23:32:25Z" + }, + { + "modelId": "5faf34f8-8399-477b-ba82-48f1e2e7688f", + "status": "invalid", + "createdDateTime": "2020-08-14T19:45:12Z", + "lastUpdatedDateTime": "2020-08-14T19:45:12Z" + }, + { + "modelId": "5feddb70-fa11-450f-b34b-37a45b5c80d3", + "status": "invalid", + "createdDateTime": "2020-08-20T23:26:09Z", + "lastUpdatedDateTime": "2020-08-20T23:26:10Z" + }, + { + "modelId": "6035d354-53ef-4dcd-93de-5b9ad1c1ea77", + "status": "ready", + "createdDateTime": "2020-08-20T18:42:40Z", + "lastUpdatedDateTime": "2020-08-20T18:42:48Z" + }, + { + "modelId": "6216b1ae-970a-485b-a35e-070150082adb", + "status": "creating", + "createdDateTime": "2020-08-20T22:42:57Z", + "lastUpdatedDateTime": "2020-08-20T22:42:57Z" + }, + { + "modelId": "63262869-1ff0-49d0-a26f-1d1552cad649", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:09:49Z", + "lastUpdatedDateTime": "2020-08-20T23:09:51Z" + }, + { + "modelId": "637426f9-5d46-4e4c-8bfb-86f2b60bd94b", + "status": "creating", + "createdDateTime": "2020-08-20T21:49:44Z", + "lastUpdatedDateTime": "2020-08-20T21:49:44Z" + }, + { + "modelId": "66087b32-fce4-402d-9101-1bc4f627462d", + "status": "ready", + "createdDateTime": "2020-08-20T21:22:24Z", + "lastUpdatedDateTime": "2020-08-20T21:22:33Z" + }, + { + "modelId": "6645dde9-caf0-4beb-8758-501325f2e605", + "status": "ready", + "createdDateTime": "2020-08-20T21:53:58Z", + "lastUpdatedDateTime": "2020-08-20T21:54:06Z" + }, + { + "modelId": "68f6c9f8-795d-43bc-97bd-619dad38c66d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:28:13Z", + "lastUpdatedDateTime": "2020-08-20T23:28:19Z" + }, + { + "modelId": "6bbda4de-97ee-4d62-a7ab-2a9a13f503f6", + "status": "invalid", + "createdDateTime": "2020-08-20T21:49:56Z", + "lastUpdatedDateTime": "2020-08-20T21:49:56Z" + }, + { + "modelId": "6c252bb0-d84a-47c8-82af-0dabf36c4c6f", + "status": "invalid", + "createdDateTime": "2020-08-20T21:47:26Z", + "lastUpdatedDateTime": "2020-08-20T21:47:27Z" + }, + { + "modelId": "6c6bd1f5-4009-435f-b938-df50c1966733", + "status": "ready", + "createdDateTime": "2020-08-20T21:28:00Z", + "lastUpdatedDateTime": "2020-08-20T21:28:08Z" + }, + { + "modelId": "6fbe2ae1-fd8f-40c7-bf2e-c05e90931aac", + "status": "creating", + "createdDateTime": "2020-08-20T23:28:45Z", + "lastUpdatedDateTime": "2020-08-20T23:28:45Z" + }, + { + "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", + "status": "ready", + "createdDateTime": "2020-08-20T18:45:22Z", + "lastUpdatedDateTime": "2020-08-20T18:45:26Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7489480dc0e04785647f70fd2de09a77", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f791722b-2ce2-4978-9eca-1cfa0660d4ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:33:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "328" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", + "status": "ready", + "createdDateTime": "2020-08-20T18:45:22Z", + "lastUpdatedDateTime": "2020-08-20T18:45:26Z" + }, + { + "modelId": "714cd9ba-6084-4966-bf98-079fc90562fe", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:10:07Z", + "lastUpdatedDateTime": "2020-08-14T19:10:09Z" + }, + { + "modelId": "7156bc3a-1e6b-4125-b89f-10d971d5ba14", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:27:48Z", + "lastUpdatedDateTime": "2020-08-20T22:27:50Z" + }, + { + "modelId": "741ca2b2-d208-4a68-a59d-f6fb1e41c596", + "modelName": "My training", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:21:03Z", + "lastUpdatedDateTime": "2020-10-30T13:21:04Z" + }, + { + "modelId": "74ea7917-ea1e-4d62-8bd9-551fcac9d963", + "status": "ready", + "createdDateTime": "2020-08-14T19:50:11Z", + "lastUpdatedDateTime": "2020-08-14T19:50:19Z" + }, + { + "modelId": "765cd50a-d9bd-4bbe-9e77-8e496c234240", + "status": "ready", + "createdDateTime": "2020-08-20T18:46:18Z", + "lastUpdatedDateTime": "2020-08-20T18:46:27Z" + }, + { + "modelId": "76aed1f7-5a15-4754-925c-45d27d7fd0c5", + "status": "creating", + "createdDateTime": "2020-08-20T21:22:34Z", + "lastUpdatedDateTime": "2020-08-20T21:22:34Z" + }, + { + "modelId": "76e1dc72-2be3-4c40-9f07-6b29a0bf327a", + "status": "creating", + "createdDateTime": "2020-08-14T19:44:45Z", + "lastUpdatedDateTime": "2020-08-14T19:44:45Z" + }, + { + "modelId": "76e25188-e121-4fc3-a5f3-3cb861033259", + "status": "creating", + "createdDateTime": "2020-08-20T21:25:07Z", + "lastUpdatedDateTime": "2020-08-20T21:25:07Z" + }, + { + "modelId": "795417b4-25af-4d41-aa61-3cef0084e589", + "status": "ready", + "createdDateTime": "2020-08-20T21:50:03Z", + "lastUpdatedDateTime": "2020-08-20T21:50:07Z" + }, + { + "modelId": "79a2c6de-5040-4198-a2fa-ecbe37e71788", + "modelName": "My training", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:02Z", + "lastUpdatedDateTime": "2020-10-30T13:24:03Z" + }, + { + "modelId": "7c9a4c19-1761-40d2-8f2b-10f10510ca74", + "status": "ready", + "createdDateTime": "2020-08-14T19:10:57Z", + "lastUpdatedDateTime": "2020-08-14T19:11:00Z" + }, + { + "modelId": "7dd8a381-1484-4809-ad11-db27dc50841e", + "status": "ready", + "createdDateTime": "2020-08-20T21:49:31Z", + "lastUpdatedDateTime": "2020-08-20T21:49:39Z" + }, + { + "modelId": "7dfcb89d-abc6-43ca-bae6-cce241d06e4f", + "status": "ready", + "createdDateTime": "2020-08-20T21:30:14Z", + "lastUpdatedDateTime": "2020-08-20T21:30:22Z" + }, + { + "modelId": "7f2745e3-7f0d-46f7-919a-96b939030594", + "status": "creating", + "createdDateTime": "2020-08-20T22:42:59Z", + "lastUpdatedDateTime": "2020-08-20T22:42:59Z" + }, + { + "modelId": "80601216-855c-4286-b532-34af33c229ae", + "status": "ready", + "createdDateTime": "2020-08-14T19:13:08Z", + "lastUpdatedDateTime": "2020-08-14T19:13:16Z" + }, + { + "modelId": "84fd2414-5018-4f5a-9805-b80467ce7593", + "status": "ready", + "createdDateTime": "2020-08-20T21:47:27Z", + "lastUpdatedDateTime": "2020-08-20T21:47:31Z" + }, + { + "modelId": "8692493e-799d-48c3-b217-950e1471adba", + "status": "ready", + "createdDateTime": "2020-08-14T19:48:16Z", + "lastUpdatedDateTime": "2020-08-14T19:48:24Z" + }, + { + "modelId": "878a4cd7-39c2-46a0-a905-7cc1bd071837", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:46:09Z", + "lastUpdatedDateTime": "2020-08-14T19:46:12Z" + }, + { + "modelId": "87f0f103-08c9-4cae-91b8-f5a0a205bb35", + "status": "creating", + "createdDateTime": "2020-08-17T22:32:37Z", + "lastUpdatedDateTime": "2020-08-17T22:32:37Z" + }, + { + "modelId": "88d34ad1-0508-475c-9d75-2c15594876ac", + "status": "invalid", + "createdDateTime": "2020-08-14T19:47:12Z", + "lastUpdatedDateTime": "2020-08-14T19:47:12Z" + }, + { + "modelId": "8a2a6999-df6a-4b64-9633-87d097b2af06", + "status": "invalid", + "createdDateTime": "2020-08-20T22:45:53Z", + "lastUpdatedDateTime": "2020-08-20T22:45:53Z" + }, + { + "modelId": "91f0a68b-5890-4e2a-8856-4489113f9d54", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:11:01Z", + "lastUpdatedDateTime": "2020-08-14T19:11:08Z" + }, + { + "modelId": "91f917c8-c8ad-457e-8d62-00e3e1686aac", + "status": "invalid", + "createdDateTime": "2020-08-20T18:43:19Z", + "lastUpdatedDateTime": "2020-08-20T18:43:20Z" + }, + { + "modelId": "921d9d16-9a9d-4dab-a0c5-63deb0aed5a6", + "status": "ready", + "createdDateTime": "2020-08-20T22:42:48Z", + "lastUpdatedDateTime": "2020-08-20T22:42:56Z" + }, + { + "modelId": "9259c76f-7273-41a7-83e2-fd176eeef64e", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:46:02Z", + "lastUpdatedDateTime": "2020-08-20T22:46:04Z" + }, + { + "modelId": "92829e8f-ef96-4b83-8d54-4e2064729e84", + "status": "invalid", + "createdDateTime": "2020-08-14T19:08:49Z", + "lastUpdatedDateTime": "2020-08-14T19:08:49Z" + }, + { + "modelId": "932ef024-3b06-4445-bc05-863f0b7365db", + "status": "ready", + "createdDateTime": "2020-08-14T19:10:25Z", + "lastUpdatedDateTime": "2020-08-14T19:10:32Z" + }, + { + "modelId": "94e1ae64-db16-4b11-b3ec-db684b3eb473", + "status": "ready", + "createdDateTime": "2020-08-20T21:46:57Z", + "lastUpdatedDateTime": "2020-08-20T21:47:05Z" + }, + { + "modelId": "959a6767-936a-4388-be50-47b1471173e2", + "status": "ready", + "createdDateTime": "2020-08-20T22:43:33Z", + "lastUpdatedDateTime": "2020-08-20T22:43:42Z" + }, + { + "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:51Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e6f021131bbb702de0970e6cdc9caa8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "f8655612-cbda-460d-85b4-d0d6200940b1", + "Content-Length": "356", + "Content-Type": "application/json", + "Date": "Fri, 30 Oct 2020 13:33:55 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 second. Please contact Azure support service if you would like to further increase the default rate limit." + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e6f021131bbb702de0970e6cdc9caa8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ded6fa1e-aa9b-46a7-8813-abdee2f352cb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:33:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "302" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:51Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" + }, + { + "modelId": "9794b06a-303c-4014-ac9c-d64ccd2d897d", + "status": "creating", + "createdDateTime": "2020-08-20T21:22:33Z", + "lastUpdatedDateTime": "2020-08-20T21:22:33Z" + }, + { + "modelId": "97be7970-9a98-4b3f-980c-77bf06f29131", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:21:52Z", + "lastUpdatedDateTime": "2020-10-30T13:21:54Z" + }, + { + "modelId": "98fc2d15-8bb1-4eb8-85f8-dbde2d188615", + "status": "ready", + "createdDateTime": "2020-08-14T19:46:41Z", + "lastUpdatedDateTime": "2020-08-14T19:46:48Z" + }, + { + "modelId": "9947fcd1-42b4-4c38-930e-1b0403e6f761", + "status": "ready", + "createdDateTime": "2020-08-14T19:45:42Z", + "lastUpdatedDateTime": "2020-08-14T19:45:53Z" + }, + { + "modelId": "99c2b562-6e31-4923-a25c-8d940951ed2f", + "status": "ready", + "createdDateTime": "2020-08-14T19:47:23Z", + "lastUpdatedDateTime": "2020-08-14T19:47:32Z" + }, + { + "modelId": "9a0b42b4-09e2-4c90-8bd0-64395fb588e8", + "status": "ready", + "createdDateTime": "2020-08-20T23:28:36Z", + "lastUpdatedDateTime": "2020-08-20T23:28:44Z" + }, + { + "modelId": "9aa701a8-3822-4d5d-bc37-4891415c267f", + "status": "ready", + "createdDateTime": "2020-08-20T22:06:19Z", + "lastUpdatedDateTime": "2020-08-20T22:06:29Z" + }, + { + "modelId": "9d8aac28-0ab6-4b18-bb80-35341797a3ad", + "status": "ready", + "createdDateTime": "2020-08-20T21:53:04Z", + "lastUpdatedDateTime": "2020-08-20T21:53:15Z" + }, + { + "modelId": "9e6eb7bc-d4b9-4887-a38a-58957d712769", + "status": "ready", + "createdDateTime": "2020-08-20T21:30:14Z", + "lastUpdatedDateTime": "2020-08-20T21:30:22Z" + }, + { + "modelId": "9f7271da-c7c1-4407-bd1a-92577c187995", + "status": "invalid", + "createdDateTime": "2020-08-20T18:45:21Z", + "lastUpdatedDateTime": "2020-08-20T18:45:22Z" + }, + { + "modelId": "a00e27ee-1358-468a-a95c-c80e5bff6343", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:45:08Z", + "lastUpdatedDateTime": "2020-08-20T22:45:15Z" + }, + { + "modelId": "a0a7e72a-d8ec-4293-8dee-7fbe726fc115", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T18:45:38Z", + "lastUpdatedDateTime": "2020-08-20T18:45:39Z" + }, + { + "modelId": "a1513cf9-13dd-4eb7-bac5-7ceee4658c13", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T18:53:36Z", + "lastUpdatedDateTime": "2020-08-14T18:53:43Z" + }, + { + "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", + "status": "ready", + "createdDateTime": "2020-10-30T13:20:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:01Z" + }, + { + "modelId": "a2a41673-e1b2-4319-8eef-44910ce4d9cf", + "status": "ready", + "createdDateTime": "2020-08-20T18:43:33Z", + "lastUpdatedDateTime": "2020-08-20T18:43:41Z" + }, + { + "modelId": "a2b05934-353c-4eb9-ac8b-45d1d2e489f2", + "status": "ready", + "createdDateTime": "2020-08-20T22:46:14Z", + "lastUpdatedDateTime": "2020-08-20T22:46:24Z" + }, + { + "modelId": "a3189094-17a1-4acf-a788-f8c05c6e6a19", + "status": "invalid", + "createdDateTime": "2020-08-20T22:45:54Z", + "lastUpdatedDateTime": "2020-08-20T22:45:55Z" + }, + { + "modelId": "a336ff42-7e03-4b7f-821a-1246209f29de", + "status": "ready", + "createdDateTime": "2020-08-14T19:08:51Z", + "lastUpdatedDateTime": "2020-08-14T19:08:55Z" + }, + { + "modelId": "a38f391d-fad5-4ed5-be4c-5a3644803cf4", + "status": "ready", + "createdDateTime": "2020-08-20T23:29:39Z", + "lastUpdatedDateTime": "2020-08-20T23:29:51Z" + }, + { + "modelId": "a3cb3ffe-ba7b-4a0d-838a-eced98e48e8c", + "status": "invalid", + "createdDateTime": "2020-08-20T22:43:18Z", + "lastUpdatedDateTime": "2020-08-20T22:43:18Z" + }, + { + "modelId": "a5f5ef27-523c-44a4-a06c-a56470180145", + "status": "creating", + "createdDateTime": "2020-08-14T19:44:55Z", + "lastUpdatedDateTime": "2020-08-14T19:44:55Z" + }, + { + "modelId": "a67b821e-e8f2-419d-97f6-e28903abe6a0", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:25:31Z", + "lastUpdatedDateTime": "2020-08-20T21:25:32Z" + }, + { + "modelId": "a70a5d5b-3b72-486b-91f1-0b518e077a43", + "status": "ready", + "createdDateTime": "2020-08-20T22:48:57Z", + "lastUpdatedDateTime": "2020-08-20T22:49:06Z" + }, + { + "modelId": "a78b3a1c-9189-4901-9bc2-ccceec21bf20", + "status": "creating", + "createdDateTime": "2020-08-20T18:44:56Z", + "lastUpdatedDateTime": "2020-08-20T18:44:56Z" + }, + { + "modelId": "a7d5f0a1-b604-4fd4-a1fb-5df92c6deaef", + "status": "ready", + "createdDateTime": "2020-08-20T18:26:04Z", + "lastUpdatedDateTime": "2020-08-20T18:26:12Z" + }, + { + "modelId": "a8b5afb6-f11a-4496-ad62-a70e3ecda523", + "status": "ready", + "createdDateTime": "2020-08-14T19:49:09Z", + "lastUpdatedDateTime": "2020-08-14T19:49:17Z" + }, + { + "modelId": "a95aa07c-a27b-4323-8bc6-3a02485f2707", + "status": "ready", + "createdDateTime": "2020-08-20T21:50:21Z", + "lastUpdatedDateTime": "2020-08-20T21:50:32Z" + }, + { + "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:46:13Z", + "lastUpdatedDateTime": "2020-08-20T22:46:14Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ebee0ec4d24dd0e1610b8517a37ec449", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dcd8cfec-da6e-4811-a288-064091a0573c", + "apim-request-id": "e9a5a03b-0fb4-4381-8d13-60e2f460e414", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:08 GMT", + "Date": "Fri, 30 Oct 2020 13:33:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "353" + "x-envoy-upstream-service-time": "274" }, "ResponseBody": { "modelList": [ { - "modelId": "b2e963b2-39e0-4e5f-acaa-9d48e0ad7570", + "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:51:07Z", - "lastUpdatedDateTime": "2020-08-26T17:51:13Z" + "createdDateTime": "2020-08-20T22:46:13Z", + "lastUpdatedDateTime": "2020-08-20T22:46:14Z" }, { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", + "modelId": "a9dbcb83-f15c-4b42-aaef-c2e78adb3169", "status": "ready", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:17:12Z" + "createdDateTime": "2020-08-14T19:47:14Z", + "lastUpdatedDateTime": "2020-08-14T19:47:20Z" }, { - "modelId": "b3bf06ee-649c-4195-b79a-743efe134b3a", - "status": "creating", - "createdDateTime": "2020-08-11T23:26:07Z", - "lastUpdatedDateTime": "2020-08-11T23:26:07Z" + "modelId": "ab71a8bd-e38c-41dd-8b9f-4677355e9ab5", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:21:05Z", + "lastUpdatedDateTime": "2020-10-30T13:21:06Z" + }, + { + "modelId": "ac2a0641-62e3-43e4-ab21-2f0eb52b6e61", + "status": "ready", + "createdDateTime": "2020-08-20T21:24:53Z", + "lastUpdatedDateTime": "2020-08-20T21:25:02Z" + }, + { + "modelId": "ad2694f9-88d9-48b6-b85c-71b6000aa9df", + "status": "ready", + "createdDateTime": "2020-08-14T19:47:39Z", + "lastUpdatedDateTime": "2020-08-14T19:47:49Z" }, { - "modelId": "b4f76870-a421-49fc-b407-0eff0259b35f", + "modelId": "af6d3536-b663-4856-9824-9e8872fc83ed", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:52:11Z", - "lastUpdatedDateTime": "2020-08-26T17:52:13Z" + "createdDateTime": "2020-08-20T18:43:43Z", + "lastUpdatedDateTime": "2020-08-20T18:43:45Z" }, { - "modelId": "b505e41b-7b1f-403b-8934-b61ec312a33c", + "modelId": "b01f6909-840f-4ca9-85a3-769538176fe5", "status": "ready", - "createdDateTime": "2020-08-07T02:31:58Z", - "lastUpdatedDateTime": "2020-08-07T02:32:11Z" + "createdDateTime": "2020-08-20T22:43:50Z", + "lastUpdatedDateTime": "2020-08-20T22:44:01Z" }, { - "modelId": "bd24dcfe-a630-4b9f-bb41-6f2462d7dc49", + "modelId": "b08b7db5-97ae-4459-9603-47d5994e9f4a", "status": "ready", - "createdDateTime": "2020-08-07T02:34:59Z", - "lastUpdatedDateTime": "2020-08-07T02:35:12Z" + "createdDateTime": "2020-08-14T19:11:57Z", + "lastUpdatedDateTime": "2020-08-14T19:12:05Z" }, { - "modelId": "bf6945cc-5534-4fc7-bd7c-2371601328ff", + "modelId": "b0b6140c-fb6e-4c67-b7f1-420074909323", "status": "creating", - "createdDateTime": "2020-08-07T02:35:13Z", - "lastUpdatedDateTime": "2020-08-07T02:35:13Z" + "createdDateTime": "2020-08-20T23:28:47Z", + "lastUpdatedDateTime": "2020-08-20T23:28:47Z" + }, + { + "modelId": "b102b022-de56-4e48-8c16-41dae496d899", + "status": "invalid", + "createdDateTime": "2020-08-20T21:47:25Z", + "lastUpdatedDateTime": "2020-08-20T21:47:25Z" + }, + { + "modelId": "b370849a-a304-464b-acdb-1308a78b2fa2", + "status": "invalid", + "createdDateTime": "2020-10-30T13:20:52Z", + "lastUpdatedDateTime": "2020-10-30T13:20:52Z" + }, + { + "modelId": "b3cc3815-9fc0-40bc-ad82-0533b038db9d", + "status": "ready", + "createdDateTime": "2020-08-14T19:45:13Z", + "lastUpdatedDateTime": "2020-08-14T19:45:17Z" + }, + { + "modelId": "b404b97b-0e37-4eb5-8ad1-4ced5d0a34a5", + "status": "ready", + "createdDateTime": "2020-08-20T18:45:29Z", + "lastUpdatedDateTime": "2020-08-20T18:45:37Z" + }, + { + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", + "status": "ready", + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:22:15Z" + }, + { + "modelId": "b6cf7b42-a0ea-4d17-9a2e-080f0370f562", + "status": "invalid", + "createdDateTime": "2020-08-20T21:22:55Z", + "lastUpdatedDateTime": "2020-08-20T21:22:55Z" }, { - "modelId": "c20f99d1-31dd-4db9-baaa-97cc063209b9", + "modelId": "b768df27-adda-4f47-8223-4f9b696b3591", "status": "creating", - "createdDateTime": "2020-08-07T02:35:22Z", - "lastUpdatedDateTime": "2020-08-07T02:35:22Z" + "createdDateTime": "2020-08-20T21:47:08Z", + "lastUpdatedDateTime": "2020-08-20T21:47:08Z" }, { - "modelId": "c2d66fc3-bb2c-4001-a6f8-c38e8b14edb9", + "modelId": "b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, "status": "ready", - "createdDateTime": "2020-08-26T17:56:05Z", - "lastUpdatedDateTime": "2020-08-26T17:56:15Z" + "createdDateTime": "2020-10-30T13:23:46Z", + "lastUpdatedDateTime": "2020-10-30T13:23:47Z" }, { - "modelId": "c345d537-db8a-42e9-8ed1-a1ff3fac62b0", + "modelId": "bacfa117-235d-43f0-b919-913a0e0ae686", "status": "ready", - "createdDateTime": "2020-08-07T02:33:24Z", - "lastUpdatedDateTime": "2020-08-07T02:33:26Z" + "createdDateTime": "2020-08-20T22:47:48Z", + "lastUpdatedDateTime": "2020-08-20T22:47:56Z" }, { - "modelId": "c59b42e7-7aca-497e-9aad-c65bbeed9b57", + "modelId": "bc1133f6-33d3-4ac1-a848-0695866e1786", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:22:35Z", - "lastUpdatedDateTime": "2020-08-06T23:22:42Z" + "createdDateTime": "2020-08-20T21:25:41Z", + "lastUpdatedDateTime": "2020-08-20T21:25:42Z" }, { - "modelId": "c6013cfd-4d02-4ec8-ba73-67cd51a615b7", + "modelId": "bc6ae2e0-2eb4-40bb-b8d0-0ca37f413c58", "status": "invalid", - "createdDateTime": "2020-09-09T22:23:52Z", - "lastUpdatedDateTime": "2020-09-09T22:23:52Z" + "createdDateTime": "2020-08-20T21:22:53Z", + "lastUpdatedDateTime": "2020-08-20T21:22:54Z" + }, + { + "modelId": "bd10694b-d9fd-402e-9f89-2e5994a7691f", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T18:27:08Z", + "lastUpdatedDateTime": "2020-08-20T18:27:10Z" }, { - "modelId": "c8986d9f-8e8a-4d04-8bb0-6638b754e15d", + "modelId": "be8593fc-3fab-4300-8b14-f77966b99c04", "status": "invalid", - "createdDateTime": "2020-08-07T02:36:41Z", - "lastUpdatedDateTime": "2020-08-07T02:36:42Z" + "createdDateTime": "2020-08-14T19:10:54Z", + "lastUpdatedDateTime": "2020-08-14T19:10:54Z" }, { - "modelId": "ca22fcf9-50fd-4f30-9cc2-89ce165da9e5", + "modelId": "c1cf6bc1-0d0f-4a23-b453-9df1b937710a", "status": "ready", - "createdDateTime": "2020-08-26T17:54:59Z", - "lastUpdatedDateTime": "2020-08-26T17:55:09Z" + "createdDateTime": "2020-08-20T18:47:27Z", + "lastUpdatedDateTime": "2020-08-20T18:47:35Z" }, { - "modelId": "cb5e24c2-a87a-4d58-9eb6-d45c354188d2", - "status": "creating", - "createdDateTime": "2020-08-26T17:52:51Z", - "lastUpdatedDateTime": "2020-08-26T17:52:51Z" + "modelId": "c2401fd4-05c0-48d4-bd2f-7a30589b1306", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:09:15Z", + "lastUpdatedDateTime": "2020-08-14T19:09:27Z" }, { - "modelId": "cc311fd7-86eb-45db-9d4d-a3d8e0370b65", - "status": "invalid", - "createdDateTime": "2020-08-26T17:53:05Z", - "lastUpdatedDateTime": "2020-08-26T17:53:06Z" + "modelId": "c39ee6fa-e7a8-4ad9-990e-aa9049846fff", + "status": "ready", + "createdDateTime": "2020-08-20T23:29:08Z", + "lastUpdatedDateTime": "2020-08-20T23:29:13Z" }, { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "c5797a87-180d-4ec3-a23f-aa44848ad149", "status": "ready", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:47Z" + "createdDateTime": "2020-08-20T23:26:12Z", + "lastUpdatedDateTime": "2020-08-20T23:26:17Z" }, { - "modelId": "cdc006db-a59c-4cc8-a2dc-ab16c680ea79", + "modelId": "c690cad3-cb93-4b4b-9139-f542f08aefa2", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-11T23:26:28Z", - "lastUpdatedDateTime": "2020-08-11T23:26:31Z" + "createdDateTime": "2020-08-20T23:26:23Z", + "lastUpdatedDateTime": "2020-08-20T23:26:24Z" }, { - "modelId": "cf827cbd-7ef9-4d03-bcb2-3196ac232a27", + "modelId": "c6a30526-4a60-4aac-90db-dea83bf04799", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-07T02:42:09Z", - "lastUpdatedDateTime": "2020-08-07T02:42:23Z" + "createdDateTime": "2020-08-20T23:25:05Z", + "lastUpdatedDateTime": "2020-08-20T23:25:07Z" }, { - "modelId": "cfe75f49-a7d5-4642-98f2-63dc697109fc", - "status": "invalid", - "createdDateTime": "2020-08-26T17:32:33Z", - "lastUpdatedDateTime": "2020-08-26T17:32:34Z" + "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", + "status": "ready", + "createdDateTime": "2020-08-20T23:33:14Z", + "lastUpdatedDateTime": "2020-08-20T23:33:22Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f199e2e80926f2831b199349b1186ac8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "aa05f1d9-18d8-405a-bc6f-f577e1e7d7ab", + "Content-Length": "356", + "Content-Type": "application/json", + "Date": "Fri, 30 Oct 2020 13:33:57 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 second. Please contact Azure support service if you would like to further increase the default rate limit." + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f199e2e80926f2831b199349b1186ac8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "64a89332-f94d-485f-8057-4f6410cbd73f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:33:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "215" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", + "status": "ready", + "createdDateTime": "2020-08-20T23:33:14Z", + "lastUpdatedDateTime": "2020-08-20T23:33:22Z" }, { - "modelId": "d191bdd0-84ab-46aa-a6c3-f8def1867cf1", + "modelId": "c89e3c61-0048-4ac6-93e6-4f28e4c290cc", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:51:14Z", - "lastUpdatedDateTime": "2020-08-26T17:51:17Z" + "createdDateTime": "2020-08-14T19:29:28Z", + "lastUpdatedDateTime": "2020-08-14T19:29:35Z" }, { - "modelId": "d1bf30dc-45a1-4bfe-9e5e-6e50d6ffa19d", + "modelId": "c8b76997-38b0-444f-9646-40e930bd7b5c", + "status": "ready", + "createdDateTime": "2020-08-20T21:47:50Z", + "lastUpdatedDateTime": "2020-08-20T21:48:01Z" + }, + { + "modelId": "cdb4705a-40e1-4ff4-8ad0-fec5734f4325", + "status": "ready", + "createdDateTime": "2020-08-20T23:10:08Z", + "lastUpdatedDateTime": "2020-08-20T23:10:17Z" + }, + { + "modelId": "cde04bf1-6d25-46f7-bdb5-2d056d9d0770", + "status": "ready", + "createdDateTime": "2020-08-14T19:09:28Z", + "lastUpdatedDateTime": "2020-08-14T19:09:39Z" + }, + { + "modelId": "cdfdd9de-9047-4c6b-9a87-eb8f561f73ff", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:47:21Z", + "lastUpdatedDateTime": "2020-08-14T19:47:23Z" + }, + { + "modelId": "cee73923-0fa2-40dd-8eda-8446c153ecbb", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:21:03Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-08-14T19:45:18Z", + "lastUpdatedDateTime": "2020-08-14T19:45:20Z" + }, + { + "modelId": "cf0a0084-92b5-4c82-aaee-b899a0645f91", + "status": "ready", + "createdDateTime": "2020-08-14T18:53:51Z", + "lastUpdatedDateTime": "2020-08-14T18:53:59Z" }, { - "modelId": "d273c5ba-313e-4954-9487-697d5088f802", + "modelId": "cfe8a11b-ae8c-4105-a8a3-ab69bd8a4354", "status": "invalid", - "createdDateTime": "2020-08-07T02:32:53Z", - "lastUpdatedDateTime": "2020-08-07T02:32:53Z" + "createdDateTime": "2020-10-30T13:23:52Z", + "lastUpdatedDateTime": "2020-10-30T13:23:52Z" + }, + { + "modelId": "d1ebd4b5-6e79-4a31-9ed2-0d492b409a6c", + "status": "creating", + "createdDateTime": "2020-08-14T19:46:50Z", + "lastUpdatedDateTime": "2020-08-14T19:46:50Z" + }, + { + "modelId": "d234c2cd-e20d-407c-b023-2bb7e0065875", + "status": "ready", + "createdDateTime": "2020-08-20T21:06:49Z", + "lastUpdatedDateTime": "2020-08-20T21:06:57Z" }, { - "modelId": "d7e283fe-3aec-4bf8-94fe-61fe21940395", + "modelId": "d2bb2813-e890-4726-ad3a-5b2137840550", + "status": "ready", + "createdDateTime": "2020-08-14T19:08:59Z", + "lastUpdatedDateTime": "2020-08-14T19:09:09Z" + }, + { + "modelId": "d35b3816-19e2-4263-840b-749342c5a9ae", "status": "creating", - "createdDateTime": "2020-08-26T17:32:14Z", - "lastUpdatedDateTime": "2020-08-26T17:32:14Z" + "createdDateTime": "2020-08-20T23:25:48Z", + "lastUpdatedDateTime": "2020-08-20T23:25:48Z" }, { - "modelId": "d93c3dfe-b120-414e-9f51-ad40310c4a43", + "modelId": "d38c3724-ecc0-46ad-be24-9cfb55e88fdd", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:33:41Z", - "lastUpdatedDateTime": "2020-08-26T17:33:49Z" + "createdDateTime": "2020-08-20T23:29:19Z", + "lastUpdatedDateTime": "2020-08-20T23:29:21Z" }, { - "modelId": "db508217-f07e-493a-89c4-72a5f714a4b9", - "status": "invalid", - "createdDateTime": "2020-08-26T17:51:04Z", - "lastUpdatedDateTime": "2020-08-26T17:51:04Z" + "modelId": "d44ad36d-9b3f-4528-aeed-50111c87d0d8", + "status": "ready", + "createdDateTime": "2020-08-20T21:22:56Z", + "lastUpdatedDateTime": "2020-08-20T21:22:59Z" }, { - "modelId": "dc8ece10-6525-4660-8090-b1bcc26c4e9d", + "modelId": "d71f1973-c8bc-4723-95f6-270faeb0d710", "status": "ready", - "createdDateTime": "2020-08-06T23:42:46Z", - "lastUpdatedDateTime": "2020-08-06T23:42:54Z" + "createdDateTime": "2020-08-05T20:02:42Z", + "lastUpdatedDateTime": "2020-08-05T20:02:53Z" }, { - "modelId": "ddb1a1cd-e9d7-4044-a077-d5bfa01c98ee", - "status": "invalid", - "createdDateTime": "2020-08-26T17:32:32Z", - "lastUpdatedDateTime": "2020-08-26T17:32:32Z" + "modelId": "d736ffbe-2e74-4735-a8a7-461a4f5e23a4", + "status": "ready", + "createdDateTime": "2020-10-30T13:33:00Z", + "lastUpdatedDateTime": "2020-10-30T13:33:11Z" }, { - "modelId": "e3059236-3520-4d20-93d2-5d82c089a198", + "modelId": "d76bbb87-3665-4fcf-bd78-5af39fa70371", "status": "creating", - "createdDateTime": "2020-08-26T17:32:17Z", - "lastUpdatedDateTime": "2020-08-26T17:32:17Z" + "createdDateTime": "2020-08-20T21:25:03Z", + "lastUpdatedDateTime": "2020-08-20T21:25:03Z" + }, + { + "modelId": "d7c60908-afae-4db7-97a4-7dfee044d9fb", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:44:20Z", + "lastUpdatedDateTime": "2020-08-14T19:44:27Z" + }, + { + "modelId": "d8bc8709-3324-4d86-a702-fb13d83bd3fd", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:24:37Z", + "lastUpdatedDateTime": "2020-08-20T21:24:38Z" }, { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4", + "modelId": "d9d6453d-555a-411b-8969-29023fc1d347", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:27Z" + "createdDateTime": "2020-08-20T21:50:19Z", + "lastUpdatedDateTime": "2020-08-20T21:50:21Z" }, { - "modelId": "e54e8d47-0c59-4c6f-8e42-42075bca2625", - "status": "invalid", - "createdDateTime": "2020-08-07T02:38:17Z", - "lastUpdatedDateTime": "2020-08-07T02:38:23Z" + "modelId": "da9ff68e-3cb0-4066-8030-84fac4049adf", + "status": "ready", + "createdDateTime": "2020-08-20T23:26:42Z", + "lastUpdatedDateTime": "2020-08-20T23:26:55Z" }, { - "modelId": "e68af186-60e9-43ab-bf44-957aaa96e75f", + "modelId": "db37c79c-cb7c-4e82-b5a6-de8761e95791", "status": "creating", - "createdDateTime": "2020-08-26T17:52:47Z", - "lastUpdatedDateTime": "2020-08-26T17:52:47Z" + "createdDateTime": "2020-08-17T22:33:39Z", + "lastUpdatedDateTime": "2020-08-17T22:33:39Z" }, { - "modelId": "e76f563f-8640-4330-b98a-d2431721debd", + "modelId": "de0c3af0-ab73-4a50-88b9-0be008348ff3", "status": "ready", - "createdDateTime": "2020-08-26T17:50:38Z", - "lastUpdatedDateTime": "2020-08-26T17:50:48Z" + "createdDateTime": "2020-08-14T19:12:59Z", + "lastUpdatedDateTime": "2020-08-14T19:13:07Z" }, { - "modelId": "ea436462-f638-49a6-b220-ed94172d8701", + "modelId": "ded45364-1d15-4185-9ba1-349085488c79", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:31:28Z", + "lastUpdatedDateTime": "2020-08-20T21:31:30Z" + }, + { + "modelId": "df46a938-d337-4664-82f6-13fe40a3ccbd", + "status": "ready", + "createdDateTime": "2020-08-05T20:05:23Z", + "lastUpdatedDateTime": "2020-08-05T20:05:34Z" + }, + { + "modelId": "dfed1264-2f66-4fa1-83fd-adce189c3ae9", + "status": "creating", + "createdDateTime": "2020-08-17T22:30:35Z", + "lastUpdatedDateTime": "2020-08-17T22:30:35Z" + }, + { + "modelId": "e10d0994-db23-4546-9ea7-377e52f85c7e", + "status": "ready", + "createdDateTime": "2020-08-20T21:47:40Z", + "lastUpdatedDateTime": "2020-08-20T21:47:48Z" + }, + { + "modelId": "e1fb3fc5-8672-4d3c-ad29-fa0c489f21fd", + "status": "invalid", + "createdDateTime": "2020-08-20T18:43:14Z", + "lastUpdatedDateTime": "2020-08-20T18:43:15Z" + }, + { + "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", "status": "ready", - "createdDateTime": "2020-08-06T23:17:00Z", - "lastUpdatedDateTime": "2020-08-06T23:17:07Z" + "createdDateTime": "2020-08-20T18:47:17Z", + "lastUpdatedDateTime": "2020-08-20T18:47:25Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2ViYmJiZWU4LTk0MmMtNDM3NC1iM2E2LWFjNTk0ZjE5NWU3OC9lYmJiYmVlOC05NDJjLTQzNzQtYjNhNi1hYzU5NGYxOTVlNzguZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyNGY1YjFlLTQxNjctNGZjNy04NGZiLTI5OGYwODNhMTk1OS9lMjRmNWIxZS00MTY3LTRmYzctODRmYi0yOThmMDgzYTE5NTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2ViYmJiZWU4LTk0MmMtNDM3NC1iM2E2LWFjNTk0ZjE5NWU3OC9lYmJiYmVlOC05NDJjLTQzNzQtYjNhNi1hYzU5NGYxOTVlNzguZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyNGY1YjFlLTQxNjctNGZjNy04NGZiLTI5OGYwODNhMTk1OS9lMjRmNWIxZS00MTY3LTRmYzctODRmYi0yOThmMDgzYTE5NTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f199e2e80926f2831b199349b1186ac8", + "x-ms-client-request-id": "1e39e6d4aef1402a3f2085b09615cd62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2cd86fe0-a32a-4499-a263-28d1ee9e7e85", + "apim-request-id": "f28f14cc-aeb0-432a-bbeb-1d1dc85803fb", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:08 GMT", + "Date": "Fri, 30 Oct 2020 13:33:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "176" + "x-envoy-upstream-service-time": "243" }, "ResponseBody": { "modelList": [ { - "modelId": "ebbbbee8-942c-4374-b3a6-ac594f195e78", + "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", "status": "ready", - "createdDateTime": "2020-08-07T02:03:56Z", - "lastUpdatedDateTime": "2020-08-07T02:04:09Z" + "createdDateTime": "2020-08-20T18:47:17Z", + "lastUpdatedDateTime": "2020-08-20T18:47:25Z" + }, + { + "modelId": "e29f1d60-4987-478c-b1c7-ad4dd466a719", + "status": "ready", + "createdDateTime": "2020-08-20T21:50:10Z", + "lastUpdatedDateTime": "2020-08-20T21:50:18Z" + }, + { + "modelId": "e2d2eecf-d810-4fd9-8b94-cc370a9d3dc5", + "status": "creating", + "createdDateTime": "2020-08-20T21:49:40Z", + "lastUpdatedDateTime": "2020-08-20T21:49:40Z" + }, + { + "modelId": "e31e548b-1c1a-4345-907b-b77bec13260d", + "status": "creating", + "createdDateTime": "2020-08-17T17:11:47Z", + "lastUpdatedDateTime": "2020-08-17T17:11:47Z" }, { - "modelId": "edfb6496-b669-404c-8ff9-e0693aa71e82", + "modelId": "e4100004-e84e-4795-b220-983fafee5a10", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:24:23Z", - "lastUpdatedDateTime": "2020-09-09T22:24:25Z" + "createdDateTime": "2020-10-30T13:19:24Z", + "lastUpdatedDateTime": "2020-10-30T13:19:26Z" + }, + { + "modelId": "e4949cbb-05e0-4d1b-bab9-c4e444b25c9e", + "status": "invalid", + "createdDateTime": "2020-08-14T19:08:50Z", + "lastUpdatedDateTime": "2020-08-14T19:08:51Z" }, { - "modelId": "eff726db-d669-457a-b2a4-f003290d914c", + "modelId": "e8679f07-a7ae-43ff-af1c-417567ece17f", + "status": "creating", + "createdDateTime": "2020-08-14T19:08:23Z", + "lastUpdatedDateTime": "2020-08-14T19:08:23Z" + }, + { + "modelId": "eb78387f-b93d-47c4-8ff2-5a75fa2848c2", + "status": "creating", + "createdDateTime": "2020-08-17T17:11:08Z", + "lastUpdatedDateTime": "2020-08-17T17:11:08Z" + }, + { + "modelId": "eccc2f1b-08fc-4bdf-af54-45bbb3a94dc8", + "status": "creating", + "createdDateTime": "2020-08-20T21:47:16Z", + "lastUpdatedDateTime": "2020-08-20T21:47:16Z" + }, + { + "modelId": "f019ba8f-b377-4307-aed2-2e357d88faad", + "status": "invalid", + "createdDateTime": "2020-08-14T19:10:55Z", + "lastUpdatedDateTime": "2020-08-14T19:10:56Z" + }, + { + "modelId": "f0790982-b19e-4f0b-9f3d-0bd73c22d50b", "status": "ready", - "createdDateTime": "2020-08-11T23:26:32Z", - "lastUpdatedDateTime": "2020-08-11T23:26:45Z" + "createdDateTime": "2020-08-20T18:45:40Z", + "lastUpdatedDateTime": "2020-08-20T18:45:50Z" }, { - "modelId": "f0261c04-3454-4073-ae5f-c2f450dcd690", + "modelId": "f09bb379-e552-423b-a66e-11d4a47b4cad", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:37:58Z", - "lastUpdatedDateTime": "2020-08-06T23:38:08Z" + "createdDateTime": "2020-08-14T19:45:30Z", + "lastUpdatedDateTime": "2020-08-14T19:45:41Z" }, { - "modelId": "f0add33b-8563-4329-855b-665e87cafc5c", + "modelId": "f16a5995-6f9d-429c-a9ce-94b42e707f4e", "status": "ready", - "createdDateTime": "2020-08-26T17:33:04Z", - "lastUpdatedDateTime": "2020-08-26T17:33:17Z" + "createdDateTime": "2020-08-20T21:23:21Z", + "lastUpdatedDateTime": "2020-08-20T21:23:32Z" + }, + { + "modelId": "f2b17543-4827-4824-8f0a-297915305924", + "status": "creating", + "createdDateTime": "2020-08-20T23:25:39Z", + "lastUpdatedDateTime": "2020-08-20T23:25:39Z" }, { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859", + "modelId": "f313494f-2d7d-4c1b-baca-4f019e1bb372", "status": "ready", - "createdDateTime": "2020-09-09T22:15:54Z", - "lastUpdatedDateTime": "2020-09-09T22:16:06Z" + "createdDateTime": "2020-08-20T21:23:09Z", + "lastUpdatedDateTime": "2020-08-20T21:23:17Z" + }, + { + "modelId": "f4a51dde-7357-46f7-b160-1321e8cf6a8e", + "status": "creating", + "createdDateTime": "2020-08-20T21:25:03Z", + "lastUpdatedDateTime": "2020-08-20T21:25:03Z" }, { - "modelId": "f4579713-39a2-421d-b166-08a7a50e12f3", + "modelId": "f5b14d6e-2c12-4a8b-a26b-6f919fb3fc22", "status": "ready", - "createdDateTime": "2020-08-26T17:53:18Z", - "lastUpdatedDateTime": "2020-08-26T17:53:26Z" + "createdDateTime": "2020-08-20T18:27:28Z", + "lastUpdatedDateTime": "2020-08-20T18:27:36Z" }, { - "modelId": "f5e89999-37c5-41ef-88b9-4341e3ab14b1", + "modelId": "f630338a-704f-49e6-90df-3661cdb70919", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:34:55Z", - "lastUpdatedDateTime": "2020-08-26T17:34:56Z" + "createdDateTime": "2020-08-20T21:47:48Z", + "lastUpdatedDateTime": "2020-08-20T21:47:49Z" + }, + { + "modelId": "f86960b5-529c-434d-900e-72383c3535bd", + "status": "ready", + "createdDateTime": "2020-08-20T21:27:51Z", + "lastUpdatedDateTime": "2020-08-20T21:27:59Z" }, { - "modelId": "f7797595-6c64-490c-9048-b1bef3c8bfb0", + "modelId": "f8ec4bc9-ae6d-4ff7-ae5e-5ce9155164cf", "status": "ready", - "createdDateTime": "2020-08-26T17:32:35Z", - "lastUpdatedDateTime": "2020-08-26T17:32:39Z" + "createdDateTime": "2020-08-20T23:32:06Z", + "lastUpdatedDateTime": "2020-08-20T23:32:14Z" }, { - "modelId": "f9479181-78be-4c36-86d0-1d2248f05941", + "modelId": "f9ad28eb-5fdc-4844-8a72-04a115dd2029", + "status": "creating", + "createdDateTime": "2020-08-20T18:42:49Z", + "lastUpdatedDateTime": "2020-08-20T18:42:49Z" + }, + { + "modelId": "f9eac550-7eab-49e7-ac68-71da7921e50e", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:53:15Z", - "lastUpdatedDateTime": "2020-08-26T17:53:17Z" + "createdDateTime": "2020-10-30T13:24:04Z", + "lastUpdatedDateTime": "2020-10-30T13:24:06Z" }, { - "modelId": "f94ccf91-64ab-4c90-baf6-c37ca2201301", + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100", "status": "creating", - "createdDateTime": "2020-08-11T23:25:53Z", - "lastUpdatedDateTime": "2020-08-11T23:25:53Z" + "createdDateTime": "2020-10-30T13:19:47Z", + "lastUpdatedDateTime": "2020-10-30T13:19:47Z" }, { - "modelId": "fa1f65c2-0b27-4061-8928-61b6d0659d18", + "modelId": "fae7acb8-2ffc-40d1-9e07-a2f2af6f54f5", "status": "ready", - "createdDateTime": "2020-08-26T17:51:36Z", - "lastUpdatedDateTime": "2020-08-26T17:51:48Z" + "createdDateTime": "2020-08-20T21:25:43Z", + "lastUpdatedDateTime": "2020-08-20T21:25:54Z" }, { - "modelId": "fd4189a4-0770-41b7-a564-3458a22681ae", - "status": "ready", - "createdDateTime": "2020-08-26T17:34:57Z", - "lastUpdatedDateTime": "2020-08-26T17:35:10Z" + "modelId": "fbc59a11-f373-4f3d-b24c-3e32aa033d7e", + "status": "creating", + "createdDateTime": "2020-08-20T18:42:56Z", + "lastUpdatedDateTime": "2020-08-20T18:42:56Z" }, { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "fc0d549e-3a1f-4eda-bb96-fb6bf60c0f53", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:22:04Z" + "createdDateTime": "2020-08-20T21:47:32Z", + "lastUpdatedDateTime": "2020-08-20T21:47:39Z" + }, + { + "modelId": "fca987e8-8ed2-4c00-8aa4-eeff583bb155", + "status": "creating", + "createdDateTime": "2020-08-20T21:49:40Z", + "lastUpdatedDateTime": "2020-08-20T21:49:40Z" } ], "nextLink": "" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?op=summary", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1e810547a02b1d40b8fd3648721e10eb-3fbdc4ad9f341b4b-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1e39e6d4aef1402a3f2085b09615cd62", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 429, - "ResponseHeaders": { - "apim-request-id": "b045bcb5-89e0-4012-a5f2-972d1a45d96a", - "Content-Length": "334", - "Content-Type": "application/json", - "Date": "Wed, 09 Sep 2020 22:25:08 GMT", - "Retry-After": "1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff" - }, - "ResponseBody": { - "error": { - "code": "429", - "message": "Requests to the Form - List Custom Models Operation under Form Recognizer API (v2.1-preview.1) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?op=summary", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1e810547a02b1d40b8fd3648721e10eb-3fbdc4ad9f341b4b-00", + "traceparent": "00-ba92434bdd42a646a87966996e1980bc-ddab99945622b647-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1e39e6d4aef1402a3f2085b09615cd62", + "x-ms-client-request-id": "fa83c4d3b802ba638afbd0333e981e48", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1975ee8f-c43c-4ff1-a427-be75209fbddc", + "apim-request-id": "30d5c152-1006-4343-81cf-0fb82a405ee2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:51 GMT", + "Date": "Fri, 30 Oct 2020 13:33:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "191" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "summary": { - "count": 149, + "count": 267, "limit": 5000, - "lastUpdatedDateTime": "2020-09-09T22:25:52Z" + "lastUpdatedDateTime": "2020-10-30T13:34:00Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0135edef3a933b47b8e0068a3692403d-16664e3f74887041-00", + "traceparent": "00-1b80730bcec2da4892e8c4f11cc93651-93915eee991fe64a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "fa83c4d3b802ba638afbd0333e981e48", + "x-ms-client-request-id": "bd42bda0a5453a57b859b20684d35c05", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "8bd7388e-da8f-4239-95e8-9dfb49577a73", + "apim-request-id": "48935884-4998-4c9f-8194-194ba3d01761", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:25:52 GMT", + "Date": "Fri, 30 Oct 2020 13:34:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "110" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/311c23a0-755a-41b5-9d57-0ad0428e15ba?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d736ffbe-2e74-4735-a8a7-461a4f5e23a4?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-72b1cfb87f52184e93696b42a459c6c4-f1f589f4dd1c3a41-00", + "traceparent": "00-d1ab63453d70064c99a60480d6c7805b-3e38989e4bee824a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "bd42bda0a5453a57b859b20684d35c05", + "x-ms-client-request-id": "ec76314c70941cc6827e94f6ddf601a7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "40fe2503-f189-4fba-91a4-c59983b0ef7c", + "apim-request-id": "d7c075b0-c9db-47b4-aa8d-964698369ef5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:25:52 GMT", + "Date": "Fri, 30 Oct 2020 13:34:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "error": { "code": "1022", - "message": "Model with \u0027id=311c23a0-755a-41b5-9d57-0ad0428e15ba\u0027 not found." + "message": "Model with \u0027id=d736ffbe-2e74-4735-a8a7-461a4f5e23a4\u0027 not found." } } } @@ -1859,7 +2830,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1971777199" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True).json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True).json index 149360e876cb1..c400a7bbc0d6f 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True).json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True).json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9906f6d395c17f4d87d64b8d4f538e15-dc0406f3b429aa48-00", + "traceparent": "00-9df7905613d544499e9113ddff9a434c-a9c9d46daeafd540-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ec01155c84d3ca9dab2d2e05a1969d22", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "bbab9f55-812f-428d-8f79-fa45c6872d2c", + "apim-request-id": "de2dd1f0-92b1-4f65-87a3-cc665d6cf72f", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:22:05 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/48d09b9c-b65c-491e-8913-2c0636ad7a0d", + "Date": "Fri, 30 Oct 2020 13:30:48 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "258" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/48d09b9c-b65c-491e-8913-2c0636ad7a0d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "15634ae964069ff1a753c7c5dc91b1f1", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "550966fc-e99b-48cf-9dfb-847ef8c24bac", + "apim-request-id": "b3ca6ec9-adc8-418c-abde-f01edaa4c09e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:06 GMT", + "Date": "Fri, 30 Oct 2020 13:30:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "modelInfo": { - "modelId": "48d09b9c-b65c-491e-8913-2c0636ad7a0d", + "modelId": "eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", "status": "creating", - "createdDateTime": "2020-09-09T22:22:06Z", - "lastUpdatedDateTime": "2020-09-09T22:22:06Z" + "createdDateTime": "2020-10-30T13:30:48Z", + "lastUpdatedDateTime": "2020-10-30T13:30:48Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/48d09b9c-b65c-491e-8913-2c0636ad7a0d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8c79cb3a15b561027ee17921f15843aa", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a8cae97-27f4-4799-a844-a58133ac4517", + "apim-request-id": "66af4018-e759-441a-9435-f8c9c586e4e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:07 GMT", + "Date": "Fri, 30 Oct 2020 13:30:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": { "modelInfo": { - "modelId": "48d09b9c-b65c-491e-8913-2c0636ad7a0d", + "modelId": "eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", "status": "creating", - "createdDateTime": "2020-09-09T22:22:06Z", - "lastUpdatedDateTime": "2020-09-09T22:22:06Z" + "createdDateTime": "2020-10-30T13:30:48Z", + "lastUpdatedDateTime": "2020-10-30T13:30:48Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/48d09b9c-b65c-491e-8913-2c0636ad7a0d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f22fc3a1bc46f70323614580bdd8ee1a", "x-ms-return-client-request-id": "true" @@ -114,23 +114,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61567366-01ac-4922-b6fb-a5dd0e1c4d8e", + "apim-request-id": "ef472590-05b3-4237-93e2-bc9a30bbf5db", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:08 GMT", + "Date": "Fri, 30 Oct 2020 13:30:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "modelInfo": { - "modelId": "48d09b9c-b65c-491e-8913-2c0636ad7a0d", + "modelId": "eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:22:06Z", - "lastUpdatedDateTime": "2020-09-09T22:22:07Z" + "createdDateTime": "2020-10-30T13:30:48Z", + "lastUpdatedDateTime": "2020-10-30T13:30:50Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,15 +228,15 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/48d09b9c-b65c-491e-8913-2c0636ad7a0d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fc21dd4642330245ae4e7264ca5bddf3-81399c5f25cc0941-00", + "traceparent": "00-a078649aaa21fe4fac6cdb517142b1e0-1443d309d740c243-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d6cb3c7b111cd36c48029624eacfae4e", "x-ms-return-client-request-id": "true" @@ -244,23 +244,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "10d6c2f8-0b10-4da1-b8b7-8b8fea1c77d8", + "apim-request-id": "543a0721-6388-42b7-9ac5-7d246a2d3ccc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:08 GMT", + "Date": "Fri, 30 Oct 2020 13:30:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "48d09b9c-b65c-491e-8913-2c0636ad7a0d", + "modelId": "eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:22:06Z", - "lastUpdatedDateTime": "2020-09-09T22:22:07Z" + "createdDateTime": "2020-10-30T13:30:48Z", + "lastUpdatedDateTime": "2020-10-30T13:30:50Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -358,14 +358,14 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?op=full", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "18241d0fbf627eaac8816954d081a4a6", "x-ms-return-client-request-id": "true" @@ -373,236 +373,249 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4ddd447-8b75-43bc-a279-6222b4340e9b", + "apim-request-id": "98ed39f6-c950-41d4-ab6b-4b9b17a4e0d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:08 GMT", + "Date": "Fri, 30 Oct 2020 13:30:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "563" + "x-envoy-upstream-service-time": "294" }, "ResponseBody": { "modelList": [ { - "modelId": "00865e07-158d-471e-9426-01be75f859e0", - "status": "ready", - "createdDateTime": "2020-08-26T17:32:48Z", - "lastUpdatedDateTime": "2020-08-26T17:33:00Z" - }, - { - "modelId": "020b8b8c-c2f6-491b-b01a-ff5993467086", + "modelId": "007c06a2-25ad-48f2-9d13-b104d0d8f1e0", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-09-09T22:20:27Z", - "lastUpdatedDateTime": "2020-09-09T22:20:40Z" + "createdDateTime": "2020-08-20T18:43:30Z", + "lastUpdatedDateTime": "2020-08-20T18:43:32Z" }, { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", + "modelId": "01579645-6803-4345-8db9-659c6a1744a0", "status": "ready", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:21:02Z" + "createdDateTime": "2020-10-30T13:23:55Z", + "lastUpdatedDateTime": "2020-10-30T13:24:00Z" }, { - "modelId": "052402e5-f6dd-4b4f-a06f-882b793dc037", + "modelId": "01bc0ea9-d7e3-4515-b502-f2b57efb0aa2", "status": "creating", - "createdDateTime": "2020-08-26T17:34:14Z", - "lastUpdatedDateTime": "2020-08-26T17:34:14Z" + "createdDateTime": "2020-08-20T18:44:54Z", + "lastUpdatedDateTime": "2020-08-20T18:44:54Z" }, { - "modelId": "06a29baa-9786-4aab-8b84-a8ea64541595", + "modelId": "01bd21ac-ce1b-4e9f-b1a3-92847479633e", "status": "ready", - "createdDateTime": "2020-08-26T17:34:36Z", - "lastUpdatedDateTime": "2020-08-26T17:34:39Z" + "createdDateTime": "2020-08-20T22:28:00Z", + "lastUpdatedDateTime": "2020-08-20T22:28:09Z" }, { - "modelId": "0d35e818-d64a-40ea-97ac-090610c49e4c", + "modelId": "01ef6d0c-d5c1-4343-bbcd-6add5cda3741", "status": "creating", - "createdDateTime": "2020-08-26T17:50:49Z", - "lastUpdatedDateTime": "2020-08-26T17:50:49Z" + "createdDateTime": "2020-08-17T21:42:37Z", + "lastUpdatedDateTime": "2020-08-17T21:42:37Z" }, { - "modelId": "121c25e5-4890-403d-b427-8abd49dd6a76", + "modelId": "022a3ddc-a723-4df1-bbee-df16b2092efa", "status": "ready", - "createdDateTime": "2020-08-26T17:34:03Z", - "lastUpdatedDateTime": "2020-08-26T17:34:13Z" - }, - { - "modelId": "132f040d-4fa8-4e4f-aab9-c3116eb2d2ec", - "status": "invalid", - "createdDateTime": "2020-09-09T22:20:49Z", - "lastUpdatedDateTime": "2020-09-09T22:20:49Z" + "createdDateTime": "2020-08-14T18:52:29Z", + "lastUpdatedDateTime": "2020-08-14T18:52:37Z" }, { - "modelId": "156a6740-4d04-46ae-94bc-893c8b5d0150", + "modelId": "02f68a79-b056-4f85-9e93-898f8261d55e", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:26:10Z", - "lastUpdatedDateTime": "2020-08-06T23:26:14Z" + "createdDateTime": "2020-08-20T18:44:14Z", + "lastUpdatedDateTime": "2020-08-20T18:44:16Z" }, { - "modelId": "16ca7224-7d40-4b49-aa42-ac360bfc5d4f", - "status": "creating", - "createdDateTime": "2020-08-26T17:34:22Z", - "lastUpdatedDateTime": "2020-08-26T17:34:22Z" + "modelId": "031bb91f-b029-4d9e-a165-f9c76dbec981", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:20:47Z", + "lastUpdatedDateTime": "2020-10-30T13:20:48Z" }, { - "modelId": "16da6907-80c8-4d15-bce6-3eb20128ded2", + "modelId": "032312e5-3e29-4a17-8297-96ce181e9ff7", "status": "ready", - "createdDateTime": "2020-08-07T02:43:17Z", - "lastUpdatedDateTime": "2020-08-07T02:43:25Z" + "createdDateTime": "2020-08-20T23:26:25Z", + "lastUpdatedDateTime": "2020-08-20T23:26:33Z" }, { - "modelId": "1945d79d-a224-48d7-b902-f9eb37b2344b", + "modelId": "0613c81a-b6e2-41f4-94ba-b7d033e07848", "status": "creating", - "createdDateTime": "2020-09-09T22:20:44Z", - "lastUpdatedDateTime": "2020-09-09T22:20:44Z" + "createdDateTime": "2020-08-14T19:44:45Z", + "lastUpdatedDateTime": "2020-08-14T19:44:45Z" }, { - "modelId": "1c93bdda-7a62-45bc-87dc-03f3f3c55ff6", - "status": "creating", - "createdDateTime": "2020-08-11T23:25:09Z", - "lastUpdatedDateTime": "2020-08-11T23:25:09Z" + "modelId": "08500349-8e12-4ecc-b22f-6378fd21a608", + "status": "invalid", + "createdDateTime": "2020-08-14T19:45:11Z", + "lastUpdatedDateTime": "2020-08-14T19:45:11Z" }, { - "modelId": "1ca3b63c-814c-40b8-abf4-b20219bd8899", + "modelId": "09c0ba1d-f88d-4670-ac36-9dc8dc979a1b", "status": "invalid", - "createdDateTime": "2020-08-06T23:22:05Z", - "lastUpdatedDateTime": "2020-08-06T23:22:06Z" + "createdDateTime": "2020-08-20T23:26:11Z", + "lastUpdatedDateTime": "2020-08-20T23:26:11Z" }, { - "modelId": "1f75f019-19a7-4b14-b035-6d65745646dc", + "modelId": "0b325cdc-5a78-4d79-85f2-f53abaf4f151", "status": "creating", - "createdDateTime": "2020-08-26T17:50:52Z", - "lastUpdatedDateTime": "2020-08-26T17:50:52Z" - }, - { - "modelId": "2029918d-c322-4d76-9d8d-cd96e9b2e9c4", - "status": "invalid", - "createdDateTime": "2020-08-07T02:32:59Z", - "lastUpdatedDateTime": "2020-08-07T02:33:00Z" + "createdDateTime": "2020-08-20T22:45:33Z", + "lastUpdatedDateTime": "2020-08-20T22:45:33Z" }, { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", + "modelId": "0b32e649-44b9-4842-803d-4ec855514aa7", "status": "ready", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:19Z" + "createdDateTime": "2020-08-20T21:53:16Z", + "lastUpdatedDateTime": "2020-08-20T21:53:25Z" }, { - "modelId": "237d9501-9ea9-4d69-acef-36eff1740e5c", + "modelId": "0cad4cc0-ea89-497c-86f0-9b57d2f02517", "status": "ready", - "createdDateTime": "2020-08-26T17:51:23Z", - "lastUpdatedDateTime": "2020-08-26T17:51:32Z" + "createdDateTime": "2020-08-20T18:43:46Z", + "lastUpdatedDateTime": "2020-08-20T18:44:00Z" }, { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "0cfe37f7-87fa-4475-a105-1777ea41c6cd", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:40Z" + "createdDateTime": "2020-08-20T21:49:12Z", + "lastUpdatedDateTime": "2020-08-20T21:49:19Z" }, { - "modelId": "2610c2a9-c713-4346-970e-1df296686c9d", - "status": "ready", - "createdDateTime": "2020-08-26T17:53:29Z", - "lastUpdatedDateTime": "2020-08-26T17:53:41Z" + "modelId": "0d93d3a5-9024-479c-827b-859d0bd7c006", + "status": "creating", + "createdDateTime": "2020-08-17T17:15:56Z", + "lastUpdatedDateTime": "2020-08-17T17:15:56Z" }, { - "modelId": "26581cd0-1275-4e90-b0d5-7a927cbd84a2", + "modelId": "0da54f9c-ef82-4d08-9011-ffe4d3c02447", "status": "creating", - "createdDateTime": "2020-09-09T22:20:41Z", - "lastUpdatedDateTime": "2020-09-09T22:20:41Z" + "createdDateTime": "2020-08-14T19:46:50Z", + "lastUpdatedDateTime": "2020-08-14T19:46:50Z" }, { - "modelId": "29b1506d-77ee-4aa1-8b82-6430edc36784", + "modelId": "0ea70033-e01f-4365-b890-839c2a628ea7", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-07T02:33:00Z", - "lastUpdatedDateTime": "2020-08-07T02:33:04Z" + "createdDateTime": "2020-08-20T22:43:43Z", + "lastUpdatedDateTime": "2020-08-20T22:43:44Z" }, { - "modelId": "29c77b2a-64f4-4f7e-8543-eb5a1fbcd472", + "modelId": "0ef04b5c-64f9-4e63-986c-ffdb85804382", "status": "invalid", - "createdDateTime": "2020-08-26T17:53:06Z", - "lastUpdatedDateTime": "2020-08-26T17:53:07Z" + "createdDateTime": "2020-10-30T13:23:53Z", + "lastUpdatedDateTime": "2020-10-30T13:23:54Z" }, { - "modelId": "35afdcd3-5b1e-4a30-bfc0-50bbbc909623", + "modelId": "0fd3cd6d-4782-4f5e-bb8f-319394c848dd", "status": "ready", - "createdDateTime": "2020-08-07T02:38:59Z", - "lastUpdatedDateTime": "2020-08-07T02:39:02Z" + "createdDateTime": "2020-08-20T18:43:21Z", + "lastUpdatedDateTime": "2020-08-20T18:43:24Z" }, { - "modelId": "35db4c6a-7d0b-4f5e-a9b4-2ad3bfd6b98d", - "status": "invalid", - "createdDateTime": "2020-08-06T23:21:58Z", - "lastUpdatedDateTime": "2020-08-06T23:21:59Z" + "modelId": "102e5b73-5b01-431e-bfce-ca83ebc47c05", + "status": "ready", + "createdDateTime": "2020-08-20T22:49:46Z", + "lastUpdatedDateTime": "2020-08-20T22:49:55Z" }, { - "modelId": "3b22a35d-b881-4d75-85cb-852c6ec9a825", + "modelId": "1034ef53-16b6-492b-a511-2a89e5326349", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:34:41Z", - "lastUpdatedDateTime": "2020-08-26T17:34:42Z" + "createdDateTime": "2020-10-30T13:13:32Z", + "lastUpdatedDateTime": "2020-10-30T13:13:34Z" }, { - "modelId": "3d3e2947-66a2-477b-8ec5-d732ab144946", + "modelId": "1127179b-ee78-46d0-a51a-ca8a088ec177", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-19T20:22:50Z", - "lastUpdatedDateTime": "2020-08-19T20:22:52Z" + "createdDateTime": "2020-08-20T18:42:19Z", + "lastUpdatedDateTime": "2020-08-20T18:42:21Z" }, { - "modelId": "3d5aa64d-b058-4ae8-8793-2b80b085f0bc", + "modelId": "11eb2552-c707-43f3-a673-897433da9f66", "status": "invalid", - "createdDateTime": "2020-08-26T17:51:05Z", - "lastUpdatedDateTime": "2020-08-26T17:51:06Z" + "createdDateTime": "2020-08-20T21:25:24Z", + "lastUpdatedDateTime": "2020-08-20T21:25:24Z" }, { - "modelId": "3f87db49-3554-4a2c-a9fa-7bb97c1ff995", + "modelId": "1239ac73-a1ba-43a8-b725-6118c6c4cb7d", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-07T02:39:06Z", - "lastUpdatedDateTime": "2020-08-07T02:39:17Z" + "createdDateTime": "2020-08-20T21:08:03Z", + "lastUpdatedDateTime": "2020-08-20T21:08:10Z" }, { - "modelId": "3f8e97ff-0f71-42a2-bee1-3a9a76a3b5d6", - "status": "ready", - "createdDateTime": "2020-08-26T17:36:40Z", - "lastUpdatedDateTime": "2020-08-26T17:36:49Z" + "modelId": "12b12b23-10d3-4efa-927b-8b79c153099a", + "status": "creating", + "createdDateTime": "2020-08-14T19:10:34Z", + "lastUpdatedDateTime": "2020-08-14T19:10:34Z" }, { - "modelId": "3fea230b-4ac7-4835-b7f3-f874c5fb5b0f", - "status": "ready", - "createdDateTime": "2020-08-06T23:15:17Z", - "lastUpdatedDateTime": "2020-08-06T23:15:25Z" + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc", + "status": "creating", + "createdDateTime": "2020-10-30T13:22:45Z", + "lastUpdatedDateTime": "2020-10-30T13:22:45Z" }, { - "modelId": "4644f514-2bf6-49d7-b77d-2e8489e5a15e", + "modelId": "17c078da-8f4e-4376-923a-7672a8a621ab", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:50:27Z", - "lastUpdatedDateTime": "2020-08-26T17:50:30Z" + "createdDateTime": "2020-08-14T19:47:37Z", + "lastUpdatedDateTime": "2020-08-14T19:47:38Z" + }, + { + "modelId": "17e8374c-6cd4-40d7-8d33-8fa52286a883", + "status": "ready", + "createdDateTime": "2020-08-20T22:06:19Z", + "lastUpdatedDateTime": "2020-08-20T22:06:29Z" + }, + { + "modelId": "18cb6b55-f009-4df2-8d56-ab423d29d5c4", + "status": "ready", + "createdDateTime": "2020-08-20T22:43:20Z", + "lastUpdatedDateTime": "2020-08-20T22:43:23Z" }, { - "modelId": "4658c32f-ffb8-43cf-895d-c4e64ee60105", + "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", "status": "ready", - "createdDateTime": "2020-08-26T17:37:27Z", - "lastUpdatedDateTime": "2020-08-26T17:37:36Z" + "createdDateTime": "2020-08-20T21:25:32Z", + "lastUpdatedDateTime": "2020-08-20T21:25:40Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzQ4ZDA5YjljLWI2NWMtNDkxZS04OTEzLTJjMDYzNmFkN2EwZC80OGQwOWI5Yy1iNjVjLTQ5MWUtODkxMy0yYzA2MzZhZDdhMGQuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzQ4ZDA5YjljLWI2NWMtNDkxZS04OTEzLTJjMDYzNmFkN2EwZC80OGQwOWI5Yy1iNjVjLTQ5MWUtODkxMy0yYzA2MzZhZDdhMGQuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b4a65ff36d8d908e575ba94426de0d53", "x-ms-return-client-request-id": "true" @@ -610,254 +623,242 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "78251d93-c372-4d90-8227-9686e2229981", + "apim-request-id": "0f79deb2-4f11-465e-9e27-4a6fa64a0e46", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:14 GMT", + "Date": "Fri, 30 Oct 2020 13:30:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5629" + "x-envoy-upstream-service-time": "313" }, "ResponseBody": { "modelList": [ { - "modelId": "48d09b9c-b65c-491e-8913-2c0636ad7a0d", - "attributes": { - "isComposed": false - }, + "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", "status": "ready", - "createdDateTime": "2020-09-09T22:22:06Z", - "lastUpdatedDateTime": "2020-09-09T22:22:07Z" + "createdDateTime": "2020-08-20T21:25:32Z", + "lastUpdatedDateTime": "2020-08-20T21:25:40Z" }, { - "modelId": "49702f1d-c4d1-4adb-9201-0e3160e2c8c5", + "modelId": "1bf14c97-93e2-44ee-9ac6-a11478fc33da", "status": "creating", - "createdDateTime": "2020-08-06T23:21:04Z", - "lastUpdatedDateTime": "2020-08-06T23:21:04Z" + "createdDateTime": "2020-08-20T23:28:45Z", + "lastUpdatedDateTime": "2020-08-20T23:28:45Z" }, { - "modelId": "4ae452c7-4160-4aa5-8820-3ac11b452561", + "modelId": "1cba0c75-0acd-4ff0-9a06-02fd708ebd0b", "status": "creating", - "createdDateTime": "2020-08-06T23:21:21Z", - "lastUpdatedDateTime": "2020-08-06T23:21:21Z" - }, - { - "modelId": "4f7977d8-d301-44d0-9b24-1fb3480c745b", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-09-09T03:33:10Z", - "lastUpdatedDateTime": "2020-09-09T03:33:12Z" + "createdDateTime": "2020-08-14T19:46:51Z", + "lastUpdatedDateTime": "2020-08-14T19:46:51Z" }, { - "modelId": "52fcf54f-2507-47f4-b8c1-d86e91143f28", + "modelId": "1cc4fde0-89ac-4b67-b537-1fcf6275fe8e", "status": "ready", - "createdDateTime": "2020-08-07T02:41:59Z", - "lastUpdatedDateTime": "2020-08-07T02:42:08Z" + "createdDateTime": "2020-08-20T23:29:22Z", + "lastUpdatedDateTime": "2020-08-20T23:29:30Z" }, { - "modelId": "53df4b19-55cf-447a-98ea-3b85c3b2c098", + "modelId": "1f2bca7f-9bf8-4138-8a4c-53c03c3c8f55", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-07T02:38:49Z", - "lastUpdatedDateTime": "2020-08-07T02:38:58Z" + "createdDateTime": "2020-08-20T21:46:19Z", + "lastUpdatedDateTime": "2020-08-20T21:46:26Z" }, { - "modelId": "55897d03-168d-412f-8de7-3daa009cacb5", - "status": "ready", - "createdDateTime": "2020-08-06T23:20:33Z", - "lastUpdatedDateTime": "2020-08-06T23:20:36Z" + "modelId": "1fd33a7f-9726-4d73-a737-5e4a3016d7ad", + "status": "invalid", + "createdDateTime": "2020-08-14T19:47:13Z", + "lastUpdatedDateTime": "2020-08-14T19:47:13Z" }, { - "modelId": "56b12cb9-da45-499c-a840-a357b5d263da", + "modelId": "20cbcc4d-191f-4c74-aac5-ecc2e3d959e6", "status": "ready", - "createdDateTime": "2020-08-07T02:34:32Z", - "lastUpdatedDateTime": "2020-08-07T02:34:40Z" + "createdDateTime": "2020-08-20T23:25:30Z", + "lastUpdatedDateTime": "2020-08-20T23:25:38Z" }, { - "modelId": "571764d5-7433-4ce3-b421-cc62bd2e6399", + "modelId": "24307288-59a3-4cf8-b5c3-cc981928dc5d", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:51:34Z", - "lastUpdatedDateTime": "2020-08-26T17:51:35Z" + "createdDateTime": "2020-08-20T21:23:00Z", + "lastUpdatedDateTime": "2020-08-20T21:23:08Z" + }, + { + "modelId": "25365575-b6ce-4351-add0-b3c5b6f68ad0", + "status": "creating", + "createdDateTime": "2020-08-20T22:45:28Z", + "lastUpdatedDateTime": "2020-08-20T22:45:28Z" }, { - "modelId": "5818a965-88b3-4737-bd4a-3e04f28f9b99", + "modelId": "253f0935-8a68-4425-88ca-9804d7ef40a4", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-08T23:38:46Z", - "lastUpdatedDateTime": "2020-09-08T23:38:53Z" + "createdDateTime": "2020-08-14T19:11:18Z", + "lastUpdatedDateTime": "2020-08-14T19:11:20Z" }, { - "modelId": "591d1226-2f87-4f71-88eb-1d516adf80c2", + "modelId": "26e8eb28-909b-4a5e-b10d-c862e0dde861", "status": "ready", - "createdDateTime": "2020-08-26T17:35:39Z", - "lastUpdatedDateTime": "2020-08-26T17:35:49Z" + "createdDateTime": "2020-08-20T22:45:55Z", + "lastUpdatedDateTime": "2020-08-20T22:46:01Z" }, { - "modelId": "5d123f4a-fdda-4e34-9605-8bcdafc786c8", - "status": "ready", - "createdDateTime": "2020-08-26T17:34:43Z", - "lastUpdatedDateTime": "2020-08-26T17:34:54Z" + "modelId": "272021b8-def8-48d8-8b89-10b3664b4dd4", + "status": "creating", + "createdDateTime": "2020-08-20T18:44:54Z", + "lastUpdatedDateTime": "2020-08-20T18:44:54Z" }, { - "modelId": "5d9e3a2f-ed7f-418c-b345-82ac311de989", + "modelId": "27bc87a8-6ef8-4e41-b023-22f3484a078b", "status": "ready", - "createdDateTime": "2020-08-11T23:26:55Z", - "lastUpdatedDateTime": "2020-08-11T23:26:58Z" + "createdDateTime": "2020-08-14T19:29:45Z", + "lastUpdatedDateTime": "2020-08-14T19:29:52Z" }, { - "modelId": "5e68fb32-de1c-4d27-8e1a-f94c61cc84ca", - "status": "ready", - "createdDateTime": "2020-08-11T23:26:45Z", - "lastUpdatedDateTime": "2020-08-11T23:26:54Z" + "modelId": "2800da27-3d69-4333-bd95-e9b217732660", + "status": "creating", + "createdDateTime": "2020-10-30T13:22:42Z", + "lastUpdatedDateTime": "2020-10-30T13:22:42Z" }, { - "modelId": "6769e2e4-5272-4ea4-b294-72e4dcdcbd8f", + "modelId": "284f716b-a8a0-4333-9ad5-6be8b981ce79", "status": "creating", - "createdDateTime": "2020-08-07T02:32:12Z", - "lastUpdatedDateTime": "2020-08-07T02:32:12Z" + "createdDateTime": "2020-08-17T21:43:17Z", + "lastUpdatedDateTime": "2020-08-17T21:43:17Z" }, { - "modelId": "692430a0-bb79-4deb-9012-32cdddbae457", + "modelId": "28cd0f90-8143-48e9-85b2-baf4b2cc4a8f", "status": "creating", - "createdDateTime": "2020-08-26T17:32:14Z", - "lastUpdatedDateTime": "2020-08-26T17:32:14Z" + "createdDateTime": "2020-08-20T21:22:36Z", + "lastUpdatedDateTime": "2020-08-20T21:22:36Z" }, { - "modelId": "6a0b22c7-f9d2-4122-b5ef-181577d60ba9", + "modelId": "2a023ee3-7a0c-42ee-9946-571124631d68", "status": "ready", - "createdDateTime": "2020-08-07T02:38:25Z", - "lastUpdatedDateTime": "2020-08-07T02:38:29Z" + "createdDateTime": "2020-08-20T21:51:49Z", + "lastUpdatedDateTime": "2020-08-20T21:51:58Z" }, { - "modelId": "6a48b90c-4f90-405d-b7ea-399f5e42a9b1", + "modelId": "2a3fb884-1ef3-462c-bd28-0684e728d55a", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:31:45Z", - "lastUpdatedDateTime": "2020-08-26T17:31:46Z" - }, - { - "modelId": "6b2e9fcb-1dce-4436-96d4-1698750f1385", - "status": "ready", - "createdDateTime": "2020-08-07T02:40:43Z", - "lastUpdatedDateTime": "2020-08-07T02:41:00Z" + "createdDateTime": "2020-08-20T18:45:27Z", + "lastUpdatedDateTime": "2020-08-20T18:45:28Z" }, { - "modelId": "6b9496bb-2670-401d-9805-14772a73a399", + "modelId": "2d0d3ec2-c813-4840-837a-65e3f14a4fd7", "status": "ready", - "createdDateTime": "2020-08-07T02:31:22Z", - "lastUpdatedDateTime": "2020-08-07T02:31:29Z" + "createdDateTime": "2020-08-20T21:25:26Z", + "lastUpdatedDateTime": "2020-08-20T21:25:30Z" }, { - "modelId": "7087ab96-2bfe-4ee2-b589-8ba3277705cc", - "status": "invalid", - "createdDateTime": "2020-09-09T22:20:50Z", - "lastUpdatedDateTime": "2020-09-09T22:20:51Z" - }, - { - "modelId": "73323aac-41dc-4c87-8ed1-a0163184fcf6", - "attributes": { - "isComposed": false - }, + "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", "status": "ready", - "createdDateTime": "2020-09-09T22:21:20Z", - "lastUpdatedDateTime": "2020-09-09T22:21:22Z" + "createdDateTime": "2020-10-30T13:21:15Z", + "lastUpdatedDateTime": "2020-10-30T13:21:26Z" }, { - "modelId": "757dfe38-07b3-48c4-ab0c-86839b172f24", + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", "status": "ready", - "createdDateTime": "2020-08-06T23:16:31Z", - "lastUpdatedDateTime": "2020-08-06T23:16:33Z" + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:25Z" }, { - "modelId": "78ee6951-7b9b-45bc-9da2-b8c6964d6f5f", - "status": "invalid", - "createdDateTime": "2020-08-26T17:34:34Z", - "lastUpdatedDateTime": "2020-08-26T17:34:34Z" + "modelId": "2fb4524b-3239-45c6-a9c0-4667b16ab72e", + "status": "creating", + "createdDateTime": "2020-08-20T18:42:49Z", + "lastUpdatedDateTime": "2020-08-20T18:42:49Z" }, { - "modelId": "7dc2909e-615d-48aa-8e59-d008292881cd", + "modelId": "32a70028-9497-4938-b27d-a46c07315800", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:33:01Z", - "lastUpdatedDateTime": "2020-08-26T17:33:03Z" + "createdDateTime": "2020-08-20T21:50:08Z", + "lastUpdatedDateTime": "2020-08-20T21:50:10Z" }, { - "modelId": "7edad8db-18f2-41af-9bfc-b1801eea3fea", + "modelId": "33921c16-6dd2-4666-aaed-3863b28e0eeb", "status": "creating", - "createdDateTime": "2020-08-19T20:19:47Z", - "lastUpdatedDateTime": "2020-08-19T20:19:47Z" + "createdDateTime": "2020-08-14T19:10:34Z", + "lastUpdatedDateTime": "2020-08-14T19:10:34Z" }, { - "modelId": "80f764e0-6f63-4926-8895-2b3ff0624e07", - "status": "invalid", - "createdDateTime": "2020-08-11T23:26:26Z", - "lastUpdatedDateTime": "2020-08-11T23:26:27Z" - }, - { - "modelId": "85aebc18-2ff1-4539-8b64-04638f9c4042", - "status": "invalid", - "createdDateTime": "2020-08-11T23:26:23Z", - "lastUpdatedDateTime": "2020-08-11T23:26:26Z" + "modelId": "34c52af3-ce6c-465c-9fc0-797f8b6dcfdc", + "status": "ready", + "createdDateTime": "2020-08-14T19:08:14Z", + "lastUpdatedDateTime": "2020-08-14T19:08:22Z" }, { - "modelId": "87408940-0c48-48b8-aff2-42af068cd40f", + "modelId": "34d0ed4c-634b-4626-ae4a-4472f3740b79", "status": "creating", - "createdDateTime": "2020-08-07T02:35:13Z", - "lastUpdatedDateTime": "2020-08-07T02:35:13Z" + "createdDateTime": "2020-10-30T13:19:43Z", + "lastUpdatedDateTime": "2020-10-30T13:19:43Z" }, { - "modelId": "8826958b-526d-430f-9c09-194f2cd36802", + "modelId": "35238cbc-5c0b-4ae6-b19d-779568d5c3af", "status": "ready", - "createdDateTime": "2020-08-11T23:26:58Z", - "lastUpdatedDateTime": "2020-08-11T23:27:08Z" + "createdDateTime": "2020-08-20T21:06:49Z", + "lastUpdatedDateTime": "2020-08-20T21:06:57Z" }, { - "modelId": "8a019169-da20-4578-83f4-33b75ae85a80", + "modelId": "35a3d57f-d630-437e-85cf-14f0a6ed1f29", "status": "ready", - "createdDateTime": "2020-08-11T23:25:43Z", - "lastUpdatedDateTime": "2020-08-11T23:25:53Z" + "createdDateTime": "2020-08-14T19:44:36Z", + "lastUpdatedDateTime": "2020-08-14T19:44:44Z" }, { - "modelId": "8b8035e6-3130-423e-97dd-dc4a95d7e553", + "modelId": "361ba8b7-61d0-4051-ba20-2dac77a428ef", "status": "ready", - "createdDateTime": "2020-08-26T17:36:30Z", - "lastUpdatedDateTime": "2020-08-26T17:36:39Z" + "createdDateTime": "2020-08-14T18:52:29Z", + "lastUpdatedDateTime": "2020-08-14T18:52:37Z" }, { - "modelId": "8e1873bf-beee-4698-8eb0-dfac5de174cf", - "status": "ready", - "createdDateTime": "2020-08-06T23:22:44Z", - "lastUpdatedDateTime": "2020-08-06T23:22:56Z" + "modelId": "362283cc-f24c-49d6-9bf1-a711a9621e65", + "status": "creating", + "createdDateTime": "2020-10-30T13:22:42Z", + "lastUpdatedDateTime": "2020-10-30T13:22:42Z" + }, + { + "modelId": "37cbc664-e1aa-4fc1-b73e-d241dec98dfe", + "status": "invalid", + "createdDateTime": "2020-08-20T21:25:25Z", + "lastUpdatedDateTime": "2020-08-20T21:25:26Z" }, { - "modelId": "948a86a3-4ecd-453a-9a93-d0ec4d431a46", + "modelId": "38d1e2ad-b058-4dfe-bb00-797b4f6ef957", "status": "creating", - "createdDateTime": "2020-08-11T23:25:53Z", - "lastUpdatedDateTime": "2020-08-11T23:25:53Z" + "createdDateTime": "2020-08-20T22:42:57Z", + "lastUpdatedDateTime": "2020-08-20T22:42:57Z" + }, + { + "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", + "status": "ready", + "createdDateTime": "2020-08-20T22:46:04Z", + "lastUpdatedDateTime": "2020-08-20T22:46:12Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!212!MDAwMTEzIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzk0OGE4NmEzLTRlY2QtNDUzYS05YTkzLWQwZWM0ZDQzMWE0Ni9jb3B5QXV0aG9yaXphdGlvbi5qc29uITAwMDAyOCE5OTk5LTEyLTMxVDIzOjU5OjU5Ljk5OTk5OTlaIQ--" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!212!MDAwMTEzIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzk0OGE4NmEzLTRlY2QtNDUzYS05YTkzLWQwZWM0ZDQzMWE0Ni9jb3B5QXV0aG9yaXphdGlvbi5qc29uITAwMDAyOCE5OTk5LTEyLTMxVDIzOjU5OjU5Ljk5OTk5OTlaIQ--", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9f70f7b3d5b4bbb8924d0d9aa71703c6", "x-ms-return-client-request-id": "true" @@ -865,257 +866,242 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3cb1b24a-89c8-43e8-a071-7cf5d907b808", + "apim-request-id": "b3a3e2b4-cf55-41fe-b4fd-3438d926bc32", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:14 GMT", + "Date": "Fri, 30 Oct 2020 13:30:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "431" + "x-envoy-upstream-service-time": "335" }, "ResponseBody": { "modelList": [ { - "modelId": "948a86a3-4ecd-453a-9a93-d0ec4d431a46", - "status": "creating", - "createdDateTime": "2020-08-11T23:25:53Z", - "lastUpdatedDateTime": "2020-08-11T23:25:53Z" + "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", + "status": "ready", + "createdDateTime": "2020-08-20T22:46:04Z", + "lastUpdatedDateTime": "2020-08-20T22:46:12Z" }, { - "modelId": "94d121f1-9b81-4218-b178-30fbb62ef533", + "modelId": "3af295a0-785e-4567-bba5-54797c4aa61d", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:32:03Z", - "lastUpdatedDateTime": "2020-08-26T17:32:13Z" + "createdDateTime": "2020-08-20T21:23:19Z", + "lastUpdatedDateTime": "2020-08-20T21:23:20Z" }, { - "modelId": "94fb7913-80d7-4145-9375-b9b5073544ec", + "modelId": "3d445599-3e82-43bb-ad48-241788aec3b9", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:15:17Z", - "lastUpdatedDateTime": "2020-08-06T23:15:25Z" + "createdDateTime": "2020-08-20T22:42:25Z", + "lastUpdatedDateTime": "2020-08-20T22:42:32Z" }, { - "modelId": "95b47659-413f-4f9c-9fc0-cea2d98c1099", - "status": "creating", - "createdDateTime": "2020-08-26T17:34:14Z", - "lastUpdatedDateTime": "2020-08-26T17:34:14Z" + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", + "status": "ready", + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:50Z" }, { - "modelId": "979a5681-2776-4f26-ac8c-9cc6a96c8e52", + "modelId": "3e5d1032-b968-458c-901f-7daa543210a7", "status": "ready", - "createdDateTime": "2020-08-26T17:54:11Z", - "lastUpdatedDateTime": "2020-08-26T17:54:22Z" + "createdDateTime": "2020-08-14T19:49:17Z", + "lastUpdatedDateTime": "2020-08-14T19:49:25Z" + }, + { + "modelId": "3efd32fe-763f-4cca-a58b-2fa57d13dc83", + "status": "creating", + "createdDateTime": "2020-08-17T17:15:30Z", + "lastUpdatedDateTime": "2020-08-17T17:15:30Z" }, { - "modelId": "981536fe-92a5-4a10-9f07-f589ebbc42ef", + "modelId": "40152914-610e-47f8-b6c6-8c155df7650e", "status": "creating", - "createdDateTime": "2020-08-07T02:32:17Z", - "lastUpdatedDateTime": "2020-08-07T02:32:17Z" + "createdDateTime": "2020-08-20T22:45:46Z", + "lastUpdatedDateTime": "2020-08-20T22:45:46Z" }, { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258", + "modelId": "40383a51-dfe6-4c51-9c4c-e3d5ad3a662b", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:19:56Z", - "lastUpdatedDateTime": "2020-09-09T22:19:58Z" + "createdDateTime": "2020-10-30T13:21:35Z", + "lastUpdatedDateTime": "2020-10-30T13:21:37Z" }, { - "modelId": "99cab2af-1ebf-4587-a557-24a99abf6784", + "modelId": "4120e08d-2693-4f80-a69f-53029d556457", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:22:22Z", - "lastUpdatedDateTime": "2020-08-06T23:22:34Z" - }, - { - "modelId": "9e99bc89-72c1-4839-9c47-4f4e07c9c277", - "status": "creating", - "createdDateTime": "2020-08-06T23:21:04Z", - "lastUpdatedDateTime": "2020-08-06T23:21:04Z" + "createdDateTime": "2020-08-20T23:29:31Z", + "lastUpdatedDateTime": "2020-08-20T23:29:38Z" }, { - "modelId": "a11162bf-bfbc-461e-a41a-125bae4f0027", + "modelId": "412a541e-6015-4ba3-bc06-bda9dcfb4563", "status": "ready", - "createdDateTime": "2020-08-07T02:38:37Z", - "lastUpdatedDateTime": "2020-08-07T02:38:40Z" + "createdDateTime": "2020-08-20T21:28:50Z", + "lastUpdatedDateTime": "2020-08-20T21:28:58Z" }, { - "modelId": "a2ddc891-9980-454d-b876-20347c4fe2e1", - "status": "creating", - "createdDateTime": "2020-08-26T17:50:49Z", - "lastUpdatedDateTime": "2020-08-26T17:50:49Z" - }, - { - "modelId": "a2f07e6c-08bc-4d5e-bda1-f2895ceebeef", + "modelId": "41dcd3b4-7da4-4947-afc2-8267342bf8d3", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:32:40Z", - "lastUpdatedDateTime": "2020-08-26T17:32:47Z" + "createdDateTime": "2020-08-14T19:08:56Z", + "lastUpdatedDateTime": "2020-08-14T19:08:58Z" }, { - "modelId": "a3ac9510-b86f-45a6-adf1-bb6e189cd5e8", + "modelId": "42ca775f-ce05-4794-9afa-1206f9ec4e4b", "status": "ready", - "createdDateTime": "2020-08-06T23:22:12Z", - "lastUpdatedDateTime": "2020-08-06T23:22:15Z" + "createdDateTime": "2020-08-14T19:28:36Z", + "lastUpdatedDateTime": "2020-08-14T19:28:44Z" }, { - "modelId": "a3fdcfd1-2c5c-4c67-9038-1c4429ed69c4", - "status": "invalid", - "createdDateTime": "2020-08-26T17:34:32Z", - "lastUpdatedDateTime": "2020-08-26T17:34:33Z" + "modelId": "4363499c-72ab-45b2-8931-d8b1838bef70", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:26:34Z", + "lastUpdatedDateTime": "2020-08-20T23:26:41Z" }, { - "modelId": "a50e5ae0-6af6-4087-92da-845e12c71655", + "modelId": "438b68f8-bec6-4313-88d6-43f201f64e26", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:52:35Z", - "lastUpdatedDateTime": "2020-08-26T17:52:46Z" + "createdDateTime": "2020-08-20T21:22:10Z", + "lastUpdatedDateTime": "2020-08-20T21:22:12Z" }, { - "modelId": "a5583bd4-9d64-4971-a4e3-ad202a2f1711", + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", "status": "ready", - "createdDateTime": "2020-08-07T02:33:05Z", - "lastUpdatedDateTime": "2020-08-07T02:33:09Z" + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:49Z" }, { - "modelId": "a59ea0d6-3fa4-4879-91f9-f83319790278", - "status": "creating", - "createdDateTime": "2020-08-17T23:02:26Z", - "lastUpdatedDateTime": "2020-08-17T23:02:26Z" + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:22:18Z", + "lastUpdatedDateTime": "2020-10-30T13:22:19Z" }, { - "modelId": "a646e66b-c795-470b-a59d-ed208e8107c4", + "modelId": "44cf7b0c-17d8-461b-8a14-972532fcf6d6", "status": "creating", - "createdDateTime": "2020-08-07T02:32:39Z", - "lastUpdatedDateTime": "2020-08-07T02:32:39Z" + "createdDateTime": "2020-08-17T22:30:19Z", + "lastUpdatedDateTime": "2020-08-17T22:30:19Z" }, { - "modelId": "a72d7916-ab9f-4c63-aa32-79ffed1bb391", + "modelId": "44d3f221-a1ad-4726-a5f5-43bc37fe7222", "status": "ready", - "createdDateTime": "2020-08-07T02:33:27Z", - "lastUpdatedDateTime": "2020-08-07T02:34:01Z" + "createdDateTime": "2020-08-20T22:45:18Z", + "lastUpdatedDateTime": "2020-08-20T22:45:27Z" }, { - "modelId": "a7bc5b1f-af0b-449a-bcd1-3daef200c131", + "modelId": "4559697f-580d-439c-a336-1272be0526f9", "status": "invalid", - "createdDateTime": "2020-08-06T23:21:39Z", - "lastUpdatedDateTime": "2020-08-06T23:21:53Z" + "createdDateTime": "2020-10-30T13:20:53Z", + "lastUpdatedDateTime": "2020-10-30T13:20:54Z" }, { - "modelId": "a87b6655-71cb-481b-bedd-bdca02704320", - "status": "ready", - "createdDateTime": "2020-08-26T17:55:11Z", - "lastUpdatedDateTime": "2020-08-26T17:55:20Z" + "modelId": "45c5498b-3755-44fd-95d5-8d5b5924e3a6", + "status": "invalid", + "createdDateTime": "2020-08-20T22:43:19Z", + "lastUpdatedDateTime": "2020-08-20T22:43:19Z" }, { - "modelId": "a9643e41-d890-434b-a3ea-d5f9de22a81b", + "modelId": "45f1adde-a451-4746-a675-f0ebb166151b", "status": "creating", - "createdDateTime": "2020-08-26T17:52:47Z", - "lastUpdatedDateTime": "2020-08-26T17:52:47Z" + "createdDateTime": "2020-08-20T21:47:08Z", + "lastUpdatedDateTime": "2020-08-20T21:47:08Z" }, { - "modelId": "aa4c7c66-c63e-453c-b6c8-6eb34bded19c", - "status": "ready", - "createdDateTime": "2020-08-26T17:53:08Z", - "lastUpdatedDateTime": "2020-08-26T17:53:14Z" + "modelId": "46201f03-7ffc-4e1e-bd07-a48bb6bccad4", + "status": "creating", + "createdDateTime": "2020-08-14T19:08:23Z", + "lastUpdatedDateTime": "2020-08-14T19:08:23Z" }, { - "modelId": "ae63d47a-b069-4e06-9b23-fa01eb02e7a4", - "attributes": { - "isComposed": false - }, + "modelId": "46a86632-ff1f-4e80-bd06-6c8d48af3157", "status": "ready", - "createdDateTime": "2020-08-26T17:53:28Z", - "lastUpdatedDateTime": "2020-08-26T17:53:29Z" + "createdDateTime": "2020-08-20T18:44:45Z", + "lastUpdatedDateTime": "2020-08-20T18:44:53Z" }, { - "modelId": "b17cb2c7-bd8d-4f5f-80d1-a20559f55dc0", + "modelId": "47a7b4cd-d993-4d83-b6ca-ee18c547acfb", "status": "ready", - "createdDateTime": "2020-08-07T02:33:07Z", - "lastUpdatedDateTime": "2020-08-07T02:33:23Z" - }, - { - "modelId": "b29c550b-6b80-43f8-bc95-cf0655cbe4fb", - "status": "creating", - "createdDateTime": "2020-09-09T22:20:41Z", - "lastUpdatedDateTime": "2020-09-09T22:20:41Z" + "createdDateTime": "2020-08-20T22:49:07Z", + "lastUpdatedDateTime": "2020-08-20T22:49:16Z" }, { - "modelId": "b2e963b2-39e0-4e5f-acaa-9d48e0ad7570", + "modelId": "488d74c6-25ae-4271-b7e5-cff85e10abc4", "status": "ready", - "createdDateTime": "2020-08-26T17:51:07Z", - "lastUpdatedDateTime": "2020-08-26T17:51:13Z" + "createdDateTime": "2020-08-20T18:26:04Z", + "lastUpdatedDateTime": "2020-08-20T18:26:12Z" }, { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", + "modelId": "49b0f1a2-e699-4f0d-a873-040df8e08e6c", "status": "ready", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:17:12Z" + "createdDateTime": "2020-08-14T19:13:59Z", + "lastUpdatedDateTime": "2020-08-14T19:14:08Z" }, { - "modelId": "b3bf06ee-649c-4195-b79a-743efe134b3a", - "status": "creating", - "createdDateTime": "2020-08-11T23:26:07Z", - "lastUpdatedDateTime": "2020-08-11T23:26:07Z" + "modelId": "4acac1b2-4f07-46b2-9d21-c172d2a66330", + "status": "ready", + "createdDateTime": "2020-08-14T19:28:36Z", + "lastUpdatedDateTime": "2020-08-14T19:28:44Z" }, { - "modelId": "b4f76870-a421-49fc-b407-0eff0259b35f", + "modelId": "4b815719-ec80-4bd7-a709-91ae6a44fdf7", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:52:11Z", - "lastUpdatedDateTime": "2020-08-26T17:52:13Z" + "createdDateTime": "2020-10-30T13:24:33Z", + "lastUpdatedDateTime": "2020-10-30T13:24:35Z" }, { - "modelId": "b505e41b-7b1f-403b-8934-b61ec312a33c", + "modelId": "4bfcc25d-0b2f-4fa2-a284-bcc98cf1f8fd", "status": "ready", - "createdDateTime": "2020-08-07T02:31:58Z", - "lastUpdatedDateTime": "2020-08-07T02:32:11Z" - }, - { - "modelId": "bd24dcfe-a630-4b9f-bb41-6f2462d7dc49", - "status": "ready", - "createdDateTime": "2020-08-07T02:34:59Z", - "lastUpdatedDateTime": "2020-08-07T02:35:12Z" - }, - { - "modelId": "bf6945cc-5534-4fc7-bd7c-2371601328ff", - "status": "creating", - "createdDateTime": "2020-08-07T02:35:13Z", - "lastUpdatedDateTime": "2020-08-07T02:35:13Z" - }, - { - "modelId": "c20f99d1-31dd-4db9-baaa-97cc063209b9", - "status": "creating", - "createdDateTime": "2020-08-07T02:35:22Z", - "lastUpdatedDateTime": "2020-08-07T02:35:22Z" + "createdDateTime": "2020-08-20T21:31:42Z", + "lastUpdatedDateTime": "2020-08-20T21:31:51Z" }, { - "modelId": "c2d66fc3-bb2c-4001-a6f8-c38e8b14edb9", + "modelId": "4c92bc3c-f25c-4f02-84d9-f8ceae9b16b6", "status": "ready", - "createdDateTime": "2020-08-26T17:56:05Z", - "lastUpdatedDateTime": "2020-08-26T17:56:15Z" + "createdDateTime": "2020-08-14T19:11:09Z", + "lastUpdatedDateTime": "2020-08-14T19:11:17Z" }, { - "modelId": "c345d537-db8a-42e9-8ed1-a1ff3fac62b0", - "status": "ready", - "createdDateTime": "2020-08-07T02:33:24Z", - "lastUpdatedDateTime": "2020-08-07T02:33:26Z" + "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", + "status": "invalid", + "createdDateTime": "2020-08-20T18:45:20Z", + "lastUpdatedDateTime": "2020-08-20T18:45:20Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2MzNDVkNTM3LWRiOGEtNDJlOS04ZWQxLWExZmYzZmFjNjJiMC9jMzQ1ZDUzNy1kYjhhLTQyZTktOGVkMS1hMWZmM2ZhYzYyYjAuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2MzNDVkNTM3LWRiOGEtNDJlOS04ZWQxLWExZmYzZmFjNjJiMC9jMzQ1ZDUzNy1kYjhhLTQyZTktOGVkMS1hMWZmM2ZhYzYyYjAuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8a31ef5efa29a1c18f93c106156658ea", "x-ms-return-client-request-id": "true" @@ -1123,248 +1109,239 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d0293c0-2e35-4c75-88a3-650eee1397ed", + "apim-request-id": "ba8209e6-d5ac-4afc-b365-8b8d2e18c443", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:15 GMT", + "Date": "Fri, 30 Oct 2020 13:30:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "348" + "x-envoy-upstream-service-time": "270" }, "ResponseBody": { "modelList": [ { - "modelId": "c345d537-db8a-42e9-8ed1-a1ff3fac62b0", - "status": "ready", - "createdDateTime": "2020-08-07T02:33:24Z", - "lastUpdatedDateTime": "2020-08-07T02:33:26Z" + "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", + "status": "invalid", + "createdDateTime": "2020-08-20T18:45:20Z", + "lastUpdatedDateTime": "2020-08-20T18:45:20Z" }, { - "modelId": "c59b42e7-7aca-497e-9aad-c65bbeed9b57", + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", "status": "ready", - "createdDateTime": "2020-08-06T23:22:35Z", - "lastUpdatedDateTime": "2020-08-06T23:22:42Z" + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:25:13Z" }, { - "modelId": "c8986d9f-8e8a-4d04-8bb0-6638b754e15d", - "status": "invalid", - "createdDateTime": "2020-08-07T02:36:41Z", - "lastUpdatedDateTime": "2020-08-07T02:36:42Z" + "modelId": "52db9454-9b6c-4514-a6f4-27d3d404a999", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:43:30Z", + "lastUpdatedDateTime": "2020-08-20T22:43:32Z" }, { - "modelId": "ca22fcf9-50fd-4f30-9cc2-89ce165da9e5", + "modelId": "547f6f41-f70e-4cb5-aa8f-2129e33df2af", "status": "ready", - "createdDateTime": "2020-08-26T17:54:59Z", - "lastUpdatedDateTime": "2020-08-26T17:55:09Z" + "createdDateTime": "2020-07-30T00:55:04Z", + "lastUpdatedDateTime": "2020-07-30T00:55:12Z" }, { - "modelId": "cb5e24c2-a87a-4d58-9eb6-d45c354188d2", + "modelId": "551c272c-ff8f-493e-b234-a719bc35ee23", "status": "creating", - "createdDateTime": "2020-08-26T17:52:51Z", - "lastUpdatedDateTime": "2020-08-26T17:52:51Z" + "createdDateTime": "2020-10-30T13:19:42Z", + "lastUpdatedDateTime": "2020-10-30T13:19:42Z" + }, + { + "modelId": "55c30a55-134a-4f9d-8b42-37caa8198471", + "status": "ready", + "createdDateTime": "2020-08-14T19:11:21Z", + "lastUpdatedDateTime": "2020-08-14T19:11:31Z" }, { - "modelId": "cc311fd7-86eb-45db-9d4d-a3d8e0370b65", + "modelId": "56292da4-33e9-421f-ad9b-859234c5d111", "status": "invalid", - "createdDateTime": "2020-08-26T17:53:05Z", - "lastUpdatedDateTime": "2020-08-26T17:53:06Z" + "createdDateTime": "2020-08-20T23:29:05Z", + "lastUpdatedDateTime": "2020-08-20T23:29:05Z" }, { - "modelId": "cdc006db-a59c-4cc8-a2dc-ab16c680ea79", - "status": "ready", - "createdDateTime": "2020-08-11T23:26:28Z", - "lastUpdatedDateTime": "2020-08-11T23:26:31Z" + "modelId": "566b7d84-318a-4acb-a928-d684e42b93b3", + "status": "invalid", + "createdDateTime": "2020-08-20T21:50:02Z", + "lastUpdatedDateTime": "2020-08-20T21:50:02Z" }, { - "modelId": "cf827cbd-7ef9-4d03-bcb2-3196ac232a27", + "modelId": "56ce1ece-256f-480d-8637-1005534971de", "status": "ready", - "createdDateTime": "2020-08-07T02:42:09Z", - "lastUpdatedDateTime": "2020-08-07T02:42:23Z" + "createdDateTime": "2020-08-20T21:27:11Z", + "lastUpdatedDateTime": "2020-08-20T21:27:19Z" }, { - "modelId": "cfe75f49-a7d5-4642-98f2-63dc697109fc", + "modelId": "5737eddb-d3c3-4e43-8658-b0f4322af5dc", "status": "invalid", - "createdDateTime": "2020-08-26T17:32:33Z", - "lastUpdatedDateTime": "2020-08-26T17:32:34Z" + "createdDateTime": "2020-08-20T23:29:06Z", + "lastUpdatedDateTime": "2020-08-20T23:29:07Z" }, { - "modelId": "d191bdd0-84ab-46aa-a6c3-f8def1867cf1", - "attributes": { - "isComposed": false - }, + "modelId": "578062d7-dbfb-4548-a54e-299c967f17be", "status": "ready", - "createdDateTime": "2020-08-26T17:51:14Z", - "lastUpdatedDateTime": "2020-08-26T17:51:17Z" + "createdDateTime": "2020-08-20T18:48:16Z", + "lastUpdatedDateTime": "2020-08-20T18:48:27Z" }, { - "modelId": "d1bf30dc-45a1-4bfe-9e5e-6e50d6ffa19d", - "attributes": { - "isComposed": false - }, + "modelId": "57c1049c-a148-461a-ad5d-fe7e953f7d09", + "status": "creating", + "createdDateTime": "2020-08-14T19:10:36Z", + "lastUpdatedDateTime": "2020-08-14T19:10:36Z" + }, + { + "modelId": "57e0eb22-6bdb-4ef9-a597-11d96876ad1d", "status": "ready", - "createdDateTime": "2020-09-09T22:21:03Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-08-14T19:45:21Z", + "lastUpdatedDateTime": "2020-08-14T19:45:29Z" }, { - "modelId": "d273c5ba-313e-4954-9487-697d5088f802", - "status": "invalid", - "createdDateTime": "2020-08-07T02:32:53Z", - "lastUpdatedDateTime": "2020-08-07T02:32:53Z" + "modelId": "5802c9ef-6ce3-41ac-be05-b4afb5613cb2", + "status": "ready", + "createdDateTime": "2020-08-20T21:08:18Z", + "lastUpdatedDateTime": "2020-08-20T21:08:26Z" }, { - "modelId": "d7e283fe-3aec-4bf8-94fe-61fe21940395", - "status": "creating", - "createdDateTime": "2020-08-26T17:32:14Z", - "lastUpdatedDateTime": "2020-08-26T17:32:14Z" + "modelId": "5837470d-2183-4c9a-b005-80ab6b76765b", + "status": "ready", + "createdDateTime": "2020-08-20T23:31:12Z", + "lastUpdatedDateTime": "2020-08-20T23:31:26Z" }, { - "modelId": "d93c3dfe-b120-414e-9f51-ad40310c4a43", + "modelId": "584c4432-36cf-4a0b-a2e1-5c651bfd4227", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:33:41Z", - "lastUpdatedDateTime": "2020-08-26T17:33:49Z" - }, - { - "modelId": "db508217-f07e-493a-89c4-72a5f714a4b9", - "status": "invalid", - "createdDateTime": "2020-08-26T17:51:04Z", - "lastUpdatedDateTime": "2020-08-26T17:51:04Z" - }, - { - "modelId": "dc8ece10-6525-4660-8090-b1bcc26c4e9d", - "status": "ready", - "createdDateTime": "2020-08-06T23:42:46Z", - "lastUpdatedDateTime": "2020-08-06T23:42:54Z" + "createdDateTime": "2020-08-14T19:08:02Z", + "lastUpdatedDateTime": "2020-08-14T19:08:04Z" }, { - "modelId": "ddb1a1cd-e9d7-4044-a077-d5bfa01c98ee", - "status": "invalid", - "createdDateTime": "2020-08-26T17:32:32Z", - "lastUpdatedDateTime": "2020-08-26T17:32:32Z" + "modelId": "58871fae-0f09-4f14-bce7-769d4bd35354", + "status": "creating", + "createdDateTime": "2020-08-14T19:08:30Z", + "lastUpdatedDateTime": "2020-08-14T19:08:30Z" }, { - "modelId": "e3059236-3520-4d20-93d2-5d82c089a198", + "modelId": "5bde02de-1dcb-4ea8-b497-0427a16b26fb", "status": "creating", - "createdDateTime": "2020-08-26T17:32:17Z", - "lastUpdatedDateTime": "2020-08-26T17:32:17Z" + "createdDateTime": "2020-08-20T23:25:39Z", + "lastUpdatedDateTime": "2020-08-20T23:25:39Z" }, { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4", + "modelId": "5f0ca916-4ca0-4f2d-9447-caeac53bcf2e", "status": "ready", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:27Z" + "createdDateTime": "2020-08-20T23:32:15Z", + "lastUpdatedDateTime": "2020-08-20T23:32:25Z" }, { - "modelId": "e54e8d47-0c59-4c6f-8e42-42075bca2625", + "modelId": "5faf34f8-8399-477b-ba82-48f1e2e7688f", "status": "invalid", - "createdDateTime": "2020-08-07T02:38:17Z", - "lastUpdatedDateTime": "2020-08-07T02:38:23Z" - }, - { - "modelId": "e68af186-60e9-43ab-bf44-957aaa96e75f", - "status": "creating", - "createdDateTime": "2020-08-26T17:52:47Z", - "lastUpdatedDateTime": "2020-08-26T17:52:47Z" - }, - { - "modelId": "e76f563f-8640-4330-b98a-d2431721debd", - "status": "ready", - "createdDateTime": "2020-08-26T17:50:38Z", - "lastUpdatedDateTime": "2020-08-26T17:50:48Z" + "createdDateTime": "2020-08-14T19:45:12Z", + "lastUpdatedDateTime": "2020-08-14T19:45:12Z" }, { - "modelId": "ea436462-f638-49a6-b220-ed94172d8701", - "status": "ready", - "createdDateTime": "2020-08-06T23:17:00Z", - "lastUpdatedDateTime": "2020-08-06T23:17:07Z" + "modelId": "5feddb70-fa11-450f-b34b-37a45b5c80d3", + "status": "invalid", + "createdDateTime": "2020-08-20T23:26:09Z", + "lastUpdatedDateTime": "2020-08-20T23:26:10Z" }, { - "modelId": "ebbbbee8-942c-4374-b3a6-ac594f195e78", + "modelId": "6035d354-53ef-4dcd-93de-5b9ad1c1ea77", "status": "ready", - "createdDateTime": "2020-08-07T02:03:56Z", - "lastUpdatedDateTime": "2020-08-07T02:04:09Z" + "createdDateTime": "2020-08-20T18:42:40Z", + "lastUpdatedDateTime": "2020-08-20T18:42:48Z" }, { - "modelId": "eff726db-d669-457a-b2a4-f003290d914c", - "status": "ready", - "createdDateTime": "2020-08-11T23:26:32Z", - "lastUpdatedDateTime": "2020-08-11T23:26:45Z" + "modelId": "6216b1ae-970a-485b-a35e-070150082adb", + "status": "creating", + "createdDateTime": "2020-08-20T22:42:57Z", + "lastUpdatedDateTime": "2020-08-20T22:42:57Z" }, { - "modelId": "f0261c04-3454-4073-ae5f-c2f450dcd690", + "modelId": "63262869-1ff0-49d0-a26f-1d1552cad649", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:37:58Z", - "lastUpdatedDateTime": "2020-08-06T23:38:08Z" + "createdDateTime": "2020-08-20T23:09:49Z", + "lastUpdatedDateTime": "2020-08-20T23:09:51Z" }, { - "modelId": "f0add33b-8563-4329-855b-665e87cafc5c", - "status": "ready", - "createdDateTime": "2020-08-26T17:33:04Z", - "lastUpdatedDateTime": "2020-08-26T17:33:17Z" + "modelId": "637426f9-5d46-4e4c-8bfb-86f2b60bd94b", + "status": "creating", + "createdDateTime": "2020-08-20T21:49:44Z", + "lastUpdatedDateTime": "2020-08-20T21:49:44Z" }, { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859", + "modelId": "66087b32-fce4-402d-9101-1bc4f627462d", "status": "ready", - "createdDateTime": "2020-09-09T22:15:54Z", - "lastUpdatedDateTime": "2020-09-09T22:16:06Z" + "createdDateTime": "2020-08-20T21:22:24Z", + "lastUpdatedDateTime": "2020-08-20T21:22:33Z" }, { - "modelId": "f4579713-39a2-421d-b166-08a7a50e12f3", + "modelId": "6645dde9-caf0-4beb-8758-501325f2e605", "status": "ready", - "createdDateTime": "2020-08-26T17:53:18Z", - "lastUpdatedDateTime": "2020-08-26T17:53:26Z" + "createdDateTime": "2020-08-20T21:53:58Z", + "lastUpdatedDateTime": "2020-08-20T21:54:06Z" }, { - "modelId": "f5e89999-37c5-41ef-88b9-4341e3ab14b1", + "modelId": "68f6c9f8-795d-43bc-97bd-619dad38c66d", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:34:55Z", - "lastUpdatedDateTime": "2020-08-26T17:34:56Z" + "createdDateTime": "2020-08-20T23:28:13Z", + "lastUpdatedDateTime": "2020-08-20T23:28:19Z" }, { - "modelId": "f7797595-6c64-490c-9048-b1bef3c8bfb0", - "status": "ready", - "createdDateTime": "2020-08-26T17:32:35Z", - "lastUpdatedDateTime": "2020-08-26T17:32:39Z" + "modelId": "6bbda4de-97ee-4d62-a7ab-2a9a13f503f6", + "status": "invalid", + "createdDateTime": "2020-08-20T21:49:56Z", + "lastUpdatedDateTime": "2020-08-20T21:49:56Z" }, { - "modelId": "f9479181-78be-4c36-86d0-1d2248f05941", - "attributes": { - "isComposed": false - }, + "modelId": "6c252bb0-d84a-47c8-82af-0dabf36c4c6f", + "status": "invalid", + "createdDateTime": "2020-08-20T21:47:26Z", + "lastUpdatedDateTime": "2020-08-20T21:47:27Z" + }, + { + "modelId": "6c6bd1f5-4009-435f-b938-df50c1966733", "status": "ready", - "createdDateTime": "2020-08-26T17:53:15Z", - "lastUpdatedDateTime": "2020-08-26T17:53:17Z" + "createdDateTime": "2020-08-20T21:28:00Z", + "lastUpdatedDateTime": "2020-08-20T21:28:08Z" }, { - "modelId": "f94ccf91-64ab-4c90-baf6-c37ca2201301", + "modelId": "6fbe2ae1-fd8f-40c7-bf2e-c05e90931aac", "status": "creating", - "createdDateTime": "2020-08-11T23:25:53Z", - "lastUpdatedDateTime": "2020-08-11T23:25:53Z" + "createdDateTime": "2020-08-20T23:28:45Z", + "lastUpdatedDateTime": "2020-08-20T23:28:45Z" }, { - "modelId": "fa1f65c2-0b27-4061-8928-61b6d0659d18", + "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", "status": "ready", - "createdDateTime": "2020-08-26T17:51:36Z", - "lastUpdatedDateTime": "2020-08-26T17:51:48Z" + "createdDateTime": "2020-08-20T18:45:22Z", + "lastUpdatedDateTime": "2020-08-20T18:45:26Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2ZhMWY2NWMyLTBiMjctNDA2MS04OTI4LTYxYjZkMDY1OWQxOC9mYTFmNjVjMi0wYjI3LTQwNjEtODkyOC02MWI2ZDA2NTlkMTguanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2ZhMWY2NWMyLTBiMjctNDA2MS04OTI4LTYxYjZkMDY1OWQxOC9mYTFmNjVjMi0wYjI3LTQwNjEtODkyOC02MWI2ZDA2NTlkMTguanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d8a0157404111df2a7eb213f60f3e83f", "x-ms-return-client-request-id": "true" @@ -1372,126 +1349,1221 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c401079-1d89-4a27-a59c-9095161aebcd", + "apim-request-id": "a4caf13e-5b1b-4651-bbad-1735040ea2af", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:15 GMT", + "Date": "Fri, 30 Oct 2020 13:30:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-envoy-upstream-service-time": "261" }, "ResponseBody": { "modelList": [ { - "modelId": "fa1f65c2-0b27-4061-8928-61b6d0659d18", + "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", "status": "ready", - "createdDateTime": "2020-08-26T17:51:36Z", - "lastUpdatedDateTime": "2020-08-26T17:51:48Z" + "createdDateTime": "2020-08-20T18:45:22Z", + "lastUpdatedDateTime": "2020-08-20T18:45:26Z" }, { - "modelId": "fd4189a4-0770-41b7-a564-3458a22681ae", + "modelId": "714cd9ba-6084-4966-bf98-079fc90562fe", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:34:57Z", - "lastUpdatedDateTime": "2020-08-26T17:35:10Z" + "createdDateTime": "2020-08-14T19:10:07Z", + "lastUpdatedDateTime": "2020-08-14T19:10:09Z" }, { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "7156bc3a-1e6b-4125-b89f-10d971d5ba14", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:22:04Z" - } - ], - "nextLink": "" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?op=summary", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e8eeb30dd894f84b90e58fc8ce36305e-efb9efcad90cc646-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "36e5e35882acb82a35cf102014b1a52b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "77580078-93a8-441f-8372-bb5e06b28e87", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:15 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "177" - }, - "ResponseBody": { - "summary": { - "count": 137, - "limit": 5000, - "lastUpdatedDateTime": "2020-09-09T22:22:16Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/48d09b9c-b65c-491e-8913-2c0636ad7a0d", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-186f65a00cfb914bb21cbe336a0de2c2-6be64ac841296b43-00", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "922523f52a7759b5fd13e33dd881419b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 204, - "ResponseHeaders": { - "apim-request-id": "40bf4006-d55f-4ece-a8fe-6a8431aa623b", - "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:22:15 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" - }, - "ResponseBody": [] + "createdDateTime": "2020-08-20T22:27:48Z", + "lastUpdatedDateTime": "2020-08-20T22:27:50Z" + }, + { + "modelId": "741ca2b2-d208-4a68-a59d-f6fb1e41c596", + "modelName": "My training", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:21:03Z", + "lastUpdatedDateTime": "2020-10-30T13:21:04Z" + }, + { + "modelId": "74ea7917-ea1e-4d62-8bd9-551fcac9d963", + "status": "ready", + "createdDateTime": "2020-08-14T19:50:11Z", + "lastUpdatedDateTime": "2020-08-14T19:50:19Z" + }, + { + "modelId": "765cd50a-d9bd-4bbe-9e77-8e496c234240", + "status": "ready", + "createdDateTime": "2020-08-20T18:46:18Z", + "lastUpdatedDateTime": "2020-08-20T18:46:27Z" + }, + { + "modelId": "76aed1f7-5a15-4754-925c-45d27d7fd0c5", + "status": "creating", + "createdDateTime": "2020-08-20T21:22:34Z", + "lastUpdatedDateTime": "2020-08-20T21:22:34Z" + }, + { + "modelId": "76e1dc72-2be3-4c40-9f07-6b29a0bf327a", + "status": "creating", + "createdDateTime": "2020-08-14T19:44:45Z", + "lastUpdatedDateTime": "2020-08-14T19:44:45Z" + }, + { + "modelId": "76e25188-e121-4fc3-a5f3-3cb861033259", + "status": "creating", + "createdDateTime": "2020-08-20T21:25:07Z", + "lastUpdatedDateTime": "2020-08-20T21:25:07Z" + }, + { + "modelId": "795417b4-25af-4d41-aa61-3cef0084e589", + "status": "ready", + "createdDateTime": "2020-08-20T21:50:03Z", + "lastUpdatedDateTime": "2020-08-20T21:50:07Z" + }, + { + "modelId": "79a2c6de-5040-4198-a2fa-ecbe37e71788", + "modelName": "My training", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:02Z", + "lastUpdatedDateTime": "2020-10-30T13:24:03Z" + }, + { + "modelId": "7c9a4c19-1761-40d2-8f2b-10f10510ca74", + "status": "ready", + "createdDateTime": "2020-08-14T19:10:57Z", + "lastUpdatedDateTime": "2020-08-14T19:11:00Z" + }, + { + "modelId": "7dd8a381-1484-4809-ad11-db27dc50841e", + "status": "ready", + "createdDateTime": "2020-08-20T21:49:31Z", + "lastUpdatedDateTime": "2020-08-20T21:49:39Z" + }, + { + "modelId": "7dfcb89d-abc6-43ca-bae6-cce241d06e4f", + "status": "ready", + "createdDateTime": "2020-08-20T21:30:14Z", + "lastUpdatedDateTime": "2020-08-20T21:30:22Z" + }, + { + "modelId": "7f2745e3-7f0d-46f7-919a-96b939030594", + "status": "creating", + "createdDateTime": "2020-08-20T22:42:59Z", + "lastUpdatedDateTime": "2020-08-20T22:42:59Z" + }, + { + "modelId": "80601216-855c-4286-b532-34af33c229ae", + "status": "ready", + "createdDateTime": "2020-08-14T19:13:08Z", + "lastUpdatedDateTime": "2020-08-14T19:13:16Z" + }, + { + "modelId": "84fd2414-5018-4f5a-9805-b80467ce7593", + "status": "ready", + "createdDateTime": "2020-08-20T21:47:27Z", + "lastUpdatedDateTime": "2020-08-20T21:47:31Z" + }, + { + "modelId": "8692493e-799d-48c3-b217-950e1471adba", + "status": "ready", + "createdDateTime": "2020-08-14T19:48:16Z", + "lastUpdatedDateTime": "2020-08-14T19:48:24Z" + }, + { + "modelId": "878a4cd7-39c2-46a0-a905-7cc1bd071837", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:46:09Z", + "lastUpdatedDateTime": "2020-08-14T19:46:12Z" + }, + { + "modelId": "87f0f103-08c9-4cae-91b8-f5a0a205bb35", + "status": "creating", + "createdDateTime": "2020-08-17T22:32:37Z", + "lastUpdatedDateTime": "2020-08-17T22:32:37Z" + }, + { + "modelId": "88d34ad1-0508-475c-9d75-2c15594876ac", + "status": "invalid", + "createdDateTime": "2020-08-14T19:47:12Z", + "lastUpdatedDateTime": "2020-08-14T19:47:12Z" + }, + { + "modelId": "8a2a6999-df6a-4b64-9633-87d097b2af06", + "status": "invalid", + "createdDateTime": "2020-08-20T22:45:53Z", + "lastUpdatedDateTime": "2020-08-20T22:45:53Z" + }, + { + "modelId": "91f0a68b-5890-4e2a-8856-4489113f9d54", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:11:01Z", + "lastUpdatedDateTime": "2020-08-14T19:11:08Z" + }, + { + "modelId": "91f917c8-c8ad-457e-8d62-00e3e1686aac", + "status": "invalid", + "createdDateTime": "2020-08-20T18:43:19Z", + "lastUpdatedDateTime": "2020-08-20T18:43:20Z" + }, + { + "modelId": "921d9d16-9a9d-4dab-a0c5-63deb0aed5a6", + "status": "ready", + "createdDateTime": "2020-08-20T22:42:48Z", + "lastUpdatedDateTime": "2020-08-20T22:42:56Z" + }, + { + "modelId": "9259c76f-7273-41a7-83e2-fd176eeef64e", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:46:02Z", + "lastUpdatedDateTime": "2020-08-20T22:46:04Z" + }, + { + "modelId": "92829e8f-ef96-4b83-8d54-4e2064729e84", + "status": "invalid", + "createdDateTime": "2020-08-14T19:08:49Z", + "lastUpdatedDateTime": "2020-08-14T19:08:49Z" + }, + { + "modelId": "932ef024-3b06-4445-bc05-863f0b7365db", + "status": "ready", + "createdDateTime": "2020-08-14T19:10:25Z", + "lastUpdatedDateTime": "2020-08-14T19:10:32Z" + }, + { + "modelId": "94e1ae64-db16-4b11-b3ec-db684b3eb473", + "status": "ready", + "createdDateTime": "2020-08-20T21:46:57Z", + "lastUpdatedDateTime": "2020-08-20T21:47:05Z" + }, + { + "modelId": "959a6767-936a-4388-be50-47b1471173e2", + "status": "ready", + "createdDateTime": "2020-08-20T22:43:33Z", + "lastUpdatedDateTime": "2020-08-20T22:43:42Z" + }, + { + "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:51Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "36e5e35882acb82a35cf102014b1a52b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bda29f2a-cc03-4589-b17a-30f9a13bdc43", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:30:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "245" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:51Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" + }, + { + "modelId": "9794b06a-303c-4014-ac9c-d64ccd2d897d", + "status": "creating", + "createdDateTime": "2020-08-20T21:22:33Z", + "lastUpdatedDateTime": "2020-08-20T21:22:33Z" + }, + { + "modelId": "97be7970-9a98-4b3f-980c-77bf06f29131", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:21:52Z", + "lastUpdatedDateTime": "2020-10-30T13:21:54Z" + }, + { + "modelId": "98fc2d15-8bb1-4eb8-85f8-dbde2d188615", + "status": "ready", + "createdDateTime": "2020-08-14T19:46:41Z", + "lastUpdatedDateTime": "2020-08-14T19:46:48Z" + }, + { + "modelId": "9947fcd1-42b4-4c38-930e-1b0403e6f761", + "status": "ready", + "createdDateTime": "2020-08-14T19:45:42Z", + "lastUpdatedDateTime": "2020-08-14T19:45:53Z" + }, + { + "modelId": "99c2b562-6e31-4923-a25c-8d940951ed2f", + "status": "ready", + "createdDateTime": "2020-08-14T19:47:23Z", + "lastUpdatedDateTime": "2020-08-14T19:47:32Z" + }, + { + "modelId": "9a0b42b4-09e2-4c90-8bd0-64395fb588e8", + "status": "ready", + "createdDateTime": "2020-08-20T23:28:36Z", + "lastUpdatedDateTime": "2020-08-20T23:28:44Z" + }, + { + "modelId": "9aa701a8-3822-4d5d-bc37-4891415c267f", + "status": "ready", + "createdDateTime": "2020-08-20T22:06:19Z", + "lastUpdatedDateTime": "2020-08-20T22:06:29Z" + }, + { + "modelId": "9d8aac28-0ab6-4b18-bb80-35341797a3ad", + "status": "ready", + "createdDateTime": "2020-08-20T21:53:04Z", + "lastUpdatedDateTime": "2020-08-20T21:53:15Z" + }, + { + "modelId": "9e6eb7bc-d4b9-4887-a38a-58957d712769", + "status": "ready", + "createdDateTime": "2020-08-20T21:30:14Z", + "lastUpdatedDateTime": "2020-08-20T21:30:22Z" + }, + { + "modelId": "9f7271da-c7c1-4407-bd1a-92577c187995", + "status": "invalid", + "createdDateTime": "2020-08-20T18:45:21Z", + "lastUpdatedDateTime": "2020-08-20T18:45:22Z" + }, + { + "modelId": "a00e27ee-1358-468a-a95c-c80e5bff6343", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:45:08Z", + "lastUpdatedDateTime": "2020-08-20T22:45:15Z" + }, + { + "modelId": "a0a7e72a-d8ec-4293-8dee-7fbe726fc115", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T18:45:38Z", + "lastUpdatedDateTime": "2020-08-20T18:45:39Z" + }, + { + "modelId": "a1513cf9-13dd-4eb7-bac5-7ceee4658c13", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T18:53:36Z", + "lastUpdatedDateTime": "2020-08-14T18:53:43Z" + }, + { + "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", + "status": "ready", + "createdDateTime": "2020-10-30T13:20:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:01Z" + }, + { + "modelId": "a2a41673-e1b2-4319-8eef-44910ce4d9cf", + "status": "ready", + "createdDateTime": "2020-08-20T18:43:33Z", + "lastUpdatedDateTime": "2020-08-20T18:43:41Z" + }, + { + "modelId": "a2b05934-353c-4eb9-ac8b-45d1d2e489f2", + "status": "ready", + "createdDateTime": "2020-08-20T22:46:14Z", + "lastUpdatedDateTime": "2020-08-20T22:46:24Z" + }, + { + "modelId": "a3189094-17a1-4acf-a788-f8c05c6e6a19", + "status": "invalid", + "createdDateTime": "2020-08-20T22:45:54Z", + "lastUpdatedDateTime": "2020-08-20T22:45:55Z" + }, + { + "modelId": "a336ff42-7e03-4b7f-821a-1246209f29de", + "status": "ready", + "createdDateTime": "2020-08-14T19:08:51Z", + "lastUpdatedDateTime": "2020-08-14T19:08:55Z" + }, + { + "modelId": "a38f391d-fad5-4ed5-be4c-5a3644803cf4", + "status": "ready", + "createdDateTime": "2020-08-20T23:29:39Z", + "lastUpdatedDateTime": "2020-08-20T23:29:51Z" + }, + { + "modelId": "a3cb3ffe-ba7b-4a0d-838a-eced98e48e8c", + "status": "invalid", + "createdDateTime": "2020-08-20T22:43:18Z", + "lastUpdatedDateTime": "2020-08-20T22:43:18Z" + }, + { + "modelId": "a5f5ef27-523c-44a4-a06c-a56470180145", + "status": "creating", + "createdDateTime": "2020-08-14T19:44:55Z", + "lastUpdatedDateTime": "2020-08-14T19:44:55Z" + }, + { + "modelId": "a67b821e-e8f2-419d-97f6-e28903abe6a0", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:25:31Z", + "lastUpdatedDateTime": "2020-08-20T21:25:32Z" + }, + { + "modelId": "a70a5d5b-3b72-486b-91f1-0b518e077a43", + "status": "ready", + "createdDateTime": "2020-08-20T22:48:57Z", + "lastUpdatedDateTime": "2020-08-20T22:49:06Z" + }, + { + "modelId": "a78b3a1c-9189-4901-9bc2-ccceec21bf20", + "status": "creating", + "createdDateTime": "2020-08-20T18:44:56Z", + "lastUpdatedDateTime": "2020-08-20T18:44:56Z" + }, + { + "modelId": "a7d5f0a1-b604-4fd4-a1fb-5df92c6deaef", + "status": "ready", + "createdDateTime": "2020-08-20T18:26:04Z", + "lastUpdatedDateTime": "2020-08-20T18:26:12Z" + }, + { + "modelId": "a8b5afb6-f11a-4496-ad62-a70e3ecda523", + "status": "ready", + "createdDateTime": "2020-08-14T19:49:09Z", + "lastUpdatedDateTime": "2020-08-14T19:49:17Z" + }, + { + "modelId": "a95aa07c-a27b-4323-8bc6-3a02485f2707", + "status": "ready", + "createdDateTime": "2020-08-20T21:50:21Z", + "lastUpdatedDateTime": "2020-08-20T21:50:32Z" + }, + { + "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:46:13Z", + "lastUpdatedDateTime": "2020-08-20T22:46:14Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "922523f52a7759b5fd13e33dd881419b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5ab86e5a-8337-4536-b58e-ce352e6aaf16", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:30:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "247" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:46:13Z", + "lastUpdatedDateTime": "2020-08-20T22:46:14Z" + }, + { + "modelId": "a9dbcb83-f15c-4b42-aaef-c2e78adb3169", + "status": "ready", + "createdDateTime": "2020-08-14T19:47:14Z", + "lastUpdatedDateTime": "2020-08-14T19:47:20Z" + }, + { + "modelId": "ab71a8bd-e38c-41dd-8b9f-4677355e9ab5", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:21:05Z", + "lastUpdatedDateTime": "2020-10-30T13:21:06Z" + }, + { + "modelId": "ac2a0641-62e3-43e4-ab21-2f0eb52b6e61", + "status": "ready", + "createdDateTime": "2020-08-20T21:24:53Z", + "lastUpdatedDateTime": "2020-08-20T21:25:02Z" + }, + { + "modelId": "ad2694f9-88d9-48b6-b85c-71b6000aa9df", + "status": "ready", + "createdDateTime": "2020-08-14T19:47:39Z", + "lastUpdatedDateTime": "2020-08-14T19:47:49Z" + }, + { + "modelId": "af6d3536-b663-4856-9824-9e8872fc83ed", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T18:43:43Z", + "lastUpdatedDateTime": "2020-08-20T18:43:45Z" + }, + { + "modelId": "b01f6909-840f-4ca9-85a3-769538176fe5", + "status": "ready", + "createdDateTime": "2020-08-20T22:43:50Z", + "lastUpdatedDateTime": "2020-08-20T22:44:01Z" + }, + { + "modelId": "b08b7db5-97ae-4459-9603-47d5994e9f4a", + "status": "ready", + "createdDateTime": "2020-08-14T19:11:57Z", + "lastUpdatedDateTime": "2020-08-14T19:12:05Z" + }, + { + "modelId": "b0b6140c-fb6e-4c67-b7f1-420074909323", + "status": "creating", + "createdDateTime": "2020-08-20T23:28:47Z", + "lastUpdatedDateTime": "2020-08-20T23:28:47Z" + }, + { + "modelId": "b102b022-de56-4e48-8c16-41dae496d899", + "status": "invalid", + "createdDateTime": "2020-08-20T21:47:25Z", + "lastUpdatedDateTime": "2020-08-20T21:47:25Z" + }, + { + "modelId": "b370849a-a304-464b-acdb-1308a78b2fa2", + "status": "invalid", + "createdDateTime": "2020-10-30T13:20:52Z", + "lastUpdatedDateTime": "2020-10-30T13:20:52Z" + }, + { + "modelId": "b3cc3815-9fc0-40bc-ad82-0533b038db9d", + "status": "ready", + "createdDateTime": "2020-08-14T19:45:13Z", + "lastUpdatedDateTime": "2020-08-14T19:45:17Z" + }, + { + "modelId": "b404b97b-0e37-4eb5-8ad1-4ced5d0a34a5", + "status": "ready", + "createdDateTime": "2020-08-20T18:45:29Z", + "lastUpdatedDateTime": "2020-08-20T18:45:37Z" + }, + { + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", + "status": "ready", + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:22:15Z" + }, + { + "modelId": "b6cf7b42-a0ea-4d17-9a2e-080f0370f562", + "status": "invalid", + "createdDateTime": "2020-08-20T21:22:55Z", + "lastUpdatedDateTime": "2020-08-20T21:22:55Z" + }, + { + "modelId": "b768df27-adda-4f47-8223-4f9b696b3591", + "status": "creating", + "createdDateTime": "2020-08-20T21:47:08Z", + "lastUpdatedDateTime": "2020-08-20T21:47:08Z" + }, + { + "modelId": "b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:23:46Z", + "lastUpdatedDateTime": "2020-10-30T13:23:47Z" + }, + { + "modelId": "bacfa117-235d-43f0-b919-913a0e0ae686", + "status": "ready", + "createdDateTime": "2020-08-20T22:47:48Z", + "lastUpdatedDateTime": "2020-08-20T22:47:56Z" + }, + { + "modelId": "bc1133f6-33d3-4ac1-a848-0695866e1786", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:25:41Z", + "lastUpdatedDateTime": "2020-08-20T21:25:42Z" + }, + { + "modelId": "bc6ae2e0-2eb4-40bb-b8d0-0ca37f413c58", + "status": "invalid", + "createdDateTime": "2020-08-20T21:22:53Z", + "lastUpdatedDateTime": "2020-08-20T21:22:54Z" + }, + { + "modelId": "bd10694b-d9fd-402e-9f89-2e5994a7691f", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T18:27:08Z", + "lastUpdatedDateTime": "2020-08-20T18:27:10Z" + }, + { + "modelId": "be8593fc-3fab-4300-8b14-f77966b99c04", + "status": "invalid", + "createdDateTime": "2020-08-14T19:10:54Z", + "lastUpdatedDateTime": "2020-08-14T19:10:54Z" + }, + { + "modelId": "c1cf6bc1-0d0f-4a23-b453-9df1b937710a", + "status": "ready", + "createdDateTime": "2020-08-20T18:47:27Z", + "lastUpdatedDateTime": "2020-08-20T18:47:35Z" + }, + { + "modelId": "c2401fd4-05c0-48d4-bd2f-7a30589b1306", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:09:15Z", + "lastUpdatedDateTime": "2020-08-14T19:09:27Z" + }, + { + "modelId": "c39ee6fa-e7a8-4ad9-990e-aa9049846fff", + "status": "ready", + "createdDateTime": "2020-08-20T23:29:08Z", + "lastUpdatedDateTime": "2020-08-20T23:29:13Z" + }, + { + "modelId": "c5797a87-180d-4ec3-a23f-aa44848ad149", + "status": "ready", + "createdDateTime": "2020-08-20T23:26:12Z", + "lastUpdatedDateTime": "2020-08-20T23:26:17Z" + }, + { + "modelId": "c690cad3-cb93-4b4b-9139-f542f08aefa2", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:26:23Z", + "lastUpdatedDateTime": "2020-08-20T23:26:24Z" + }, + { + "modelId": "c6a30526-4a60-4aac-90db-dea83bf04799", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:25:05Z", + "lastUpdatedDateTime": "2020-08-20T23:25:07Z" + }, + { + "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", + "status": "ready", + "createdDateTime": "2020-08-20T23:33:14Z", + "lastUpdatedDateTime": "2020-08-20T23:33:22Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "32ad81ab2180f13debe7a341f4d209f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f0799062-3518-4cf1-8c64-5f9916326d3f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:30:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "219" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", + "status": "ready", + "createdDateTime": "2020-08-20T23:33:14Z", + "lastUpdatedDateTime": "2020-08-20T23:33:22Z" + }, + { + "modelId": "c89e3c61-0048-4ac6-93e6-4f28e4c290cc", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:29:28Z", + "lastUpdatedDateTime": "2020-08-14T19:29:35Z" + }, + { + "modelId": "c8b76997-38b0-444f-9646-40e930bd7b5c", + "status": "ready", + "createdDateTime": "2020-08-20T21:47:50Z", + "lastUpdatedDateTime": "2020-08-20T21:48:01Z" + }, + { + "modelId": "cdb4705a-40e1-4ff4-8ad0-fec5734f4325", + "status": "ready", + "createdDateTime": "2020-08-20T23:10:08Z", + "lastUpdatedDateTime": "2020-08-20T23:10:17Z" + }, + { + "modelId": "cde04bf1-6d25-46f7-bdb5-2d056d9d0770", + "status": "ready", + "createdDateTime": "2020-08-14T19:09:28Z", + "lastUpdatedDateTime": "2020-08-14T19:09:39Z" + }, + { + "modelId": "cdfdd9de-9047-4c6b-9a87-eb8f561f73ff", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:47:21Z", + "lastUpdatedDateTime": "2020-08-14T19:47:23Z" + }, + { + "modelId": "cee73923-0fa2-40dd-8eda-8446c153ecbb", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:45:18Z", + "lastUpdatedDateTime": "2020-08-14T19:45:20Z" + }, + { + "modelId": "cf0a0084-92b5-4c82-aaee-b899a0645f91", + "status": "ready", + "createdDateTime": "2020-08-14T18:53:51Z", + "lastUpdatedDateTime": "2020-08-14T18:53:59Z" + }, + { + "modelId": "cfe8a11b-ae8c-4105-a8a3-ab69bd8a4354", + "status": "invalid", + "createdDateTime": "2020-10-30T13:23:52Z", + "lastUpdatedDateTime": "2020-10-30T13:23:52Z" + }, + { + "modelId": "d1ebd4b5-6e79-4a31-9ed2-0d492b409a6c", + "status": "creating", + "createdDateTime": "2020-08-14T19:46:50Z", + "lastUpdatedDateTime": "2020-08-14T19:46:50Z" + }, + { + "modelId": "d234c2cd-e20d-407c-b023-2bb7e0065875", + "status": "ready", + "createdDateTime": "2020-08-20T21:06:49Z", + "lastUpdatedDateTime": "2020-08-20T21:06:57Z" + }, + { + "modelId": "d2bb2813-e890-4726-ad3a-5b2137840550", + "status": "ready", + "createdDateTime": "2020-08-14T19:08:59Z", + "lastUpdatedDateTime": "2020-08-14T19:09:09Z" + }, + { + "modelId": "d35b3816-19e2-4263-840b-749342c5a9ae", + "status": "creating", + "createdDateTime": "2020-08-20T23:25:48Z", + "lastUpdatedDateTime": "2020-08-20T23:25:48Z" + }, + { + "modelId": "d38c3724-ecc0-46ad-be24-9cfb55e88fdd", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:29:19Z", + "lastUpdatedDateTime": "2020-08-20T23:29:21Z" + }, + { + "modelId": "d44ad36d-9b3f-4528-aeed-50111c87d0d8", + "status": "ready", + "createdDateTime": "2020-08-20T21:22:56Z", + "lastUpdatedDateTime": "2020-08-20T21:22:59Z" + }, + { + "modelId": "d71f1973-c8bc-4723-95f6-270faeb0d710", + "status": "ready", + "createdDateTime": "2020-08-05T20:02:42Z", + "lastUpdatedDateTime": "2020-08-05T20:02:53Z" + }, + { + "modelId": "d76bbb87-3665-4fcf-bd78-5af39fa70371", + "status": "creating", + "createdDateTime": "2020-08-20T21:25:03Z", + "lastUpdatedDateTime": "2020-08-20T21:25:03Z" + }, + { + "modelId": "d7c60908-afae-4db7-97a4-7dfee044d9fb", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:44:20Z", + "lastUpdatedDateTime": "2020-08-14T19:44:27Z" + }, + { + "modelId": "d8bc8709-3324-4d86-a702-fb13d83bd3fd", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:24:37Z", + "lastUpdatedDateTime": "2020-08-20T21:24:38Z" + }, + { + "modelId": "d9d6453d-555a-411b-8969-29023fc1d347", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:50:19Z", + "lastUpdatedDateTime": "2020-08-20T21:50:21Z" + }, + { + "modelId": "da9ff68e-3cb0-4066-8030-84fac4049adf", + "status": "ready", + "createdDateTime": "2020-08-20T23:26:42Z", + "lastUpdatedDateTime": "2020-08-20T23:26:55Z" + }, + { + "modelId": "db37c79c-cb7c-4e82-b5a6-de8761e95791", + "status": "creating", + "createdDateTime": "2020-08-17T22:33:39Z", + "lastUpdatedDateTime": "2020-08-17T22:33:39Z" + }, + { + "modelId": "de0c3af0-ab73-4a50-88b9-0be008348ff3", + "status": "ready", + "createdDateTime": "2020-08-14T19:12:59Z", + "lastUpdatedDateTime": "2020-08-14T19:13:07Z" + }, + { + "modelId": "ded45364-1d15-4185-9ba1-349085488c79", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:31:28Z", + "lastUpdatedDateTime": "2020-08-20T21:31:30Z" + }, + { + "modelId": "df46a938-d337-4664-82f6-13fe40a3ccbd", + "status": "ready", + "createdDateTime": "2020-08-05T20:05:23Z", + "lastUpdatedDateTime": "2020-08-05T20:05:34Z" + }, + { + "modelId": "dfed1264-2f66-4fa1-83fd-adce189c3ae9", + "status": "creating", + "createdDateTime": "2020-08-17T22:30:35Z", + "lastUpdatedDateTime": "2020-08-17T22:30:35Z" + }, + { + "modelId": "e10d0994-db23-4546-9ea7-377e52f85c7e", + "status": "ready", + "createdDateTime": "2020-08-20T21:47:40Z", + "lastUpdatedDateTime": "2020-08-20T21:47:48Z" + }, + { + "modelId": "e1fb3fc5-8672-4d3c-ad29-fa0c489f21fd", + "status": "invalid", + "createdDateTime": "2020-08-20T18:43:14Z", + "lastUpdatedDateTime": "2020-08-20T18:43:15Z" + }, + { + "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", + "status": "ready", + "createdDateTime": "2020-08-20T18:47:17Z", + "lastUpdatedDateTime": "2020-08-20T18:47:25Z" + }, + { + "modelId": "e29f1d60-4987-478c-b1c7-ad4dd466a719", + "status": "ready", + "createdDateTime": "2020-08-20T21:50:10Z", + "lastUpdatedDateTime": "2020-08-20T21:50:18Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyOWYxZDYwLTQ5ODctNDc4Yy1iMWM3LWFkNGRkNDY2YTcxOS9lMjlmMWQ2MC00OTg3LTQ3OGMtYjFjNy1hZDRkZDQ2NmE3MTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/48d09b9c-b65c-491e-8913-2c0636ad7a0d?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyOWYxZDYwLTQ5ODctNDc4Yy1iMWM3LWFkNGRkNDY2YTcxOS9lMjlmMWQ2MC00OTg3LTQ3OGMtYjFjNy1hZDRkZDQ2NmE3MTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d3472365e0034e4586690055e7b545e1-71338de2e7e3354e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "32ad81ab2180f13debe7a341f4d209f5", + "x-ms-client-request-id": "3c4af54555cd2dc82d8b39999fece0b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c8cae8d7-9232-411f-b91b-8ad906e182d1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:30:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "192" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "e29f1d60-4987-478c-b1c7-ad4dd466a719", + "status": "ready", + "createdDateTime": "2020-08-20T21:50:10Z", + "lastUpdatedDateTime": "2020-08-20T21:50:18Z" + }, + { + "modelId": "e2d2eecf-d810-4fd9-8b94-cc370a9d3dc5", + "status": "creating", + "createdDateTime": "2020-08-20T21:49:40Z", + "lastUpdatedDateTime": "2020-08-20T21:49:40Z" + }, + { + "modelId": "e31e548b-1c1a-4345-907b-b77bec13260d", + "status": "creating", + "createdDateTime": "2020-08-17T17:11:47Z", + "lastUpdatedDateTime": "2020-08-17T17:11:47Z" + }, + { + "modelId": "e4100004-e84e-4795-b220-983fafee5a10", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:19:24Z", + "lastUpdatedDateTime": "2020-10-30T13:19:26Z" + }, + { + "modelId": "e4949cbb-05e0-4d1b-bab9-c4e444b25c9e", + "status": "invalid", + "createdDateTime": "2020-08-14T19:08:50Z", + "lastUpdatedDateTime": "2020-08-14T19:08:51Z" + }, + { + "modelId": "e8679f07-a7ae-43ff-af1c-417567ece17f", + "status": "creating", + "createdDateTime": "2020-08-14T19:08:23Z", + "lastUpdatedDateTime": "2020-08-14T19:08:23Z" + }, + { + "modelId": "eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:30:48Z", + "lastUpdatedDateTime": "2020-10-30T13:30:50Z" + }, + { + "modelId": "eb78387f-b93d-47c4-8ff2-5a75fa2848c2", + "status": "creating", + "createdDateTime": "2020-08-17T17:11:08Z", + "lastUpdatedDateTime": "2020-08-17T17:11:08Z" + }, + { + "modelId": "eccc2f1b-08fc-4bdf-af54-45bbb3a94dc8", + "status": "creating", + "createdDateTime": "2020-08-20T21:47:16Z", + "lastUpdatedDateTime": "2020-08-20T21:47:16Z" + }, + { + "modelId": "f019ba8f-b377-4307-aed2-2e357d88faad", + "status": "invalid", + "createdDateTime": "2020-08-14T19:10:55Z", + "lastUpdatedDateTime": "2020-08-14T19:10:56Z" + }, + { + "modelId": "f0790982-b19e-4f0b-9f3d-0bd73c22d50b", + "status": "ready", + "createdDateTime": "2020-08-20T18:45:40Z", + "lastUpdatedDateTime": "2020-08-20T18:45:50Z" + }, + { + "modelId": "f09bb379-e552-423b-a66e-11d4a47b4cad", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:45:30Z", + "lastUpdatedDateTime": "2020-08-14T19:45:41Z" + }, + { + "modelId": "f16a5995-6f9d-429c-a9ce-94b42e707f4e", + "status": "ready", + "createdDateTime": "2020-08-20T21:23:21Z", + "lastUpdatedDateTime": "2020-08-20T21:23:32Z" + }, + { + "modelId": "f2b17543-4827-4824-8f0a-297915305924", + "status": "creating", + "createdDateTime": "2020-08-20T23:25:39Z", + "lastUpdatedDateTime": "2020-08-20T23:25:39Z" + }, + { + "modelId": "f313494f-2d7d-4c1b-baca-4f019e1bb372", + "status": "ready", + "createdDateTime": "2020-08-20T21:23:09Z", + "lastUpdatedDateTime": "2020-08-20T21:23:17Z" + }, + { + "modelId": "f4a51dde-7357-46f7-b160-1321e8cf6a8e", + "status": "creating", + "createdDateTime": "2020-08-20T21:25:03Z", + "lastUpdatedDateTime": "2020-08-20T21:25:03Z" + }, + { + "modelId": "f5b14d6e-2c12-4a8b-a26b-6f919fb3fc22", + "status": "ready", + "createdDateTime": "2020-08-20T18:27:28Z", + "lastUpdatedDateTime": "2020-08-20T18:27:36Z" + }, + { + "modelId": "f630338a-704f-49e6-90df-3661cdb70919", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:47:48Z", + "lastUpdatedDateTime": "2020-08-20T21:47:49Z" + }, + { + "modelId": "f86960b5-529c-434d-900e-72383c3535bd", + "status": "ready", + "createdDateTime": "2020-08-20T21:27:51Z", + "lastUpdatedDateTime": "2020-08-20T21:27:59Z" + }, + { + "modelId": "f8ec4bc9-ae6d-4ff7-ae5e-5ce9155164cf", + "status": "ready", + "createdDateTime": "2020-08-20T23:32:06Z", + "lastUpdatedDateTime": "2020-08-20T23:32:14Z" + }, + { + "modelId": "f9ad28eb-5fdc-4844-8a72-04a115dd2029", + "status": "creating", + "createdDateTime": "2020-08-20T18:42:49Z", + "lastUpdatedDateTime": "2020-08-20T18:42:49Z" + }, + { + "modelId": "f9eac550-7eab-49e7-ac68-71da7921e50e", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:04Z", + "lastUpdatedDateTime": "2020-10-30T13:24:06Z" + }, + { + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100", + "status": "creating", + "createdDateTime": "2020-10-30T13:19:47Z", + "lastUpdatedDateTime": "2020-10-30T13:19:47Z" + }, + { + "modelId": "fae7acb8-2ffc-40d1-9e07-a2f2af6f54f5", + "status": "ready", + "createdDateTime": "2020-08-20T21:25:43Z", + "lastUpdatedDateTime": "2020-08-20T21:25:54Z" + }, + { + "modelId": "fbc59a11-f373-4f3d-b24c-3e32aa033d7e", + "status": "creating", + "createdDateTime": "2020-08-20T18:42:56Z", + "lastUpdatedDateTime": "2020-08-20T18:42:56Z" + }, + { + "modelId": "fc0d549e-3a1f-4eda-bb96-fb6bf60c0f53", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:47:32Z", + "lastUpdatedDateTime": "2020-08-20T21:47:39Z" + }, + { + "modelId": "fca987e8-8ed2-4c00-8aa4-eeff583bb155", + "status": "creating", + "createdDateTime": "2020-08-20T21:49:40Z", + "lastUpdatedDateTime": "2020-08-20T21:49:40Z" + } + ], + "nextLink": "" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-bf953e1db6ba3b46b16be465f732d16d-676be68fbf08e54f-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9274748d7304d3aae634a68f8773652a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1011d03c-32f4-412f-b3a9-d3304d9d504b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:30:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "summary": { + "count": 267, + "limit": 5000, + "lastUpdatedDateTime": "2020-10-30T13:30:56Z" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-219e03f2b9fa3a419281e41e6dcbde16-411507b9677d5c46-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e2f8ed0a043655cdb97f05f5e8a452ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "apim-request-id": "401aec50-05c6-45b7-94c9-2625c4802bac", + "Content-Length": "0", + "Date": "Fri, 30 Oct 2020 13:30:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/eb44883e-8d7f-45b3-ad73-e5bd93a96ca3?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-8c056eb8d179bd4a85ad6b052a077151-c838c9bb85a8a744-00", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7fb4ee07765dd2f14b775699af38a6ba", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "04749453-1424-49e6-9365-c2047575a554", + "apim-request-id": "83a21dbc-760d-4b02-9a1a-c6c4c9485b98", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:22:15 GMT", + "Date": "Fri, 30 Oct 2020 13:30:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "error": { "code": "1022", - "message": "Model with \u0027id=48d09b9c-b65c-491e-8913-2c0636ad7a0d\u0027 not found." + "message": "Model with \u0027id=eb44883e-8d7f-45b3-ad73-e5bd93a96ca3\u0027 not found." } } } @@ -1499,7 +2571,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1936916989" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True)Async.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True)Async.json index 389e024a8a6c3..b61eaf3aecb3c 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True)Async.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/FormTrainingClientLiveTests/TrainingOps(True)Async.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "42", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ad22bc96cbef1f4fad79955dab5cb277-a331bd1afb0ea042-00", + "traceparent": "00-2c0911aef583a849bb8b0cc2439fc027-e3b30d1f2ca6d84b-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8ca29afae52b4e5f632524e004d6597c", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "f3700a3b-dcf3-418d-97cc-dd11a4779683", + "apim-request-id": "edd122c6-01ab-4647-9a7e-b1a5a2e7a994", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:24:48 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d105b6ec-2f04-43eb-bc3d-fa3a2a687166", + "Date": "Fri, 30 Oct 2020 13:31:58 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "307" + "x-envoy-upstream-service-time": "195" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d105b6ec-2f04-43eb-bc3d-fa3a2a687166?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "000b9ab2fb68b1ff72f7844801daa02a", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ffae612b-f287-4d45-9066-d3ec10349786", + "apim-request-id": "8432d249-bad3-47ed-b8ac-72efe42517f5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:48 GMT", + "Date": "Fri, 30 Oct 2020 13:31:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "modelInfo": { - "modelId": "d105b6ec-2f04-43eb-bc3d-fa3a2a687166", + "modelId": "cee40303-8aaa-418a-b5b4-9055cb5bb4d8", "status": "creating", - "createdDateTime": "2020-09-09T22:24:49Z", - "lastUpdatedDateTime": "2020-09-09T22:24:49Z" + "createdDateTime": "2020-10-30T13:31:58Z", + "lastUpdatedDateTime": "2020-10-30T13:31:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d105b6ec-2f04-43eb-bc3d-fa3a2a687166?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "de97308b99350fe31089dbb411a7730b", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf503f95-0097-401f-bff4-5825f13cd300", + "apim-request-id": "83cf5841-54e1-406a-b4f4-74198781fe47", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:49 GMT", + "Date": "Fri, 30 Oct 2020 13:32:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "d105b6ec-2f04-43eb-bc3d-fa3a2a687166", + "modelId": "cee40303-8aaa-418a-b5b4-9055cb5bb4d8", "status": "creating", - "createdDateTime": "2020-09-09T22:24:49Z", - "lastUpdatedDateTime": "2020-09-09T22:24:49Z" + "createdDateTime": "2020-10-30T13:31:58Z", + "lastUpdatedDateTime": "2020-10-30T13:31:58Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d105b6ec-2f04-43eb-bc3d-fa3a2a687166?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8f641c49fc59fe2f9bf1193361174c88", "x-ms-return-client-request-id": "true" @@ -114,9 +114,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0267c8ce-3bff-444d-9528-0b114842ff6a", + "apim-request-id": "66b9f590-901f-4e68-8149-2b7c704c2b73", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:50 GMT", + "Date": "Fri, 30 Oct 2020 13:32:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -124,13 +124,13 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "d105b6ec-2f04-43eb-bc3d-fa3a2a687166", + "modelId": "cee40303-8aaa-418a-b5b4-9055cb5bb4d8", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:24:49Z", - "lastUpdatedDateTime": "2020-09-09T22:24:51Z" + "createdDateTime": "2020-10-30T13:31:58Z", + "lastUpdatedDateTime": "2020-10-30T13:32:01Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -228,15 +228,15 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d105b6ec-2f04-43eb-bc3d-fa3a2a687166?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f1fcbb22e7ccf14691ae49b5c3d007fa-ee034c8f39cf224b-00", + "traceparent": "00-bf349843b2ecdb4691b30bc5dd014be7-99a0b8f0552ede4c-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d355f9847a3e1947b6fbefdf204a9fcb", "x-ms-return-client-request-id": "true" @@ -244,23 +244,23 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d24c2cb-5b5b-4f33-956a-bfb781a78d8d", + "apim-request-id": "1c0f3971-d8b6-40a5-b88e-6c2340848327", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:51 GMT", + "Date": "Fri, 30 Oct 2020 13:32:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "modelInfo": { - "modelId": "d105b6ec-2f04-43eb-bc3d-fa3a2a687166", + "modelId": "cee40303-8aaa-418a-b5b4-9055cb5bb4d8", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:24:49Z", - "lastUpdatedDateTime": "2020-09-09T22:24:51Z" + "createdDateTime": "2020-10-30T13:31:58Z", + "lastUpdatedDateTime": "2020-10-30T13:32:01Z" }, "trainResult": { "averageModelAccuracy": 0.96, @@ -358,14 +358,14 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?op=full", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=full", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e5ff788410768fd00199434480b0aef9", "x-ms-return-client-request-id": "true" @@ -373,242 +373,280 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83e8d0db-8e66-40fe-8b6e-2332c49bcec3", + "apim-request-id": "0094fd8d-e11f-4bde-a9a0-6463b0daf73e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:51 GMT", + "Date": "Fri, 30 Oct 2020 13:32:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "282" + "x-envoy-upstream-service-time": "307" }, "ResponseBody": { "modelList": [ { - "modelId": "00865e07-158d-471e-9426-01be75f859e0", - "status": "ready", - "createdDateTime": "2020-08-26T17:32:48Z", - "lastUpdatedDateTime": "2020-08-26T17:33:00Z" - }, - { - "modelId": "020b8b8c-c2f6-491b-b01a-ff5993467086", - "status": "ready", - "createdDateTime": "2020-09-09T22:20:27Z", - "lastUpdatedDateTime": "2020-09-09T22:20:40Z" - }, - { - "modelId": "028fea9c-452b-424b-b013-131263f59718", + "modelId": "007c06a2-25ad-48f2-9d13-b104d0d8f1e0", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:23:10Z", - "lastUpdatedDateTime": "2020-09-09T22:23:12Z" + "createdDateTime": "2020-08-20T18:43:30Z", + "lastUpdatedDateTime": "2020-08-20T18:43:32Z" }, { - "modelId": "042854ec-75a6-415c-93ee-53a894149e3d", + "modelId": "01579645-6803-4345-8db9-659c6a1744a0", "status": "ready", - "createdDateTime": "2020-09-09T22:20:52Z", - "lastUpdatedDateTime": "2020-09-09T22:21:02Z" + "createdDateTime": "2020-10-30T13:23:55Z", + "lastUpdatedDateTime": "2020-10-30T13:24:00Z" }, { - "modelId": "052402e5-f6dd-4b4f-a06f-882b793dc037", + "modelId": "01bc0ea9-d7e3-4515-b502-f2b57efb0aa2", "status": "creating", - "createdDateTime": "2020-08-26T17:34:14Z", - "lastUpdatedDateTime": "2020-08-26T17:34:14Z" + "createdDateTime": "2020-08-20T18:44:54Z", + "lastUpdatedDateTime": "2020-08-20T18:44:54Z" }, { - "modelId": "06a29baa-9786-4aab-8b84-a8ea64541595", + "modelId": "01bd21ac-ce1b-4e9f-b1a3-92847479633e", "status": "ready", - "createdDateTime": "2020-08-26T17:34:36Z", - "lastUpdatedDateTime": "2020-08-26T17:34:39Z" + "createdDateTime": "2020-08-20T22:28:00Z", + "lastUpdatedDateTime": "2020-08-20T22:28:09Z" }, { - "modelId": "0d35e818-d64a-40ea-97ac-090610c49e4c", + "modelId": "01ef6d0c-d5c1-4343-bbcd-6add5cda3741", "status": "creating", - "createdDateTime": "2020-08-26T17:50:49Z", - "lastUpdatedDateTime": "2020-08-26T17:50:49Z" + "createdDateTime": "2020-08-17T21:42:37Z", + "lastUpdatedDateTime": "2020-08-17T21:42:37Z" }, { - "modelId": "121c25e5-4890-403d-b427-8abd49dd6a76", + "modelId": "022a3ddc-a723-4df1-bbee-df16b2092efa", "status": "ready", - "createdDateTime": "2020-08-26T17:34:03Z", - "lastUpdatedDateTime": "2020-08-26T17:34:13Z" - }, - { - "modelId": "132f040d-4fa8-4e4f-aab9-c3116eb2d2ec", - "status": "invalid", - "createdDateTime": "2020-09-09T22:20:49Z", - "lastUpdatedDateTime": "2020-09-09T22:20:49Z" + "createdDateTime": "2020-08-14T18:52:29Z", + "lastUpdatedDateTime": "2020-08-14T18:52:37Z" }, { - "modelId": "156a6740-4d04-46ae-94bc-893c8b5d0150", + "modelId": "02f68a79-b056-4f85-9e93-898f8261d55e", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:26:10Z", - "lastUpdatedDateTime": "2020-08-06T23:26:14Z" - }, - { - "modelId": "16ca7224-7d40-4b49-aa42-ac360bfc5d4f", - "status": "creating", - "createdDateTime": "2020-08-26T17:34:22Z", - "lastUpdatedDateTime": "2020-08-26T17:34:22Z" + "createdDateTime": "2020-08-20T18:44:14Z", + "lastUpdatedDateTime": "2020-08-20T18:44:16Z" }, { - "modelId": "16da6907-80c8-4d15-bce6-3eb20128ded2", + "modelId": "031bb91f-b029-4d9e-a165-f9c76dbec981", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, "status": "ready", - "createdDateTime": "2020-08-07T02:43:17Z", - "lastUpdatedDateTime": "2020-08-07T02:43:25Z" + "createdDateTime": "2020-10-30T13:20:47Z", + "lastUpdatedDateTime": "2020-10-30T13:20:48Z" }, { - "modelId": "1945d79d-a224-48d7-b902-f9eb37b2344b", - "status": "creating", - "createdDateTime": "2020-09-09T22:20:44Z", - "lastUpdatedDateTime": "2020-09-09T22:20:44Z" + "modelId": "032312e5-3e29-4a17-8297-96ce181e9ff7", + "status": "ready", + "createdDateTime": "2020-08-20T23:26:25Z", + "lastUpdatedDateTime": "2020-08-20T23:26:33Z" }, { - "modelId": "1c93bdda-7a62-45bc-87dc-03f3f3c55ff6", + "modelId": "0613c81a-b6e2-41f4-94ba-b7d033e07848", "status": "creating", - "createdDateTime": "2020-08-11T23:25:09Z", - "lastUpdatedDateTime": "2020-08-11T23:25:09Z" + "createdDateTime": "2020-08-14T19:44:45Z", + "lastUpdatedDateTime": "2020-08-14T19:44:45Z" }, { - "modelId": "1ca3b63c-814c-40b8-abf4-b20219bd8899", + "modelId": "08500349-8e12-4ecc-b22f-6378fd21a608", "status": "invalid", - "createdDateTime": "2020-08-06T23:22:05Z", - "lastUpdatedDateTime": "2020-08-06T23:22:06Z" - }, - { - "modelId": "1f75f019-19a7-4b14-b035-6d65745646dc", - "status": "creating", - "createdDateTime": "2020-08-26T17:50:52Z", - "lastUpdatedDateTime": "2020-08-26T17:50:52Z" + "createdDateTime": "2020-08-14T19:45:11Z", + "lastUpdatedDateTime": "2020-08-14T19:45:11Z" }, { - "modelId": "2029918d-c322-4d76-9d8d-cd96e9b2e9c4", + "modelId": "09c0ba1d-f88d-4670-ac36-9dc8dc979a1b", "status": "invalid", - "createdDateTime": "2020-08-07T02:32:59Z", - "lastUpdatedDateTime": "2020-08-07T02:33:00Z" + "createdDateTime": "2020-08-20T23:26:11Z", + "lastUpdatedDateTime": "2020-08-20T23:26:11Z" }, { - "modelId": "20e398ce-1056-4042-aa99-73d5e1774d9b", - "status": "ready", - "createdDateTime": "2020-09-09T22:21:06Z", - "lastUpdatedDateTime": "2020-09-09T22:21:19Z" + "modelId": "0b325cdc-5a78-4d79-85f2-f53abaf4f151", + "status": "creating", + "createdDateTime": "2020-08-20T22:45:33Z", + "lastUpdatedDateTime": "2020-08-20T22:45:33Z" }, { - "modelId": "237d9501-9ea9-4d69-acef-36eff1740e5c", + "modelId": "0b32e649-44b9-4842-803d-4ec855514aa7", "status": "ready", - "createdDateTime": "2020-08-26T17:51:23Z", - "lastUpdatedDateTime": "2020-08-26T17:51:32Z" + "createdDateTime": "2020-08-20T21:53:16Z", + "lastUpdatedDateTime": "2020-08-20T21:53:25Z" }, { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "0cad4cc0-ea89-497c-86f0-9b57d2f02517", "status": "ready", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:40Z" + "createdDateTime": "2020-08-20T18:43:46Z", + "lastUpdatedDateTime": "2020-08-20T18:44:00Z" }, { - "modelId": "2610c2a9-c713-4346-970e-1df296686c9d", + "modelId": "0cfe37f7-87fa-4475-a105-1777ea41c6cd", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:53:29Z", - "lastUpdatedDateTime": "2020-08-26T17:53:41Z" + "createdDateTime": "2020-08-20T21:49:12Z", + "lastUpdatedDateTime": "2020-08-20T21:49:19Z" }, { - "modelId": "26581cd0-1275-4e90-b0d5-7a927cbd84a2", + "modelId": "0d93d3a5-9024-479c-827b-859d0bd7c006", "status": "creating", - "createdDateTime": "2020-09-09T22:20:41Z", - "lastUpdatedDateTime": "2020-09-09T22:20:41Z" + "createdDateTime": "2020-08-17T17:15:56Z", + "lastUpdatedDateTime": "2020-08-17T17:15:56Z" }, { - "modelId": "27a877ec-0f51-4d1a-b159-36f68a7e3828", + "modelId": "0da54f9c-ef82-4d08-9011-ffe4d3c02447", "status": "creating", - "createdDateTime": "2020-09-09T22:23:43Z", - "lastUpdatedDateTime": "2020-09-09T22:23:43Z" + "createdDateTime": "2020-08-14T19:46:50Z", + "lastUpdatedDateTime": "2020-08-14T19:46:50Z" }, { - "modelId": "29b1506d-77ee-4aa1-8b82-6430edc36784", + "modelId": "0ea70033-e01f-4365-b890-839c2a628ea7", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-07T02:33:00Z", - "lastUpdatedDateTime": "2020-08-07T02:33:04Z" + "createdDateTime": "2020-08-20T22:43:43Z", + "lastUpdatedDateTime": "2020-08-20T22:43:44Z" }, { - "modelId": "29c77b2a-64f4-4f7e-8543-eb5a1fbcd472", + "modelId": "0ef04b5c-64f9-4e63-986c-ffdb85804382", "status": "invalid", - "createdDateTime": "2020-08-26T17:53:06Z", - "lastUpdatedDateTime": "2020-08-26T17:53:07Z" + "createdDateTime": "2020-10-30T13:23:53Z", + "lastUpdatedDateTime": "2020-10-30T13:23:54Z" }, { - "modelId": "2aa3789f-9d11-450f-861d-f39a4e8a6485", + "modelId": "0fd3cd6d-4782-4f5e-bb8f-319394c848dd", "status": "ready", - "createdDateTime": "2020-09-09T22:23:53Z", - "lastUpdatedDateTime": "2020-09-09T22:24:03Z" + "createdDateTime": "2020-08-20T18:43:21Z", + "lastUpdatedDateTime": "2020-08-20T18:43:24Z" }, { - "modelId": "35afdcd3-5b1e-4a30-bfc0-50bbbc909623", + "modelId": "102e5b73-5b01-431e-bfce-ca83ebc47c05", "status": "ready", - "createdDateTime": "2020-08-07T02:38:59Z", - "lastUpdatedDateTime": "2020-08-07T02:39:02Z" + "createdDateTime": "2020-08-20T22:49:46Z", + "lastUpdatedDateTime": "2020-08-20T22:49:55Z" }, { - "modelId": "35db4c6a-7d0b-4f5e-a9b4-2ad3bfd6b98d", - "status": "invalid", - "createdDateTime": "2020-08-06T23:21:58Z", - "lastUpdatedDateTime": "2020-08-06T23:21:59Z" + "modelId": "1034ef53-16b6-492b-a511-2a89e5326349", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:13:32Z", + "lastUpdatedDateTime": "2020-10-30T13:13:34Z" }, { - "modelId": "3b22a35d-b881-4d75-85cb-852c6ec9a825", + "modelId": "1127179b-ee78-46d0-a51a-ca8a088ec177", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:34:41Z", - "lastUpdatedDateTime": "2020-08-26T17:34:42Z" + "createdDateTime": "2020-08-20T18:42:19Z", + "lastUpdatedDateTime": "2020-08-20T18:42:21Z" + }, + { + "modelId": "11eb2552-c707-43f3-a673-897433da9f66", + "status": "invalid", + "createdDateTime": "2020-08-20T21:25:24Z", + "lastUpdatedDateTime": "2020-08-20T21:25:24Z" }, { - "modelId": "3d3e2947-66a2-477b-8ec5-d732ab144946", + "modelId": "1239ac73-a1ba-43a8-b725-6118c6c4cb7d", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-19T20:22:50Z", - "lastUpdatedDateTime": "2020-08-19T20:22:52Z" + "createdDateTime": "2020-08-20T21:08:03Z", + "lastUpdatedDateTime": "2020-08-20T21:08:10Z" }, { - "modelId": "3d5aa64d-b058-4ae8-8793-2b80b085f0bc", - "status": "invalid", - "createdDateTime": "2020-08-26T17:51:05Z", - "lastUpdatedDateTime": "2020-08-26T17:51:06Z" + "modelId": "12b12b23-10d3-4efa-927b-8b79c153099a", + "status": "creating", + "createdDateTime": "2020-08-14T19:10:34Z", + "lastUpdatedDateTime": "2020-08-14T19:10:34Z" + }, + { + "modelId": "154eaf28-bbe8-4ef9-ba02-c396de5390bc", + "status": "creating", + "createdDateTime": "2020-10-30T13:22:45Z", + "lastUpdatedDateTime": "2020-10-30T13:22:45Z" + }, + { + "modelId": "17c078da-8f4e-4376-923a-7672a8a621ab", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:47:37Z", + "lastUpdatedDateTime": "2020-08-14T19:47:38Z" }, { - "modelId": "3f87db49-3554-4a2c-a9fa-7bb97c1ff995", + "modelId": "17e8374c-6cd4-40d7-8d33-8fa52286a883", "status": "ready", - "createdDateTime": "2020-08-07T02:39:06Z", - "lastUpdatedDateTime": "2020-08-07T02:39:17Z" + "createdDateTime": "2020-08-20T22:06:19Z", + "lastUpdatedDateTime": "2020-08-20T22:06:29Z" }, { - "modelId": "3f8e97ff-0f71-42a2-bee1-3a9a76a3b5d6", + "modelId": "18cb6b55-f009-4df2-8d56-ab423d29d5c4", "status": "ready", - "createdDateTime": "2020-08-26T17:36:40Z", - "lastUpdatedDateTime": "2020-08-26T17:36:49Z" + "createdDateTime": "2020-08-20T22:43:20Z", + "lastUpdatedDateTime": "2020-08-20T22:43:23Z" }, { - "modelId": "3fea230b-4ac7-4835-b7f3-f874c5fb5b0f", + "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", "status": "ready", - "createdDateTime": "2020-08-06T23:15:17Z", - "lastUpdatedDateTime": "2020-08-06T23:15:25Z" + "createdDateTime": "2020-08-20T21:25:32Z", + "lastUpdatedDateTime": "2020-08-20T21:25:40Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzNmZWEyMzBiLTRhYzctNDgzNS1iN2YzLWY4NzRjNWZiNWIwZi8zZmVhMjMwYi00YWM3LTQ4MzUtYjdmMy1mODc0YzVmYjViMGYuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "172f533c9f51cfccd44bd95e0c50de50", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "dd31d042-b0bc-414c-9089-6815faeff7c3", + "Content-Length": "357", + "Content-Type": "application/json", + "Date": "Fri, 30 Oct 2020 13:32:03 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." + } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzNmZWEyMzBiLTRhYzctNDgzNS1iN2YzLWY4NzRjNWZiNWIwZi8zZmVhMjMwYi00YWM3LTQ4MzUtYjdmMy1mODc0YzVmYjViMGYuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzFiOThmODUzLWNhMTEtNDY5OC04ZGZjLTQ3YzE3Mjc4MThjZi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "172f533c9f51cfccd44bd95e0c50de50", "x-ms-return-client-request-id": "true" @@ -616,245 +654,273 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0af803f9-2aeb-42ef-9f4c-b37eb2f55086", + "apim-request-id": "f93e09c5-8808-4a10-bf5b-160108a2f47a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:51 GMT", + "Date": "Fri, 30 Oct 2020 13:32:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "356" + "x-envoy-upstream-service-time": "405" }, "ResponseBody": { "modelList": [ { - "modelId": "3fea230b-4ac7-4835-b7f3-f874c5fb5b0f", + "modelId": "1b98f853-ca11-4698-8dfc-47c1727818cf", "status": "ready", - "createdDateTime": "2020-08-06T23:15:17Z", - "lastUpdatedDateTime": "2020-08-06T23:15:25Z" + "createdDateTime": "2020-08-20T21:25:32Z", + "lastUpdatedDateTime": "2020-08-20T21:25:40Z" }, { - "modelId": "4644f514-2bf6-49d7-b77d-2e8489e5a15e", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-26T17:50:27Z", - "lastUpdatedDateTime": "2020-08-26T17:50:30Z" - }, - { - "modelId": "4658c32f-ffb8-43cf-895d-c4e64ee60105", - "status": "ready", - "createdDateTime": "2020-08-26T17:37:27Z", - "lastUpdatedDateTime": "2020-08-26T17:37:36Z" + "modelId": "1bf14c97-93e2-44ee-9ac6-a11478fc33da", + "status": "creating", + "createdDateTime": "2020-08-20T23:28:45Z", + "lastUpdatedDateTime": "2020-08-20T23:28:45Z" }, { - "modelId": "49702f1d-c4d1-4adb-9201-0e3160e2c8c5", + "modelId": "1cba0c75-0acd-4ff0-9a06-02fd708ebd0b", "status": "creating", - "createdDateTime": "2020-08-06T23:21:04Z", - "lastUpdatedDateTime": "2020-08-06T23:21:04Z" + "createdDateTime": "2020-08-14T19:46:51Z", + "lastUpdatedDateTime": "2020-08-14T19:46:51Z" }, { - "modelId": "4ae452c7-4160-4aa5-8820-3ac11b452561", - "status": "creating", - "createdDateTime": "2020-08-06T23:21:21Z", - "lastUpdatedDateTime": "2020-08-06T23:21:21Z" + "modelId": "1cc4fde0-89ac-4b67-b537-1fcf6275fe8e", + "status": "ready", + "createdDateTime": "2020-08-20T23:29:22Z", + "lastUpdatedDateTime": "2020-08-20T23:29:30Z" }, { - "modelId": "4f7977d8-d301-44d0-9b24-1fb3480c745b", + "modelId": "1f2bca7f-9bf8-4138-8a4c-53c03c3c8f55", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T03:33:10Z", - "lastUpdatedDateTime": "2020-09-09T03:33:12Z" - }, - { - "modelId": "52fcf54f-2507-47f4-b8c1-d86e91143f28", - "status": "ready", - "createdDateTime": "2020-08-07T02:41:59Z", - "lastUpdatedDateTime": "2020-08-07T02:42:08Z" - }, - { - "modelId": "53df4b19-55cf-447a-98ea-3b85c3b2c098", - "status": "ready", - "createdDateTime": "2020-08-07T02:38:49Z", - "lastUpdatedDateTime": "2020-08-07T02:38:58Z" + "createdDateTime": "2020-08-20T21:46:19Z", + "lastUpdatedDateTime": "2020-08-20T21:46:26Z" }, { - "modelId": "55897d03-168d-412f-8de7-3daa009cacb5", - "status": "ready", - "createdDateTime": "2020-08-06T23:20:33Z", - "lastUpdatedDateTime": "2020-08-06T23:20:36Z" - }, - { - "modelId": "5630148f-2da4-4e14-a6f1-95f6944e72f1", - "status": "ready", - "createdDateTime": "2020-09-09T22:23:21Z", - "lastUpdatedDateTime": "2020-09-09T22:23:35Z" - }, - { - "modelId": "56b12cb9-da45-499c-a840-a357b5d263da", - "status": "ready", - "createdDateTime": "2020-08-07T02:34:32Z", - "lastUpdatedDateTime": "2020-08-07T02:34:40Z" + "modelId": "1fd33a7f-9726-4d73-a737-5e4a3016d7ad", + "status": "invalid", + "createdDateTime": "2020-08-14T19:47:13Z", + "lastUpdatedDateTime": "2020-08-14T19:47:13Z" }, { - "modelId": "571764d5-7433-4ce3-b421-cc62bd2e6399", - "attributes": { - "isComposed": false - }, + "modelId": "20cbcc4d-191f-4c74-aac5-ecc2e3d959e6", "status": "ready", - "createdDateTime": "2020-08-26T17:51:34Z", - "lastUpdatedDateTime": "2020-08-26T17:51:35Z" + "createdDateTime": "2020-08-20T23:25:30Z", + "lastUpdatedDateTime": "2020-08-20T23:25:38Z" }, { - "modelId": "5818a965-88b3-4737-bd4a-3e04f28f9b99", + "modelId": "24307288-59a3-4cf8-b5c3-cc981928dc5d", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-08T23:38:46Z", - "lastUpdatedDateTime": "2020-09-08T23:38:53Z" + "createdDateTime": "2020-08-20T21:23:00Z", + "lastUpdatedDateTime": "2020-08-20T21:23:08Z" }, { - "modelId": "591d1226-2f87-4f71-88eb-1d516adf80c2", - "status": "ready", - "createdDateTime": "2020-08-26T17:35:39Z", - "lastUpdatedDateTime": "2020-08-26T17:35:49Z" + "modelId": "25365575-b6ce-4351-add0-b3c5b6f68ad0", + "status": "creating", + "createdDateTime": "2020-08-20T22:45:28Z", + "lastUpdatedDateTime": "2020-08-20T22:45:28Z" }, { - "modelId": "5caa8c69-5ae7-4948-9274-d72806c35838", + "modelId": "253f0935-8a68-4425-88ca-9804d7ef40a4", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:24:04Z", - "lastUpdatedDateTime": "2020-09-09T22:24:07Z" - }, - { - "modelId": "5d123f4a-fdda-4e34-9605-8bcdafc786c8", - "status": "ready", - "createdDateTime": "2020-08-26T17:34:43Z", - "lastUpdatedDateTime": "2020-08-26T17:34:54Z" + "createdDateTime": "2020-08-14T19:11:18Z", + "lastUpdatedDateTime": "2020-08-14T19:11:20Z" }, { - "modelId": "5d9e3a2f-ed7f-418c-b345-82ac311de989", + "modelId": "26e8eb28-909b-4a5e-b10d-c862e0dde861", "status": "ready", - "createdDateTime": "2020-08-11T23:26:55Z", - "lastUpdatedDateTime": "2020-08-11T23:26:58Z" + "createdDateTime": "2020-08-20T22:45:55Z", + "lastUpdatedDateTime": "2020-08-20T22:46:01Z" }, { - "modelId": "5e68fb32-de1c-4d27-8e1a-f94c61cc84ca", - "status": "ready", - "createdDateTime": "2020-08-11T23:26:45Z", - "lastUpdatedDateTime": "2020-08-11T23:26:54Z" + "modelId": "272021b8-def8-48d8-8b89-10b3664b4dd4", + "status": "creating", + "createdDateTime": "2020-08-20T18:44:54Z", + "lastUpdatedDateTime": "2020-08-20T18:44:54Z" }, { - "modelId": "624a60c7-fef9-4b10-8898-5f0d7fa432a9", + "modelId": "27bc87a8-6ef8-4e41-b023-22f3484a078b", "status": "ready", - "createdDateTime": "2020-09-09T22:24:08Z", - "lastUpdatedDateTime": "2020-09-09T22:24:22Z" + "createdDateTime": "2020-08-14T19:29:45Z", + "lastUpdatedDateTime": "2020-08-14T19:29:52Z" }, { - "modelId": "6769e2e4-5272-4ea4-b294-72e4dcdcbd8f", + "modelId": "2800da27-3d69-4333-bd95-e9b217732660", "status": "creating", - "createdDateTime": "2020-08-07T02:32:12Z", - "lastUpdatedDateTime": "2020-08-07T02:32:12Z" + "createdDateTime": "2020-10-30T13:22:42Z", + "lastUpdatedDateTime": "2020-10-30T13:22:42Z" }, { - "modelId": "67e57c2c-d232-4245-a4a8-8c42b4e37582", + "modelId": "284f716b-a8a0-4333-9ad5-6be8b981ce79", "status": "creating", - "createdDateTime": "2020-09-09T22:23:36Z", - "lastUpdatedDateTime": "2020-09-09T22:23:36Z" + "createdDateTime": "2020-08-17T21:43:17Z", + "lastUpdatedDateTime": "2020-08-17T21:43:17Z" }, { - "modelId": "692430a0-bb79-4deb-9012-32cdddbae457", + "modelId": "28cd0f90-8143-48e9-85b2-baf4b2cc4a8f", "status": "creating", - "createdDateTime": "2020-08-26T17:32:14Z", - "lastUpdatedDateTime": "2020-08-26T17:32:14Z" + "createdDateTime": "2020-08-20T21:22:36Z", + "lastUpdatedDateTime": "2020-08-20T21:22:36Z" }, { - "modelId": "6a0b22c7-f9d2-4122-b5ef-181577d60ba9", + "modelId": "2a023ee3-7a0c-42ee-9946-571124631d68", "status": "ready", - "createdDateTime": "2020-08-07T02:38:25Z", - "lastUpdatedDateTime": "2020-08-07T02:38:29Z" + "createdDateTime": "2020-08-20T21:51:49Z", + "lastUpdatedDateTime": "2020-08-20T21:51:58Z" }, { - "modelId": "6a48b90c-4f90-405d-b7ea-399f5e42a9b1", + "modelId": "2a3fb884-1ef3-462c-bd28-0684e728d55a", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:31:45Z", - "lastUpdatedDateTime": "2020-08-26T17:31:46Z" + "createdDateTime": "2020-08-20T18:45:27Z", + "lastUpdatedDateTime": "2020-08-20T18:45:28Z" }, { - "modelId": "6b2e9fcb-1dce-4436-96d4-1698750f1385", + "modelId": "2d0d3ec2-c813-4840-837a-65e3f14a4fd7", "status": "ready", - "createdDateTime": "2020-08-07T02:40:43Z", - "lastUpdatedDateTime": "2020-08-07T02:41:00Z" + "createdDateTime": "2020-08-20T21:25:26Z", + "lastUpdatedDateTime": "2020-08-20T21:25:30Z" }, { - "modelId": "6b9496bb-2670-401d-9805-14772a73a399", + "modelId": "2e076466-b041-4a9b-a7a9-41910a16e328", "status": "ready", - "createdDateTime": "2020-08-07T02:31:22Z", - "lastUpdatedDateTime": "2020-08-07T02:31:29Z" + "createdDateTime": "2020-10-30T13:21:15Z", + "lastUpdatedDateTime": "2020-10-30T13:21:26Z" }, { - "modelId": "6e2281f4-8a46-4578-a89b-47a6ba1d4b4b", - "status": "invalid", - "createdDateTime": "2020-09-09T22:23:51Z", - "lastUpdatedDateTime": "2020-09-09T22:23:51Z" + "modelId": "2e36a220-b90f-4d5d-80d9-ef061bc341a8", + "status": "ready", + "createdDateTime": "2020-10-30T13:24:13Z", + "lastUpdatedDateTime": "2020-10-30T13:24:25Z" }, { - "modelId": "7087ab96-2bfe-4ee2-b589-8ba3277705cc", - "status": "invalid", - "createdDateTime": "2020-09-09T22:20:50Z", - "lastUpdatedDateTime": "2020-09-09T22:20:51Z" + "modelId": "2fb4524b-3239-45c6-a9c0-4667b16ab72e", + "status": "creating", + "createdDateTime": "2020-08-20T18:42:49Z", + "lastUpdatedDateTime": "2020-08-20T18:42:49Z" }, { - "modelId": "73323aac-41dc-4c87-8ed1-a0163184fcf6", + "modelId": "32a70028-9497-4938-b27d-a46c07315800", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:21:20Z", - "lastUpdatedDateTime": "2020-09-09T22:21:22Z" + "createdDateTime": "2020-08-20T21:50:08Z", + "lastUpdatedDateTime": "2020-08-20T21:50:10Z" + }, + { + "modelId": "33921c16-6dd2-4666-aaed-3863b28e0eeb", + "status": "creating", + "createdDateTime": "2020-08-14T19:10:34Z", + "lastUpdatedDateTime": "2020-08-14T19:10:34Z" + }, + { + "modelId": "34c52af3-ce6c-465c-9fc0-797f8b6dcfdc", + "status": "ready", + "createdDateTime": "2020-08-14T19:08:14Z", + "lastUpdatedDateTime": "2020-08-14T19:08:22Z" + }, + { + "modelId": "34d0ed4c-634b-4626-ae4a-4472f3740b79", + "status": "creating", + "createdDateTime": "2020-10-30T13:19:43Z", + "lastUpdatedDateTime": "2020-10-30T13:19:43Z" + }, + { + "modelId": "35238cbc-5c0b-4ae6-b19d-779568d5c3af", + "status": "ready", + "createdDateTime": "2020-08-20T21:06:49Z", + "lastUpdatedDateTime": "2020-08-20T21:06:57Z" + }, + { + "modelId": "35a3d57f-d630-437e-85cf-14f0a6ed1f29", + "status": "ready", + "createdDateTime": "2020-08-14T19:44:36Z", + "lastUpdatedDateTime": "2020-08-14T19:44:44Z" }, { - "modelId": "757dfe38-07b3-48c4-ab0c-86839b172f24", + "modelId": "361ba8b7-61d0-4051-ba20-2dac77a428ef", "status": "ready", - "createdDateTime": "2020-08-06T23:16:31Z", - "lastUpdatedDateTime": "2020-08-06T23:16:33Z" + "createdDateTime": "2020-08-14T18:52:29Z", + "lastUpdatedDateTime": "2020-08-14T18:52:37Z" + }, + { + "modelId": "362283cc-f24c-49d6-9bf1-a711a9621e65", + "status": "creating", + "createdDateTime": "2020-10-30T13:22:42Z", + "lastUpdatedDateTime": "2020-10-30T13:22:42Z" }, { - "modelId": "78ee6951-7b9b-45bc-9da2-b8c6964d6f5f", + "modelId": "37cbc664-e1aa-4fc1-b73e-d241dec98dfe", "status": "invalid", - "createdDateTime": "2020-08-26T17:34:34Z", - "lastUpdatedDateTime": "2020-08-26T17:34:34Z" + "createdDateTime": "2020-08-20T21:25:25Z", + "lastUpdatedDateTime": "2020-08-20T21:25:26Z" }, { - "modelId": "7dc2909e-615d-48aa-8e59-d008292881cd", - "attributes": { - "isComposed": false - }, + "modelId": "38d1e2ad-b058-4dfe-bb00-797b4f6ef957", + "status": "creating", + "createdDateTime": "2020-08-20T22:42:57Z", + "lastUpdatedDateTime": "2020-08-20T22:42:57Z" + }, + { + "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", "status": "ready", - "createdDateTime": "2020-08-26T17:33:01Z", - "lastUpdatedDateTime": "2020-08-26T17:33:03Z" + "createdDateTime": "2020-08-20T22:46:04Z", + "lastUpdatedDateTime": "2020-08-20T22:46:12Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzdlZGFkOGRiLTE4ZjItNDFhZi05YmZjLWIxODAxZWVhM2ZlYS83ZWRhZDhkYi0xOGYyLTQxYWYtOWJmYy1iMTgwMWVlYTNmZWEuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e8ae4d516718741228c6d2a536039905", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "6b27d25c-6294-4ea1-a53f-32de726ad5b9", + "Content-Length": "358", + "Content-Type": "application/json", + "Date": "Fri, 30 Oct 2020 13:32:12 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 seconds. Please contact Azure support service if you would like to further increase the default rate limit." + } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzLzdlZGFkOGRiLTE4ZjItNDFhZi05YmZjLWIxODAxZWVhM2ZlYS83ZWRhZDhkYi0xOGYyLTQxYWYtOWJmYy1iMTgwMWVlYTNmZWEuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!196!MDAwMTAzIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzM5OTc0ZGVlLWEyNmMtNDJjOC04MGQ2LTVhMzVlYWQ1OGNhMy92ZXJzaW9uLXYyLjAhMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e8ae4d516718741228c6d2a536039905", "x-ms-return-client-request-id": "true" @@ -862,254 +928,242 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f7a212c-c2a5-4b44-ad6d-686086849959", + "apim-request-id": "73c0bc7c-4a78-411c-94ff-04dc248879aa", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:52 GMT", + "Date": "Fri, 30 Oct 2020 13:32:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "365" + "x-envoy-upstream-service-time": "464" }, "ResponseBody": { "modelList": [ { - "modelId": "7edad8db-18f2-41af-9bfc-b1801eea3fea", - "status": "creating", - "createdDateTime": "2020-08-19T20:19:47Z", - "lastUpdatedDateTime": "2020-08-19T20:19:47Z" - }, - { - "modelId": "80f764e0-6f63-4926-8895-2b3ff0624e07", - "status": "invalid", - "createdDateTime": "2020-08-11T23:26:26Z", - "lastUpdatedDateTime": "2020-08-11T23:26:27Z" - }, - { - "modelId": "85aebc18-2ff1-4539-8b64-04638f9c4042", - "status": "invalid", - "createdDateTime": "2020-08-11T23:26:23Z", - "lastUpdatedDateTime": "2020-08-11T23:26:26Z" - }, - { - "modelId": "87408940-0c48-48b8-aff2-42af068cd40f", - "status": "creating", - "createdDateTime": "2020-08-07T02:35:13Z", - "lastUpdatedDateTime": "2020-08-07T02:35:13Z" + "modelId": "39974dee-a26c-42c8-80d6-5a35ead58ca3", + "status": "ready", + "createdDateTime": "2020-08-20T22:46:04Z", + "lastUpdatedDateTime": "2020-08-20T22:46:12Z" }, { - "modelId": "8826958b-526d-430f-9c09-194f2cd36802", + "modelId": "3af295a0-785e-4567-bba5-54797c4aa61d", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-11T23:26:58Z", - "lastUpdatedDateTime": "2020-08-11T23:27:08Z" + "createdDateTime": "2020-08-20T21:23:19Z", + "lastUpdatedDateTime": "2020-08-20T21:23:20Z" }, { - "modelId": "8a019169-da20-4578-83f4-33b75ae85a80", + "modelId": "3d445599-3e82-43bb-ad48-241788aec3b9", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-11T23:25:43Z", - "lastUpdatedDateTime": "2020-08-11T23:25:53Z" + "createdDateTime": "2020-08-20T22:42:25Z", + "lastUpdatedDateTime": "2020-08-20T22:42:32Z" }, { - "modelId": "8b8035e6-3130-423e-97dd-dc4a95d7e553", + "modelId": "3d452732-d856-4579-bb92-817af8438a2f", "status": "ready", - "createdDateTime": "2020-08-26T17:36:30Z", - "lastUpdatedDateTime": "2020-08-26T17:36:39Z" + "createdDateTime": "2020-10-30T13:21:38Z", + "lastUpdatedDateTime": "2020-10-30T13:21:50Z" }, { - "modelId": "8e1873bf-beee-4698-8eb0-dfac5de174cf", + "modelId": "3e5d1032-b968-458c-901f-7daa543210a7", "status": "ready", - "createdDateTime": "2020-08-06T23:22:44Z", - "lastUpdatedDateTime": "2020-08-06T23:22:56Z" + "createdDateTime": "2020-08-14T19:49:17Z", + "lastUpdatedDateTime": "2020-08-14T19:49:25Z" }, { - "modelId": "948a86a3-4ecd-453a-9a93-d0ec4d431a46", + "modelId": "3efd32fe-763f-4cca-a58b-2fa57d13dc83", "status": "creating", - "createdDateTime": "2020-08-11T23:25:53Z", - "lastUpdatedDateTime": "2020-08-11T23:25:53Z" + "createdDateTime": "2020-08-17T17:15:30Z", + "lastUpdatedDateTime": "2020-08-17T17:15:30Z" }, { - "modelId": "94d121f1-9b81-4218-b178-30fbb62ef533", - "status": "ready", - "createdDateTime": "2020-08-26T17:32:03Z", - "lastUpdatedDateTime": "2020-08-26T17:32:13Z" + "modelId": "40152914-610e-47f8-b6c6-8c155df7650e", + "status": "creating", + "createdDateTime": "2020-08-20T22:45:46Z", + "lastUpdatedDateTime": "2020-08-20T22:45:46Z" }, { - "modelId": "94fb7913-80d7-4145-9375-b9b5073544ec", + "modelId": "40383a51-dfe6-4c51-9c4c-e3d5ad3a662b", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-06T23:15:17Z", - "lastUpdatedDateTime": "2020-08-06T23:15:25Z" + "createdDateTime": "2020-10-30T13:21:35Z", + "lastUpdatedDateTime": "2020-10-30T13:21:37Z" }, { - "modelId": "95b47659-413f-4f9c-9fc0-cea2d98c1099", - "status": "creating", - "createdDateTime": "2020-08-26T17:34:14Z", - "lastUpdatedDateTime": "2020-08-26T17:34:14Z" - }, - { - "modelId": "979a5681-2776-4f26-ac8c-9cc6a96c8e52", + "modelId": "4120e08d-2693-4f80-a69f-53029d556457", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:54:11Z", - "lastUpdatedDateTime": "2020-08-26T17:54:22Z" + "createdDateTime": "2020-08-20T23:29:31Z", + "lastUpdatedDateTime": "2020-08-20T23:29:38Z" }, { - "modelId": "981536fe-92a5-4a10-9f07-f589ebbc42ef", - "status": "creating", - "createdDateTime": "2020-08-07T02:32:17Z", - "lastUpdatedDateTime": "2020-08-07T02:32:17Z" + "modelId": "412a541e-6015-4ba3-bc06-bda9dcfb4563", + "status": "ready", + "createdDateTime": "2020-08-20T21:28:50Z", + "lastUpdatedDateTime": "2020-08-20T21:28:58Z" }, { - "modelId": "99b6c3e3-1b40-4971-b625-94e22c62a258", + "modelId": "41dcd3b4-7da4-4947-afc2-8267342bf8d3", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:19:56Z", - "lastUpdatedDateTime": "2020-09-09T22:19:58Z" + "createdDateTime": "2020-08-14T19:08:56Z", + "lastUpdatedDateTime": "2020-08-14T19:08:58Z" }, { - "modelId": "99cab2af-1ebf-4587-a557-24a99abf6784", + "modelId": "42ca775f-ce05-4794-9afa-1206f9ec4e4b", "status": "ready", - "createdDateTime": "2020-08-06T23:22:22Z", - "lastUpdatedDateTime": "2020-08-06T23:22:34Z" + "createdDateTime": "2020-08-14T19:28:36Z", + "lastUpdatedDateTime": "2020-08-14T19:28:44Z" }, { - "modelId": "9e99bc89-72c1-4839-9c47-4f4e07c9c277", - "status": "creating", - "createdDateTime": "2020-08-06T23:21:04Z", - "lastUpdatedDateTime": "2020-08-06T23:21:04Z" + "modelId": "4363499c-72ab-45b2-8931-d8b1838bef70", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:26:34Z", + "lastUpdatedDateTime": "2020-08-20T23:26:41Z" }, { - "modelId": "a11162bf-bfbc-461e-a41a-125bae4f0027", + "modelId": "438b68f8-bec6-4313-88d6-43f201f64e26", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-07T02:38:37Z", - "lastUpdatedDateTime": "2020-08-07T02:38:40Z" + "createdDateTime": "2020-08-20T21:22:10Z", + "lastUpdatedDateTime": "2020-08-20T21:22:12Z" }, { - "modelId": "a2ddc891-9980-454d-b876-20347c4fe2e1", - "status": "creating", - "createdDateTime": "2020-08-26T17:50:49Z", - "lastUpdatedDateTime": "2020-08-26T17:50:49Z" + "modelId": "43bc2d9d-10f1-4466-be33-546ae07a7a28", + "status": "ready", + "createdDateTime": "2020-10-30T13:24:37Z", + "lastUpdatedDateTime": "2020-10-30T13:24:49Z" }, { - "modelId": "a2f07e6c-08bc-4d5e-bda1-f2895ceebeef", + "modelId": "43be25f8-aa98-4523-ab6b-120e4b29c7bf", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:32:40Z", - "lastUpdatedDateTime": "2020-08-26T17:32:47Z" + "createdDateTime": "2020-10-30T13:22:18Z", + "lastUpdatedDateTime": "2020-10-30T13:22:19Z" }, { - "modelId": "a3ac9510-b86f-45a6-adf1-bb6e189cd5e8", - "status": "ready", - "createdDateTime": "2020-08-06T23:22:12Z", - "lastUpdatedDateTime": "2020-08-06T23:22:15Z" + "modelId": "44cf7b0c-17d8-461b-8a14-972532fcf6d6", + "status": "creating", + "createdDateTime": "2020-08-17T22:30:19Z", + "lastUpdatedDateTime": "2020-08-17T22:30:19Z" }, { - "modelId": "a3fdcfd1-2c5c-4c67-9038-1c4429ed69c4", - "status": "invalid", - "createdDateTime": "2020-08-26T17:34:32Z", - "lastUpdatedDateTime": "2020-08-26T17:34:33Z" + "modelId": "44d3f221-a1ad-4726-a5f5-43bc37fe7222", + "status": "ready", + "createdDateTime": "2020-08-20T22:45:18Z", + "lastUpdatedDateTime": "2020-08-20T22:45:27Z" }, { - "modelId": "a50e5ae0-6af6-4087-92da-845e12c71655", - "status": "ready", - "createdDateTime": "2020-08-26T17:52:35Z", - "lastUpdatedDateTime": "2020-08-26T17:52:46Z" + "modelId": "4559697f-580d-439c-a336-1272be0526f9", + "status": "invalid", + "createdDateTime": "2020-10-30T13:20:53Z", + "lastUpdatedDateTime": "2020-10-30T13:20:54Z" }, { - "modelId": "a5583bd4-9d64-4971-a4e3-ad202a2f1711", - "status": "ready", - "createdDateTime": "2020-08-07T02:33:05Z", - "lastUpdatedDateTime": "2020-08-07T02:33:09Z" + "modelId": "45c5498b-3755-44fd-95d5-8d5b5924e3a6", + "status": "invalid", + "createdDateTime": "2020-08-20T22:43:19Z", + "lastUpdatedDateTime": "2020-08-20T22:43:19Z" }, { - "modelId": "a59ea0d6-3fa4-4879-91f9-f83319790278", + "modelId": "45f1adde-a451-4746-a675-f0ebb166151b", "status": "creating", - "createdDateTime": "2020-08-17T23:02:26Z", - "lastUpdatedDateTime": "2020-08-17T23:02:26Z" + "createdDateTime": "2020-08-20T21:47:08Z", + "lastUpdatedDateTime": "2020-08-20T21:47:08Z" }, { - "modelId": "a646e66b-c795-470b-a59d-ed208e8107c4", + "modelId": "46201f03-7ffc-4e1e-bd07-a48bb6bccad4", "status": "creating", - "createdDateTime": "2020-08-07T02:32:39Z", - "lastUpdatedDateTime": "2020-08-07T02:32:39Z" + "createdDateTime": "2020-08-14T19:08:23Z", + "lastUpdatedDateTime": "2020-08-14T19:08:23Z" }, { - "modelId": "a72d7916-ab9f-4c63-aa32-79ffed1bb391", + "modelId": "46a86632-ff1f-4e80-bd06-6c8d48af3157", "status": "ready", - "createdDateTime": "2020-08-07T02:33:27Z", - "lastUpdatedDateTime": "2020-08-07T02:34:01Z" - }, - { - "modelId": "a767b61b-330f-4e9a-ae21-2bdc75c3d7d6", - "status": "creating", - "createdDateTime": "2020-09-09T22:23:36Z", - "lastUpdatedDateTime": "2020-09-09T22:23:36Z" + "createdDateTime": "2020-08-20T18:44:45Z", + "lastUpdatedDateTime": "2020-08-20T18:44:53Z" }, { - "modelId": "a7bc5b1f-af0b-449a-bcd1-3daef200c131", - "status": "invalid", - "createdDateTime": "2020-08-06T23:21:39Z", - "lastUpdatedDateTime": "2020-08-06T23:21:53Z" + "modelId": "47a7b4cd-d993-4d83-b6ca-ee18c547acfb", + "status": "ready", + "createdDateTime": "2020-08-20T22:49:07Z", + "lastUpdatedDateTime": "2020-08-20T22:49:16Z" }, { - "modelId": "a87b6655-71cb-481b-bedd-bdca02704320", + "modelId": "488d74c6-25ae-4271-b7e5-cff85e10abc4", "status": "ready", - "createdDateTime": "2020-08-26T17:55:11Z", - "lastUpdatedDateTime": "2020-08-26T17:55:20Z" + "createdDateTime": "2020-08-20T18:26:04Z", + "lastUpdatedDateTime": "2020-08-20T18:26:12Z" }, { - "modelId": "a9643e41-d890-434b-a3ea-d5f9de22a81b", - "status": "creating", - "createdDateTime": "2020-08-26T17:52:47Z", - "lastUpdatedDateTime": "2020-08-26T17:52:47Z" + "modelId": "49b0f1a2-e699-4f0d-a873-040df8e08e6c", + "status": "ready", + "createdDateTime": "2020-08-14T19:13:59Z", + "lastUpdatedDateTime": "2020-08-14T19:14:08Z" }, { - "modelId": "aa4c7c66-c63e-453c-b6c8-6eb34bded19c", + "modelId": "4acac1b2-4f07-46b2-9d21-c172d2a66330", "status": "ready", - "createdDateTime": "2020-08-26T17:53:08Z", - "lastUpdatedDateTime": "2020-08-26T17:53:14Z" + "createdDateTime": "2020-08-14T19:28:36Z", + "lastUpdatedDateTime": "2020-08-14T19:28:44Z" }, { - "modelId": "ae63d47a-b069-4e06-9b23-fa01eb02e7a4", + "modelId": "4b815719-ec80-4bd7-a709-91ae6a44fdf7", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:53:28Z", - "lastUpdatedDateTime": "2020-08-26T17:53:29Z" + "createdDateTime": "2020-10-30T13:24:33Z", + "lastUpdatedDateTime": "2020-10-30T13:24:35Z" }, { - "modelId": "b17cb2c7-bd8d-4f5f-80d1-a20559f55dc0", + "modelId": "4bfcc25d-0b2f-4fa2-a284-bcc98cf1f8fd", "status": "ready", - "createdDateTime": "2020-08-07T02:33:07Z", - "lastUpdatedDateTime": "2020-08-07T02:33:23Z" + "createdDateTime": "2020-08-20T21:31:42Z", + "lastUpdatedDateTime": "2020-08-20T21:31:51Z" }, { - "modelId": "b29c550b-6b80-43f8-bc95-cf0655cbe4fb", - "status": "creating", - "createdDateTime": "2020-09-09T22:20:41Z", - "lastUpdatedDateTime": "2020-09-09T22:20:41Z" + "modelId": "4c92bc3c-f25c-4f02-84d9-f8ceae9b16b6", + "status": "ready", + "createdDateTime": "2020-08-14T19:11:09Z", + "lastUpdatedDateTime": "2020-08-14T19:11:17Z" }, { - "modelId": "b2e963b2-39e0-4e5f-acaa-9d48e0ad7570", - "status": "ready", - "createdDateTime": "2020-08-26T17:51:07Z", - "lastUpdatedDateTime": "2020-08-26T17:51:13Z" + "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", + "status": "invalid", + "createdDateTime": "2020-08-20T18:45:20Z", + "lastUpdatedDateTime": "2020-08-20T18:45:20Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2IzMzJkM2E5LTc2N2UtNGI5Mi1iMjk4LTAzYTdiYTJjNjRjYi9iMzMyZDNhOS03NjdlLTRiOTItYjI5OC0wM2E3YmEyYzY0Y2IuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2IzMzJkM2E5LTc2N2UtNGI5Mi1iMjk4LTAzYTdiYTJjNjRjYi9iMzMyZDNhOS03NjdlLTRiOTItYjI5OC0wM2E3YmEyYzY0Y2IuZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzRjYTU5MDExLTc0YWEtNDU1Yy1iZTQxLWM5ODE4NTRkOGJiYS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cda2f64d871be57aab30102a367283b0", "x-ms-return-client-request-id": "true" @@ -1117,450 +1171,1523 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56fa0ba8-51dc-4167-a5b1-64df73806e1d", + "apim-request-id": "7678c847-701c-4291-ae78-9d90bc2e0b57", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:52 GMT", + "Date": "Fri, 30 Oct 2020 13:32:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "367" + "x-envoy-upstream-service-time": "304" }, "ResponseBody": { "modelList": [ { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", - "status": "ready", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:17:12Z" + "modelId": "4ca59011-74aa-455c-be41-c981854d8bba", + "status": "invalid", + "createdDateTime": "2020-08-20T18:45:20Z", + "lastUpdatedDateTime": "2020-08-20T18:45:20Z" }, { - "modelId": "b3bf06ee-649c-4195-b79a-743efe134b3a", - "status": "creating", - "createdDateTime": "2020-08-11T23:26:07Z", - "lastUpdatedDateTime": "2020-08-11T23:26:07Z" + "modelId": "4f79033e-d86b-4151-9d4b-ea371230d9f7", + "status": "ready", + "createdDateTime": "2020-10-30T13:24:52Z", + "lastUpdatedDateTime": "2020-10-30T13:25:13Z" }, { - "modelId": "b4f76870-a421-49fc-b407-0eff0259b35f", + "modelId": "52db9454-9b6c-4514-a6f4-27d3d404a999", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:52:11Z", - "lastUpdatedDateTime": "2020-08-26T17:52:13Z" - }, - { - "modelId": "b505e41b-7b1f-403b-8934-b61ec312a33c", - "status": "ready", - "createdDateTime": "2020-08-07T02:31:58Z", - "lastUpdatedDateTime": "2020-08-07T02:32:11Z" + "createdDateTime": "2020-08-20T22:43:30Z", + "lastUpdatedDateTime": "2020-08-20T22:43:32Z" }, { - "modelId": "bd24dcfe-a630-4b9f-bb41-6f2462d7dc49", + "modelId": "547f6f41-f70e-4cb5-aa8f-2129e33df2af", "status": "ready", - "createdDateTime": "2020-08-07T02:34:59Z", - "lastUpdatedDateTime": "2020-08-07T02:35:12Z" + "createdDateTime": "2020-07-30T00:55:04Z", + "lastUpdatedDateTime": "2020-07-30T00:55:12Z" }, { - "modelId": "bf6945cc-5534-4fc7-bd7c-2371601328ff", + "modelId": "551c272c-ff8f-493e-b234-a719bc35ee23", "status": "creating", - "createdDateTime": "2020-08-07T02:35:13Z", - "lastUpdatedDateTime": "2020-08-07T02:35:13Z" + "createdDateTime": "2020-10-30T13:19:42Z", + "lastUpdatedDateTime": "2020-10-30T13:19:42Z" }, { - "modelId": "c20f99d1-31dd-4db9-baaa-97cc063209b9", - "status": "creating", - "createdDateTime": "2020-08-07T02:35:22Z", - "lastUpdatedDateTime": "2020-08-07T02:35:22Z" - }, - { - "modelId": "c2d66fc3-bb2c-4001-a6f8-c38e8b14edb9", + "modelId": "55c30a55-134a-4f9d-8b42-37caa8198471", "status": "ready", - "createdDateTime": "2020-08-26T17:56:05Z", - "lastUpdatedDateTime": "2020-08-26T17:56:15Z" + "createdDateTime": "2020-08-14T19:11:21Z", + "lastUpdatedDateTime": "2020-08-14T19:11:31Z" }, { - "modelId": "c345d537-db8a-42e9-8ed1-a1ff3fac62b0", - "status": "ready", - "createdDateTime": "2020-08-07T02:33:24Z", - "lastUpdatedDateTime": "2020-08-07T02:33:26Z" + "modelId": "56292da4-33e9-421f-ad9b-859234c5d111", + "status": "invalid", + "createdDateTime": "2020-08-20T23:29:05Z", + "lastUpdatedDateTime": "2020-08-20T23:29:05Z" }, { - "modelId": "c59b42e7-7aca-497e-9aad-c65bbeed9b57", - "status": "ready", - "createdDateTime": "2020-08-06T23:22:35Z", - "lastUpdatedDateTime": "2020-08-06T23:22:42Z" + "modelId": "566b7d84-318a-4acb-a928-d684e42b93b3", + "status": "invalid", + "createdDateTime": "2020-08-20T21:50:02Z", + "lastUpdatedDateTime": "2020-08-20T21:50:02Z" }, { - "modelId": "c6013cfd-4d02-4ec8-ba73-67cd51a615b7", - "status": "invalid", - "createdDateTime": "2020-09-09T22:23:52Z", - "lastUpdatedDateTime": "2020-09-09T22:23:52Z" + "modelId": "56ce1ece-256f-480d-8637-1005534971de", + "status": "ready", + "createdDateTime": "2020-08-20T21:27:11Z", + "lastUpdatedDateTime": "2020-08-20T21:27:19Z" }, { - "modelId": "c8986d9f-8e8a-4d04-8bb0-6638b754e15d", + "modelId": "5737eddb-d3c3-4e43-8658-b0f4322af5dc", "status": "invalid", - "createdDateTime": "2020-08-07T02:36:41Z", - "lastUpdatedDateTime": "2020-08-07T02:36:42Z" + "createdDateTime": "2020-08-20T23:29:06Z", + "lastUpdatedDateTime": "2020-08-20T23:29:07Z" }, { - "modelId": "ca22fcf9-50fd-4f30-9cc2-89ce165da9e5", + "modelId": "578062d7-dbfb-4548-a54e-299c967f17be", "status": "ready", - "createdDateTime": "2020-08-26T17:54:59Z", - "lastUpdatedDateTime": "2020-08-26T17:55:09Z" + "createdDateTime": "2020-08-20T18:48:16Z", + "lastUpdatedDateTime": "2020-08-20T18:48:27Z" }, { - "modelId": "cb5e24c2-a87a-4d58-9eb6-d45c354188d2", + "modelId": "57c1049c-a148-461a-ad5d-fe7e953f7d09", "status": "creating", - "createdDateTime": "2020-08-26T17:52:51Z", - "lastUpdatedDateTime": "2020-08-26T17:52:51Z" - }, - { - "modelId": "cc311fd7-86eb-45db-9d4d-a3d8e0370b65", - "status": "invalid", - "createdDateTime": "2020-08-26T17:53:05Z", - "lastUpdatedDateTime": "2020-08-26T17:53:06Z" + "createdDateTime": "2020-08-14T19:10:36Z", + "lastUpdatedDateTime": "2020-08-14T19:10:36Z" }, { - "modelId": "ccc3b3e0-ce54-483b-8ad4-73c43680bf6e", + "modelId": "57e0eb22-6bdb-4ef9-a597-11d96876ad1d", "status": "ready", - "createdDateTime": "2020-09-09T22:24:26Z", - "lastUpdatedDateTime": "2020-09-09T22:24:47Z" + "createdDateTime": "2020-08-14T19:45:21Z", + "lastUpdatedDateTime": "2020-08-14T19:45:29Z" }, { - "modelId": "cdc006db-a59c-4cc8-a2dc-ab16c680ea79", + "modelId": "5802c9ef-6ce3-41ac-be05-b4afb5613cb2", "status": "ready", - "createdDateTime": "2020-08-11T23:26:28Z", - "lastUpdatedDateTime": "2020-08-11T23:26:31Z" + "createdDateTime": "2020-08-20T21:08:18Z", + "lastUpdatedDateTime": "2020-08-20T21:08:26Z" }, { - "modelId": "cf827cbd-7ef9-4d03-bcb2-3196ac232a27", + "modelId": "5837470d-2183-4c9a-b005-80ab6b76765b", "status": "ready", - "createdDateTime": "2020-08-07T02:42:09Z", - "lastUpdatedDateTime": "2020-08-07T02:42:23Z" + "createdDateTime": "2020-08-20T23:31:12Z", + "lastUpdatedDateTime": "2020-08-20T23:31:26Z" }, { - "modelId": "cfe75f49-a7d5-4642-98f2-63dc697109fc", - "status": "invalid", - "createdDateTime": "2020-08-26T17:32:33Z", - "lastUpdatedDateTime": "2020-08-26T17:32:34Z" - }, - { - "modelId": "d105b6ec-2f04-43eb-bc3d-fa3a2a687166", + "modelId": "584c4432-36cf-4a0b-a2e1-5c651bfd4227", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:24:49Z", - "lastUpdatedDateTime": "2020-09-09T22:24:51Z" + "createdDateTime": "2020-08-14T19:08:02Z", + "lastUpdatedDateTime": "2020-08-14T19:08:04Z" }, { - "modelId": "d191bdd0-84ab-46aa-a6c3-f8def1867cf1", - "attributes": { - "isComposed": false - }, - "status": "ready", - "createdDateTime": "2020-08-26T17:51:14Z", - "lastUpdatedDateTime": "2020-08-26T17:51:17Z" + "modelId": "58871fae-0f09-4f14-bce7-769d4bd35354", + "status": "creating", + "createdDateTime": "2020-08-14T19:08:30Z", + "lastUpdatedDateTime": "2020-08-14T19:08:30Z" }, { - "modelId": "d1bf30dc-45a1-4bfe-9e5e-6e50d6ffa19d", - "attributes": { - "isComposed": false - }, + "modelId": "5bde02de-1dcb-4ea8-b497-0427a16b26fb", + "status": "creating", + "createdDateTime": "2020-08-20T23:25:39Z", + "lastUpdatedDateTime": "2020-08-20T23:25:39Z" + }, + { + "modelId": "5f0ca916-4ca0-4f2d-9447-caeac53bcf2e", "status": "ready", - "createdDateTime": "2020-09-09T22:21:03Z", - "lastUpdatedDateTime": "2020-09-09T22:21:06Z" + "createdDateTime": "2020-08-20T23:32:15Z", + "lastUpdatedDateTime": "2020-08-20T23:32:25Z" + }, + { + "modelId": "5faf34f8-8399-477b-ba82-48f1e2e7688f", + "status": "invalid", + "createdDateTime": "2020-08-14T19:45:12Z", + "lastUpdatedDateTime": "2020-08-14T19:45:12Z" }, { - "modelId": "d273c5ba-313e-4954-9487-697d5088f802", + "modelId": "5feddb70-fa11-450f-b34b-37a45b5c80d3", "status": "invalid", - "createdDateTime": "2020-08-07T02:32:53Z", - "lastUpdatedDateTime": "2020-08-07T02:32:53Z" + "createdDateTime": "2020-08-20T23:26:09Z", + "lastUpdatedDateTime": "2020-08-20T23:26:10Z" + }, + { + "modelId": "6035d354-53ef-4dcd-93de-5b9ad1c1ea77", + "status": "ready", + "createdDateTime": "2020-08-20T18:42:40Z", + "lastUpdatedDateTime": "2020-08-20T18:42:48Z" }, { - "modelId": "d7e283fe-3aec-4bf8-94fe-61fe21940395", + "modelId": "6216b1ae-970a-485b-a35e-070150082adb", "status": "creating", - "createdDateTime": "2020-08-26T17:32:14Z", - "lastUpdatedDateTime": "2020-08-26T17:32:14Z" + "createdDateTime": "2020-08-20T22:42:57Z", + "lastUpdatedDateTime": "2020-08-20T22:42:57Z" }, { - "modelId": "d93c3dfe-b120-414e-9f51-ad40310c4a43", + "modelId": "63262869-1ff0-49d0-a26f-1d1552cad649", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:33:41Z", - "lastUpdatedDateTime": "2020-08-26T17:33:49Z" + "createdDateTime": "2020-08-20T23:09:49Z", + "lastUpdatedDateTime": "2020-08-20T23:09:51Z" }, { - "modelId": "db508217-f07e-493a-89c4-72a5f714a4b9", - "status": "invalid", - "createdDateTime": "2020-08-26T17:51:04Z", - "lastUpdatedDateTime": "2020-08-26T17:51:04Z" + "modelId": "637426f9-5d46-4e4c-8bfb-86f2b60bd94b", + "status": "creating", + "createdDateTime": "2020-08-20T21:49:44Z", + "lastUpdatedDateTime": "2020-08-20T21:49:44Z" }, { - "modelId": "dc8ece10-6525-4660-8090-b1bcc26c4e9d", + "modelId": "66087b32-fce4-402d-9101-1bc4f627462d", "status": "ready", - "createdDateTime": "2020-08-06T23:42:46Z", - "lastUpdatedDateTime": "2020-08-06T23:42:54Z" + "createdDateTime": "2020-08-20T21:22:24Z", + "lastUpdatedDateTime": "2020-08-20T21:22:33Z" }, { - "modelId": "ddb1a1cd-e9d7-4044-a077-d5bfa01c98ee", - "status": "invalid", - "createdDateTime": "2020-08-26T17:32:32Z", - "lastUpdatedDateTime": "2020-08-26T17:32:32Z" + "modelId": "6645dde9-caf0-4beb-8758-501325f2e605", + "status": "ready", + "createdDateTime": "2020-08-20T21:53:58Z", + "lastUpdatedDateTime": "2020-08-20T21:54:06Z" }, { - "modelId": "e3059236-3520-4d20-93d2-5d82c089a198", + "modelId": "68f6c9f8-795d-43bc-97bd-619dad38c66d", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:28:13Z", + "lastUpdatedDateTime": "2020-08-20T23:28:19Z" + }, + { + "modelId": "6bbda4de-97ee-4d62-a7ab-2a9a13f503f6", + "status": "invalid", + "createdDateTime": "2020-08-20T21:49:56Z", + "lastUpdatedDateTime": "2020-08-20T21:49:56Z" + }, + { + "modelId": "6c252bb0-d84a-47c8-82af-0dabf36c4c6f", + "status": "invalid", + "createdDateTime": "2020-08-20T21:47:26Z", + "lastUpdatedDateTime": "2020-08-20T21:47:27Z" + }, + { + "modelId": "6c6bd1f5-4009-435f-b938-df50c1966733", + "status": "ready", + "createdDateTime": "2020-08-20T21:28:00Z", + "lastUpdatedDateTime": "2020-08-20T21:28:08Z" + }, + { + "modelId": "6fbe2ae1-fd8f-40c7-bf2e-c05e90931aac", + "status": "creating", + "createdDateTime": "2020-08-20T23:28:45Z", + "lastUpdatedDateTime": "2020-08-20T23:28:45Z" + }, + { + "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", + "status": "ready", + "createdDateTime": "2020-08-20T18:45:22Z", + "lastUpdatedDateTime": "2020-08-20T18:45:26Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "32f2f3bac601d5e140bbef8bcd2798d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "907a8046-4f76-4c8d-8d9d-a35e419584fa", + "Content-Length": "356", + "Content-Type": "application/json", + "Date": "Fri, 30 Oct 2020 13:32:54 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 second. Please contact Azure support service if you would like to further increase the default rate limit." + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzcwNzY5OTc2LTQ2YzAtNDczOS04Y2I1LTRmMzFjOTQxYTcwOS91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "32f2f3bac601d5e140bbef8bcd2798d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ef420b01-9caa-4c16-9132-d688429aa188", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:32:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "269" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "70769976-46c0-4739-8cb5-4f31c941a709", + "status": "ready", + "createdDateTime": "2020-08-20T18:45:22Z", + "lastUpdatedDateTime": "2020-08-20T18:45:26Z" + }, + { + "modelId": "714cd9ba-6084-4966-bf98-079fc90562fe", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:10:07Z", + "lastUpdatedDateTime": "2020-08-14T19:10:09Z" + }, + { + "modelId": "7156bc3a-1e6b-4125-b89f-10d971d5ba14", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:27:48Z", + "lastUpdatedDateTime": "2020-08-20T22:27:50Z" + }, + { + "modelId": "741ca2b2-d208-4a68-a59d-f6fb1e41c596", + "modelName": "My training", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:21:03Z", + "lastUpdatedDateTime": "2020-10-30T13:21:04Z" + }, + { + "modelId": "74ea7917-ea1e-4d62-8bd9-551fcac9d963", + "status": "ready", + "createdDateTime": "2020-08-14T19:50:11Z", + "lastUpdatedDateTime": "2020-08-14T19:50:19Z" + }, + { + "modelId": "765cd50a-d9bd-4bbe-9e77-8e496c234240", + "status": "ready", + "createdDateTime": "2020-08-20T18:46:18Z", + "lastUpdatedDateTime": "2020-08-20T18:46:27Z" + }, + { + "modelId": "76aed1f7-5a15-4754-925c-45d27d7fd0c5", + "status": "creating", + "createdDateTime": "2020-08-20T21:22:34Z", + "lastUpdatedDateTime": "2020-08-20T21:22:34Z" + }, + { + "modelId": "76e1dc72-2be3-4c40-9f07-6b29a0bf327a", + "status": "creating", + "createdDateTime": "2020-08-14T19:44:45Z", + "lastUpdatedDateTime": "2020-08-14T19:44:45Z" + }, + { + "modelId": "76e25188-e121-4fc3-a5f3-3cb861033259", + "status": "creating", + "createdDateTime": "2020-08-20T21:25:07Z", + "lastUpdatedDateTime": "2020-08-20T21:25:07Z" + }, + { + "modelId": "795417b4-25af-4d41-aa61-3cef0084e589", + "status": "ready", + "createdDateTime": "2020-08-20T21:50:03Z", + "lastUpdatedDateTime": "2020-08-20T21:50:07Z" + }, + { + "modelId": "79a2c6de-5040-4198-a2fa-ecbe37e71788", + "modelName": "My training", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:02Z", + "lastUpdatedDateTime": "2020-10-30T13:24:03Z" + }, + { + "modelId": "7c9a4c19-1761-40d2-8f2b-10f10510ca74", + "status": "ready", + "createdDateTime": "2020-08-14T19:10:57Z", + "lastUpdatedDateTime": "2020-08-14T19:11:00Z" + }, + { + "modelId": "7dd8a381-1484-4809-ad11-db27dc50841e", + "status": "ready", + "createdDateTime": "2020-08-20T21:49:31Z", + "lastUpdatedDateTime": "2020-08-20T21:49:39Z" + }, + { + "modelId": "7dfcb89d-abc6-43ca-bae6-cce241d06e4f", + "status": "ready", + "createdDateTime": "2020-08-20T21:30:14Z", + "lastUpdatedDateTime": "2020-08-20T21:30:22Z" + }, + { + "modelId": "7f2745e3-7f0d-46f7-919a-96b939030594", + "status": "creating", + "createdDateTime": "2020-08-20T22:42:59Z", + "lastUpdatedDateTime": "2020-08-20T22:42:59Z" + }, + { + "modelId": "80601216-855c-4286-b532-34af33c229ae", + "status": "ready", + "createdDateTime": "2020-08-14T19:13:08Z", + "lastUpdatedDateTime": "2020-08-14T19:13:16Z" + }, + { + "modelId": "84fd2414-5018-4f5a-9805-b80467ce7593", + "status": "ready", + "createdDateTime": "2020-08-20T21:47:27Z", + "lastUpdatedDateTime": "2020-08-20T21:47:31Z" + }, + { + "modelId": "8692493e-799d-48c3-b217-950e1471adba", + "status": "ready", + "createdDateTime": "2020-08-14T19:48:16Z", + "lastUpdatedDateTime": "2020-08-14T19:48:24Z" + }, + { + "modelId": "878a4cd7-39c2-46a0-a905-7cc1bd071837", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:46:09Z", + "lastUpdatedDateTime": "2020-08-14T19:46:12Z" + }, + { + "modelId": "87f0f103-08c9-4cae-91b8-f5a0a205bb35", + "status": "creating", + "createdDateTime": "2020-08-17T22:32:37Z", + "lastUpdatedDateTime": "2020-08-17T22:32:37Z" + }, + { + "modelId": "88d34ad1-0508-475c-9d75-2c15594876ac", + "status": "invalid", + "createdDateTime": "2020-08-14T19:47:12Z", + "lastUpdatedDateTime": "2020-08-14T19:47:12Z" + }, + { + "modelId": "8a2a6999-df6a-4b64-9633-87d097b2af06", + "status": "invalid", + "createdDateTime": "2020-08-20T22:45:53Z", + "lastUpdatedDateTime": "2020-08-20T22:45:53Z" + }, + { + "modelId": "91f0a68b-5890-4e2a-8856-4489113f9d54", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:11:01Z", + "lastUpdatedDateTime": "2020-08-14T19:11:08Z" + }, + { + "modelId": "91f917c8-c8ad-457e-8d62-00e3e1686aac", + "status": "invalid", + "createdDateTime": "2020-08-20T18:43:19Z", + "lastUpdatedDateTime": "2020-08-20T18:43:20Z" + }, + { + "modelId": "921d9d16-9a9d-4dab-a0c5-63deb0aed5a6", + "status": "ready", + "createdDateTime": "2020-08-20T22:42:48Z", + "lastUpdatedDateTime": "2020-08-20T22:42:56Z" + }, + { + "modelId": "9259c76f-7273-41a7-83e2-fd176eeef64e", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:46:02Z", + "lastUpdatedDateTime": "2020-08-20T22:46:04Z" + }, + { + "modelId": "92829e8f-ef96-4b83-8d54-4e2064729e84", + "status": "invalid", + "createdDateTime": "2020-08-14T19:08:49Z", + "lastUpdatedDateTime": "2020-08-14T19:08:49Z" + }, + { + "modelId": "932ef024-3b06-4445-bc05-863f0b7365db", + "status": "ready", + "createdDateTime": "2020-08-14T19:10:25Z", + "lastUpdatedDateTime": "2020-08-14T19:10:32Z" + }, + { + "modelId": "94e1ae64-db16-4b11-b3ec-db684b3eb473", + "status": "ready", + "createdDateTime": "2020-08-20T21:46:57Z", + "lastUpdatedDateTime": "2020-08-20T21:47:05Z" + }, + { + "modelId": "959a6767-936a-4388-be50-47b1471173e2", + "status": "ready", + "createdDateTime": "2020-08-20T22:43:33Z", + "lastUpdatedDateTime": "2020-08-20T22:43:42Z" + }, + { + "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:51Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzLzk2NzY5YWE0LWViMzMtNDVlMi04NTM2LTBkYzRlNWVjMzc1Yy91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1511d3b211adc934d3c93ce856e73db6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "320bae70-df5c-4038-bbd3-e0733ca50772", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:32:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "309" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "96769aa4-eb33-45e2-8536-0dc4e5ec375c", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:24:51Z", + "lastUpdatedDateTime": "2020-10-30T13:24:52Z" + }, + { + "modelId": "9794b06a-303c-4014-ac9c-d64ccd2d897d", + "status": "creating", + "createdDateTime": "2020-08-20T21:22:33Z", + "lastUpdatedDateTime": "2020-08-20T21:22:33Z" + }, + { + "modelId": "97be7970-9a98-4b3f-980c-77bf06f29131", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:21:52Z", + "lastUpdatedDateTime": "2020-10-30T13:21:54Z" + }, + { + "modelId": "98fc2d15-8bb1-4eb8-85f8-dbde2d188615", + "status": "ready", + "createdDateTime": "2020-08-14T19:46:41Z", + "lastUpdatedDateTime": "2020-08-14T19:46:48Z" + }, + { + "modelId": "9947fcd1-42b4-4c38-930e-1b0403e6f761", + "status": "ready", + "createdDateTime": "2020-08-14T19:45:42Z", + "lastUpdatedDateTime": "2020-08-14T19:45:53Z" + }, + { + "modelId": "99c2b562-6e31-4923-a25c-8d940951ed2f", + "status": "ready", + "createdDateTime": "2020-08-14T19:47:23Z", + "lastUpdatedDateTime": "2020-08-14T19:47:32Z" + }, + { + "modelId": "9a0b42b4-09e2-4c90-8bd0-64395fb588e8", + "status": "ready", + "createdDateTime": "2020-08-20T23:28:36Z", + "lastUpdatedDateTime": "2020-08-20T23:28:44Z" + }, + { + "modelId": "9aa701a8-3822-4d5d-bc37-4891415c267f", + "status": "ready", + "createdDateTime": "2020-08-20T22:06:19Z", + "lastUpdatedDateTime": "2020-08-20T22:06:29Z" + }, + { + "modelId": "9d8aac28-0ab6-4b18-bb80-35341797a3ad", + "status": "ready", + "createdDateTime": "2020-08-20T21:53:04Z", + "lastUpdatedDateTime": "2020-08-20T21:53:15Z" + }, + { + "modelId": "9e6eb7bc-d4b9-4887-a38a-58957d712769", + "status": "ready", + "createdDateTime": "2020-08-20T21:30:14Z", + "lastUpdatedDateTime": "2020-08-20T21:30:22Z" + }, + { + "modelId": "9f7271da-c7c1-4407-bd1a-92577c187995", + "status": "invalid", + "createdDateTime": "2020-08-20T18:45:21Z", + "lastUpdatedDateTime": "2020-08-20T18:45:22Z" + }, + { + "modelId": "a00e27ee-1358-468a-a95c-c80e5bff6343", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:45:08Z", + "lastUpdatedDateTime": "2020-08-20T22:45:15Z" + }, + { + "modelId": "a0a7e72a-d8ec-4293-8dee-7fbe726fc115", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T18:45:38Z", + "lastUpdatedDateTime": "2020-08-20T18:45:39Z" + }, + { + "modelId": "a1513cf9-13dd-4eb7-bac5-7ceee4658c13", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T18:53:36Z", + "lastUpdatedDateTime": "2020-08-14T18:53:43Z" + }, + { + "modelId": "a1b59d63-c5f4-43a4-bbba-e4e9c0c00708", + "status": "ready", + "createdDateTime": "2020-10-30T13:20:55Z", + "lastUpdatedDateTime": "2020-10-30T13:21:01Z" + }, + { + "modelId": "a2a41673-e1b2-4319-8eef-44910ce4d9cf", + "status": "ready", + "createdDateTime": "2020-08-20T18:43:33Z", + "lastUpdatedDateTime": "2020-08-20T18:43:41Z" + }, + { + "modelId": "a2b05934-353c-4eb9-ac8b-45d1d2e489f2", + "status": "ready", + "createdDateTime": "2020-08-20T22:46:14Z", + "lastUpdatedDateTime": "2020-08-20T22:46:24Z" + }, + { + "modelId": "a3189094-17a1-4acf-a788-f8c05c6e6a19", + "status": "invalid", + "createdDateTime": "2020-08-20T22:45:54Z", + "lastUpdatedDateTime": "2020-08-20T22:45:55Z" + }, + { + "modelId": "a336ff42-7e03-4b7f-821a-1246209f29de", + "status": "ready", + "createdDateTime": "2020-08-14T19:08:51Z", + "lastUpdatedDateTime": "2020-08-14T19:08:55Z" + }, + { + "modelId": "a38f391d-fad5-4ed5-be4c-5a3644803cf4", + "status": "ready", + "createdDateTime": "2020-08-20T23:29:39Z", + "lastUpdatedDateTime": "2020-08-20T23:29:51Z" + }, + { + "modelId": "a3cb3ffe-ba7b-4a0d-838a-eced98e48e8c", + "status": "invalid", + "createdDateTime": "2020-08-20T22:43:18Z", + "lastUpdatedDateTime": "2020-08-20T22:43:18Z" + }, + { + "modelId": "a5f5ef27-523c-44a4-a06c-a56470180145", + "status": "creating", + "createdDateTime": "2020-08-14T19:44:55Z", + "lastUpdatedDateTime": "2020-08-14T19:44:55Z" + }, + { + "modelId": "a67b821e-e8f2-419d-97f6-e28903abe6a0", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:25:31Z", + "lastUpdatedDateTime": "2020-08-20T21:25:32Z" + }, + { + "modelId": "a70a5d5b-3b72-486b-91f1-0b518e077a43", + "status": "ready", + "createdDateTime": "2020-08-20T22:48:57Z", + "lastUpdatedDateTime": "2020-08-20T22:49:06Z" + }, + { + "modelId": "a78b3a1c-9189-4901-9bc2-ccceec21bf20", + "status": "creating", + "createdDateTime": "2020-08-20T18:44:56Z", + "lastUpdatedDateTime": "2020-08-20T18:44:56Z" + }, + { + "modelId": "a7d5f0a1-b604-4fd4-a1fb-5df92c6deaef", + "status": "ready", + "createdDateTime": "2020-08-20T18:26:04Z", + "lastUpdatedDateTime": "2020-08-20T18:26:12Z" + }, + { + "modelId": "a8b5afb6-f11a-4496-ad62-a70e3ecda523", + "status": "ready", + "createdDateTime": "2020-08-14T19:49:09Z", + "lastUpdatedDateTime": "2020-08-14T19:49:17Z" + }, + { + "modelId": "a95aa07c-a27b-4323-8bc6-3a02485f2707", + "status": "ready", + "createdDateTime": "2020-08-20T21:50:21Z", + "lastUpdatedDateTime": "2020-08-20T21:50:32Z" + }, + { + "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:46:13Z", + "lastUpdatedDateTime": "2020-08-20T22:46:14Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "43eb21426610860415cd8c6098ee1784", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 429, + "ResponseHeaders": { + "apim-request-id": "65132cbb-0d17-4ffa-8f2d-9fff4c1f7c6b", + "Content-Length": "356", + "Content-Type": "application/json", + "Date": "Fri, 30 Oct 2020 13:32:56 GMT", + "Retry-After": "1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff" + }, + "ResponseBody": { + "error": { + "code": "429", + "message": "Requests to the Custom Form Model Management - List Custom Models Operation under Form Recognizer API (v2.1-preview.2) have exceeded rate limit of your current FormRecognizer S0 pricing tier. Please retry after 1 second. Please contact Azure support service if you would like to further increase the default rate limit." + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2E5YjE4YTIwLTg2OGItNDQ5My1iZTA4LWM2MTRkNTUxZjgzZS9hOWIxOGEyMC04NjhiLTQ0OTMtYmUwOC1jNjE0ZDU1MWY4M2UuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "43eb21426610860415cd8c6098ee1784", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f760bddc-e018-4403-9750-f0dba2647791", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:32:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "355" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "a9b18a20-868b-4493-be08-c614d551f83e", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T22:46:13Z", + "lastUpdatedDateTime": "2020-08-20T22:46:14Z" + }, + { + "modelId": "a9dbcb83-f15c-4b42-aaef-c2e78adb3169", + "status": "ready", + "createdDateTime": "2020-08-14T19:47:14Z", + "lastUpdatedDateTime": "2020-08-14T19:47:20Z" + }, + { + "modelId": "ab71a8bd-e38c-41dd-8b9f-4677355e9ab5", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:21:05Z", + "lastUpdatedDateTime": "2020-10-30T13:21:06Z" + }, + { + "modelId": "ac2a0641-62e3-43e4-ab21-2f0eb52b6e61", + "status": "ready", + "createdDateTime": "2020-08-20T21:24:53Z", + "lastUpdatedDateTime": "2020-08-20T21:25:02Z" + }, + { + "modelId": "ad2694f9-88d9-48b6-b85c-71b6000aa9df", + "status": "ready", + "createdDateTime": "2020-08-14T19:47:39Z", + "lastUpdatedDateTime": "2020-08-14T19:47:49Z" + }, + { + "modelId": "af6d3536-b663-4856-9824-9e8872fc83ed", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T18:43:43Z", + "lastUpdatedDateTime": "2020-08-20T18:43:45Z" + }, + { + "modelId": "b01f6909-840f-4ca9-85a3-769538176fe5", + "status": "ready", + "createdDateTime": "2020-08-20T22:43:50Z", + "lastUpdatedDateTime": "2020-08-20T22:44:01Z" + }, + { + "modelId": "b08b7db5-97ae-4459-9603-47d5994e9f4a", + "status": "ready", + "createdDateTime": "2020-08-14T19:11:57Z", + "lastUpdatedDateTime": "2020-08-14T19:12:05Z" + }, + { + "modelId": "b0b6140c-fb6e-4c67-b7f1-420074909323", "status": "creating", - "createdDateTime": "2020-08-26T17:32:17Z", - "lastUpdatedDateTime": "2020-08-26T17:32:17Z" + "createdDateTime": "2020-08-20T23:28:47Z", + "lastUpdatedDateTime": "2020-08-20T23:28:47Z" + }, + { + "modelId": "b102b022-de56-4e48-8c16-41dae496d899", + "status": "invalid", + "createdDateTime": "2020-08-20T21:47:25Z", + "lastUpdatedDateTime": "2020-08-20T21:47:25Z" + }, + { + "modelId": "b370849a-a304-464b-acdb-1308a78b2fa2", + "status": "invalid", + "createdDateTime": "2020-10-30T13:20:52Z", + "lastUpdatedDateTime": "2020-10-30T13:20:52Z" + }, + { + "modelId": "b3cc3815-9fc0-40bc-ad82-0533b038db9d", + "status": "ready", + "createdDateTime": "2020-08-14T19:45:13Z", + "lastUpdatedDateTime": "2020-08-14T19:45:17Z" + }, + { + "modelId": "b404b97b-0e37-4eb5-8ad1-4ced5d0a34a5", + "status": "ready", + "createdDateTime": "2020-08-20T18:45:29Z", + "lastUpdatedDateTime": "2020-08-20T18:45:37Z" }, { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4", + "modelId": "b5c033b5-b3b4-4a68-8744-0f7509be8504", "status": "ready", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:27Z" + "createdDateTime": "2020-10-30T13:21:55Z", + "lastUpdatedDateTime": "2020-10-30T13:22:15Z" }, { - "modelId": "e54e8d47-0c59-4c6f-8e42-42075bca2625", + "modelId": "b6cf7b42-a0ea-4d17-9a2e-080f0370f562", "status": "invalid", - "createdDateTime": "2020-08-07T02:38:17Z", - "lastUpdatedDateTime": "2020-08-07T02:38:23Z" + "createdDateTime": "2020-08-20T21:22:55Z", + "lastUpdatedDateTime": "2020-08-20T21:22:55Z" }, { - "modelId": "e68af186-60e9-43ab-bf44-957aaa96e75f", + "modelId": "b768df27-adda-4f47-8223-4f9b696b3591", "status": "creating", - "createdDateTime": "2020-08-26T17:52:47Z", - "lastUpdatedDateTime": "2020-08-26T17:52:47Z" + "createdDateTime": "2020-08-20T21:47:08Z", + "lastUpdatedDateTime": "2020-08-20T21:47:08Z" + }, + { + "modelId": "b7af13d6-8a7c-4254-ab2f-1ccd03d26f97", + "modelName": "My composed model", + "attributes": { + "isComposed": true + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:23:46Z", + "lastUpdatedDateTime": "2020-10-30T13:23:47Z" + }, + { + "modelId": "bacfa117-235d-43f0-b919-913a0e0ae686", + "status": "ready", + "createdDateTime": "2020-08-20T22:47:48Z", + "lastUpdatedDateTime": "2020-08-20T22:47:56Z" + }, + { + "modelId": "bc1133f6-33d3-4ac1-a848-0695866e1786", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:25:41Z", + "lastUpdatedDateTime": "2020-08-20T21:25:42Z" + }, + { + "modelId": "bc6ae2e0-2eb4-40bb-b8d0-0ca37f413c58", + "status": "invalid", + "createdDateTime": "2020-08-20T21:22:53Z", + "lastUpdatedDateTime": "2020-08-20T21:22:54Z" + }, + { + "modelId": "bd10694b-d9fd-402e-9f89-2e5994a7691f", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T18:27:08Z", + "lastUpdatedDateTime": "2020-08-20T18:27:10Z" + }, + { + "modelId": "be8593fc-3fab-4300-8b14-f77966b99c04", + "status": "invalid", + "createdDateTime": "2020-08-14T19:10:54Z", + "lastUpdatedDateTime": "2020-08-14T19:10:54Z" + }, + { + "modelId": "c1cf6bc1-0d0f-4a23-b453-9df1b937710a", + "status": "ready", + "createdDateTime": "2020-08-20T18:47:27Z", + "lastUpdatedDateTime": "2020-08-20T18:47:35Z" + }, + { + "modelId": "c2401fd4-05c0-48d4-bd2f-7a30589b1306", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:09:15Z", + "lastUpdatedDateTime": "2020-08-14T19:09:27Z" + }, + { + "modelId": "c39ee6fa-e7a8-4ad9-990e-aa9049846fff", + "status": "ready", + "createdDateTime": "2020-08-20T23:29:08Z", + "lastUpdatedDateTime": "2020-08-20T23:29:13Z" + }, + { + "modelId": "c5797a87-180d-4ec3-a23f-aa44848ad149", + "status": "ready", + "createdDateTime": "2020-08-20T23:26:12Z", + "lastUpdatedDateTime": "2020-08-20T23:26:17Z" + }, + { + "modelId": "c690cad3-cb93-4b4b-9139-f542f08aefa2", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:26:23Z", + "lastUpdatedDateTime": "2020-08-20T23:26:24Z" }, { - "modelId": "e76f563f-8640-4330-b98a-d2431721debd", + "modelId": "c6a30526-4a60-4aac-90db-dea83bf04799", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:50:38Z", - "lastUpdatedDateTime": "2020-08-26T17:50:48Z" + "createdDateTime": "2020-08-20T23:25:05Z", + "lastUpdatedDateTime": "2020-08-20T23:25:07Z" }, { - "modelId": "ea436462-f638-49a6-b220-ed94172d8701", + "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", "status": "ready", - "createdDateTime": "2020-08-06T23:17:00Z", - "lastUpdatedDateTime": "2020-08-06T23:17:07Z" + "createdDateTime": "2020-08-20T23:33:14Z", + "lastUpdatedDateTime": "2020-08-20T23:33:22Z" } ], - "nextLink": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2ViYmJiZWU4LTk0MmMtNDM3NC1iM2E2LWFjNTk0ZjE5NWU3OC9lYmJiYmVlOC05NDJjLTQzNzQtYjNhNi1hYzU5NGYxOTVlNzguZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh" + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?nextLink=2!232!MDAwMTMwIXN1YnNjcmlwdGlvbnMvMDJkNTNjMjExN2M4NGQzZjhlMDRkMDZlOWJhMGEwYzUvbW9kZWxzL2ViYmJiZWU4LTk0MmMtNDM3NC1iM2E2LWFjNTk0ZjE5NWU3OC9lYmJiYmVlOC05NDJjLTQzNzQtYjNhNi1hYzU5NGYxOTVlNzguZ3ohMDAwMDI4ITk5OTktMTItMzFUMjM6NTk6NTkuOTk5OTk5OVoh", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!204!MDAwMTA4IXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2M3ZDMzOTg4LTkyMDktNDlmYS1iYzk0LTU1NzUwZGNkMTZiYi91c2VMYWJlbEZpbGUuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "32f2f3bac601d5e140bbef8bcd2798d1", + "x-ms-client-request-id": "62783f976d61a903be285e3789f87e58", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67fd452d-6e74-4d93-b188-16932985dbc3", + "apim-request-id": "bb7748fe-7784-4ee8-866e-d3a5b8c5e566", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:52 GMT", + "Date": "Fri, 30 Oct 2020 13:32:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "175" + "x-envoy-upstream-service-time": "265" }, "ResponseBody": { "modelList": [ { - "modelId": "ebbbbee8-942c-4374-b3a6-ac594f195e78", + "modelId": "c7d33988-9209-49fa-bc94-55750dcd16bb", + "status": "ready", + "createdDateTime": "2020-08-20T23:33:14Z", + "lastUpdatedDateTime": "2020-08-20T23:33:22Z" + }, + { + "modelId": "c89e3c61-0048-4ac6-93e6-4f28e4c290cc", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:29:28Z", + "lastUpdatedDateTime": "2020-08-14T19:29:35Z" + }, + { + "modelId": "c8b76997-38b0-444f-9646-40e930bd7b5c", + "status": "ready", + "createdDateTime": "2020-08-20T21:47:50Z", + "lastUpdatedDateTime": "2020-08-20T21:48:01Z" + }, + { + "modelId": "cdb4705a-40e1-4ff4-8ad0-fec5734f4325", + "status": "ready", + "createdDateTime": "2020-08-20T23:10:08Z", + "lastUpdatedDateTime": "2020-08-20T23:10:17Z" + }, + { + "modelId": "cde04bf1-6d25-46f7-bdb5-2d056d9d0770", + "status": "ready", + "createdDateTime": "2020-08-14T19:09:28Z", + "lastUpdatedDateTime": "2020-08-14T19:09:39Z" + }, + { + "modelId": "cdfdd9de-9047-4c6b-9a87-eb8f561f73ff", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:47:21Z", + "lastUpdatedDateTime": "2020-08-14T19:47:23Z" + }, + { + "modelId": "cee40303-8aaa-418a-b5b4-9055cb5bb4d8", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-10-30T13:31:58Z", + "lastUpdatedDateTime": "2020-10-30T13:32:01Z" + }, + { + "modelId": "cee73923-0fa2-40dd-8eda-8446c153ecbb", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:45:18Z", + "lastUpdatedDateTime": "2020-08-14T19:45:20Z" + }, + { + "modelId": "cf0a0084-92b5-4c82-aaee-b899a0645f91", + "status": "ready", + "createdDateTime": "2020-08-14T18:53:51Z", + "lastUpdatedDateTime": "2020-08-14T18:53:59Z" + }, + { + "modelId": "cfe8a11b-ae8c-4105-a8a3-ab69bd8a4354", + "status": "invalid", + "createdDateTime": "2020-10-30T13:23:52Z", + "lastUpdatedDateTime": "2020-10-30T13:23:52Z" + }, + { + "modelId": "d1ebd4b5-6e79-4a31-9ed2-0d492b409a6c", + "status": "creating", + "createdDateTime": "2020-08-14T19:46:50Z", + "lastUpdatedDateTime": "2020-08-14T19:46:50Z" + }, + { + "modelId": "d234c2cd-e20d-407c-b023-2bb7e0065875", + "status": "ready", + "createdDateTime": "2020-08-20T21:06:49Z", + "lastUpdatedDateTime": "2020-08-20T21:06:57Z" + }, + { + "modelId": "d2bb2813-e890-4726-ad3a-5b2137840550", + "status": "ready", + "createdDateTime": "2020-08-14T19:08:59Z", + "lastUpdatedDateTime": "2020-08-14T19:09:09Z" + }, + { + "modelId": "d35b3816-19e2-4263-840b-749342c5a9ae", + "status": "creating", + "createdDateTime": "2020-08-20T23:25:48Z", + "lastUpdatedDateTime": "2020-08-20T23:25:48Z" + }, + { + "modelId": "d38c3724-ecc0-46ad-be24-9cfb55e88fdd", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T23:29:19Z", + "lastUpdatedDateTime": "2020-08-20T23:29:21Z" + }, + { + "modelId": "d44ad36d-9b3f-4528-aeed-50111c87d0d8", "status": "ready", - "createdDateTime": "2020-08-07T02:03:56Z", - "lastUpdatedDateTime": "2020-08-07T02:04:09Z" + "createdDateTime": "2020-08-20T21:22:56Z", + "lastUpdatedDateTime": "2020-08-20T21:22:59Z" }, { - "modelId": "edfb6496-b669-404c-8ff9-e0693aa71e82", + "modelId": "d71f1973-c8bc-4723-95f6-270faeb0d710", + "status": "ready", + "createdDateTime": "2020-08-05T20:02:42Z", + "lastUpdatedDateTime": "2020-08-05T20:02:53Z" + }, + { + "modelId": "d76bbb87-3665-4fcf-bd78-5af39fa70371", + "status": "creating", + "createdDateTime": "2020-08-20T21:25:03Z", + "lastUpdatedDateTime": "2020-08-20T21:25:03Z" + }, + { + "modelId": "d7c60908-afae-4db7-97a4-7dfee044d9fb", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-14T19:44:20Z", + "lastUpdatedDateTime": "2020-08-14T19:44:27Z" + }, + { + "modelId": "d8bc8709-3324-4d86-a702-fb13d83bd3fd", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:24:37Z", + "lastUpdatedDateTime": "2020-08-20T21:24:38Z" + }, + { + "modelId": "d9d6453d-555a-411b-8969-29023fc1d347", + "attributes": { + "isComposed": false + }, + "status": "ready", + "createdDateTime": "2020-08-20T21:50:19Z", + "lastUpdatedDateTime": "2020-08-20T21:50:21Z" + }, + { + "modelId": "da9ff68e-3cb0-4066-8030-84fac4049adf", + "status": "ready", + "createdDateTime": "2020-08-20T23:26:42Z", + "lastUpdatedDateTime": "2020-08-20T23:26:55Z" + }, + { + "modelId": "db37c79c-cb7c-4e82-b5a6-de8761e95791", + "status": "creating", + "createdDateTime": "2020-08-17T22:33:39Z", + "lastUpdatedDateTime": "2020-08-17T22:33:39Z" + }, + { + "modelId": "de0c3af0-ab73-4a50-88b9-0be008348ff3", + "status": "ready", + "createdDateTime": "2020-08-14T19:12:59Z", + "lastUpdatedDateTime": "2020-08-14T19:13:07Z" + }, + { + "modelId": "ded45364-1d15-4185-9ba1-349085488c79", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-09-09T22:24:23Z", - "lastUpdatedDateTime": "2020-09-09T22:24:25Z" + "createdDateTime": "2020-08-20T21:31:28Z", + "lastUpdatedDateTime": "2020-08-20T21:31:30Z" + }, + { + "modelId": "df46a938-d337-4664-82f6-13fe40a3ccbd", + "status": "ready", + "createdDateTime": "2020-08-05T20:05:23Z", + "lastUpdatedDateTime": "2020-08-05T20:05:34Z" }, { - "modelId": "eff726db-d669-457a-b2a4-f003290d914c", + "modelId": "dfed1264-2f66-4fa1-83fd-adce189c3ae9", + "status": "creating", + "createdDateTime": "2020-08-17T22:30:35Z", + "lastUpdatedDateTime": "2020-08-17T22:30:35Z" + }, + { + "modelId": "e10d0994-db23-4546-9ea7-377e52f85c7e", "status": "ready", - "createdDateTime": "2020-08-11T23:26:32Z", - "lastUpdatedDateTime": "2020-08-11T23:26:45Z" + "createdDateTime": "2020-08-20T21:47:40Z", + "lastUpdatedDateTime": "2020-08-20T21:47:48Z" + }, + { + "modelId": "e1fb3fc5-8672-4d3c-ad29-fa0c489f21fd", + "status": "invalid", + "createdDateTime": "2020-08-20T18:43:14Z", + "lastUpdatedDateTime": "2020-08-20T18:43:15Z" }, { - "modelId": "f0261c04-3454-4073-ae5f-c2f450dcd690", + "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", + "status": "ready", + "createdDateTime": "2020-08-20T18:47:17Z", + "lastUpdatedDateTime": "2020-08-20T18:47:25Z" + } + ], + "nextLink": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com:443/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyNGY1YjFlLTQxNjctNGZjNy04NGZiLTI5OGYwODNhMTk1OS9lMjRmNWIxZS00MTY3LTRmYzctODRmYi0yOThmMDgzYTE5NTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-" + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?nextLink=2!236!MDAwMTMyIXN1YnNjcmlwdGlvbnMvYjFhOTYyODAzYjdhNDU5ODlhY2RlYWE5MDU3YTRmZTQvbW9kZWxzL2UyNGY1YjFlLTQxNjctNGZjNy04NGZiLTI5OGYwODNhMTk1OS9lMjRmNWIxZS00MTY3LTRmYzctODRmYi0yOThmMDgzYTE5NTkuanNvbiEwMDAwMjghOTk5OS0xMi0zMVQyMzo1OTo1OS45OTk5OTk5WiE-", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ab48397e543b4bc0cf8affdf85d431e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f36e499a-cf38-46ef-881d-d81b50f66ed0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 13:32:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "275" + }, + "ResponseBody": { + "modelList": [ + { + "modelId": "e24f5b1e-4167-4fc7-84fb-298f083a1959", "status": "ready", - "createdDateTime": "2020-08-06T23:37:58Z", - "lastUpdatedDateTime": "2020-08-06T23:38:08Z" + "createdDateTime": "2020-08-20T18:47:17Z", + "lastUpdatedDateTime": "2020-08-20T18:47:25Z" }, { - "modelId": "f0add33b-8563-4329-855b-665e87cafc5c", + "modelId": "e29f1d60-4987-478c-b1c7-ad4dd466a719", "status": "ready", - "createdDateTime": "2020-08-26T17:33:04Z", - "lastUpdatedDateTime": "2020-08-26T17:33:17Z" + "createdDateTime": "2020-08-20T21:50:10Z", + "lastUpdatedDateTime": "2020-08-20T21:50:18Z" + }, + { + "modelId": "e2d2eecf-d810-4fd9-8b94-cc370a9d3dc5", + "status": "creating", + "createdDateTime": "2020-08-20T21:49:40Z", + "lastUpdatedDateTime": "2020-08-20T21:49:40Z" + }, + { + "modelId": "e31e548b-1c1a-4345-907b-b77bec13260d", + "status": "creating", + "createdDateTime": "2020-08-17T17:11:47Z", + "lastUpdatedDateTime": "2020-08-17T17:11:47Z" }, { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859", + "modelId": "e4100004-e84e-4795-b220-983fafee5a10", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-09-09T22:15:54Z", - "lastUpdatedDateTime": "2020-09-09T22:16:06Z" + "createdDateTime": "2020-10-30T13:19:24Z", + "lastUpdatedDateTime": "2020-10-30T13:19:26Z" + }, + { + "modelId": "e4949cbb-05e0-4d1b-bab9-c4e444b25c9e", + "status": "invalid", + "createdDateTime": "2020-08-14T19:08:50Z", + "lastUpdatedDateTime": "2020-08-14T19:08:51Z" + }, + { + "modelId": "e8679f07-a7ae-43ff-af1c-417567ece17f", + "status": "creating", + "createdDateTime": "2020-08-14T19:08:23Z", + "lastUpdatedDateTime": "2020-08-14T19:08:23Z" + }, + { + "modelId": "eb78387f-b93d-47c4-8ff2-5a75fa2848c2", + "status": "creating", + "createdDateTime": "2020-08-17T17:11:08Z", + "lastUpdatedDateTime": "2020-08-17T17:11:08Z" + }, + { + "modelId": "eccc2f1b-08fc-4bdf-af54-45bbb3a94dc8", + "status": "creating", + "createdDateTime": "2020-08-20T21:47:16Z", + "lastUpdatedDateTime": "2020-08-20T21:47:16Z" }, { - "modelId": "f4579713-39a2-421d-b166-08a7a50e12f3", + "modelId": "f019ba8f-b377-4307-aed2-2e357d88faad", + "status": "invalid", + "createdDateTime": "2020-08-14T19:10:55Z", + "lastUpdatedDateTime": "2020-08-14T19:10:56Z" + }, + { + "modelId": "f0790982-b19e-4f0b-9f3d-0bd73c22d50b", "status": "ready", - "createdDateTime": "2020-08-26T17:53:18Z", - "lastUpdatedDateTime": "2020-08-26T17:53:26Z" + "createdDateTime": "2020-08-20T18:45:40Z", + "lastUpdatedDateTime": "2020-08-20T18:45:50Z" }, { - "modelId": "f5e89999-37c5-41ef-88b9-4341e3ab14b1", + "modelId": "f09bb379-e552-423b-a66e-11d4a47b4cad", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:34:55Z", - "lastUpdatedDateTime": "2020-08-26T17:34:56Z" + "createdDateTime": "2020-08-14T19:45:30Z", + "lastUpdatedDateTime": "2020-08-14T19:45:41Z" + }, + { + "modelId": "f16a5995-6f9d-429c-a9ce-94b42e707f4e", + "status": "ready", + "createdDateTime": "2020-08-20T21:23:21Z", + "lastUpdatedDateTime": "2020-08-20T21:23:32Z" + }, + { + "modelId": "f2b17543-4827-4824-8f0a-297915305924", + "status": "creating", + "createdDateTime": "2020-08-20T23:25:39Z", + "lastUpdatedDateTime": "2020-08-20T23:25:39Z" + }, + { + "modelId": "f313494f-2d7d-4c1b-baca-4f019e1bb372", + "status": "ready", + "createdDateTime": "2020-08-20T21:23:09Z", + "lastUpdatedDateTime": "2020-08-20T21:23:17Z" }, { - "modelId": "f7797595-6c64-490c-9048-b1bef3c8bfb0", + "modelId": "f4a51dde-7357-46f7-b160-1321e8cf6a8e", + "status": "creating", + "createdDateTime": "2020-08-20T21:25:03Z", + "lastUpdatedDateTime": "2020-08-20T21:25:03Z" + }, + { + "modelId": "f5b14d6e-2c12-4a8b-a26b-6f919fb3fc22", "status": "ready", - "createdDateTime": "2020-08-26T17:32:35Z", - "lastUpdatedDateTime": "2020-08-26T17:32:39Z" + "createdDateTime": "2020-08-20T18:27:28Z", + "lastUpdatedDateTime": "2020-08-20T18:27:36Z" }, { - "modelId": "f9479181-78be-4c36-86d0-1d2248f05941", + "modelId": "f630338a-704f-49e6-90df-3661cdb70919", "attributes": { "isComposed": false }, "status": "ready", - "createdDateTime": "2020-08-26T17:53:15Z", - "lastUpdatedDateTime": "2020-08-26T17:53:17Z" + "createdDateTime": "2020-08-20T21:47:48Z", + "lastUpdatedDateTime": "2020-08-20T21:47:49Z" + }, + { + "modelId": "f86960b5-529c-434d-900e-72383c3535bd", + "status": "ready", + "createdDateTime": "2020-08-20T21:27:51Z", + "lastUpdatedDateTime": "2020-08-20T21:27:59Z" + }, + { + "modelId": "f8ec4bc9-ae6d-4ff7-ae5e-5ce9155164cf", + "status": "ready", + "createdDateTime": "2020-08-20T23:32:06Z", + "lastUpdatedDateTime": "2020-08-20T23:32:14Z" }, { - "modelId": "f94ccf91-64ab-4c90-baf6-c37ca2201301", + "modelId": "f9ad28eb-5fdc-4844-8a72-04a115dd2029", "status": "creating", - "createdDateTime": "2020-08-11T23:25:53Z", - "lastUpdatedDateTime": "2020-08-11T23:25:53Z" + "createdDateTime": "2020-08-20T18:42:49Z", + "lastUpdatedDateTime": "2020-08-20T18:42:49Z" }, { - "modelId": "fa1f65c2-0b27-4061-8928-61b6d0659d18", + "modelId": "f9eac550-7eab-49e7-ac68-71da7921e50e", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-08-26T17:51:36Z", - "lastUpdatedDateTime": "2020-08-26T17:51:48Z" + "createdDateTime": "2020-10-30T13:24:04Z", + "lastUpdatedDateTime": "2020-10-30T13:24:06Z" }, { - "modelId": "fd4189a4-0770-41b7-a564-3458a22681ae", + "modelId": "fa826a53-a1a9-43e9-a865-4299f0f0b100", + "status": "creating", + "createdDateTime": "2020-10-30T13:19:47Z", + "lastUpdatedDateTime": "2020-10-30T13:19:47Z" + }, + { + "modelId": "fae7acb8-2ffc-40d1-9e07-a2f2af6f54f5", "status": "ready", - "createdDateTime": "2020-08-26T17:34:57Z", - "lastUpdatedDateTime": "2020-08-26T17:35:10Z" + "createdDateTime": "2020-08-20T21:25:43Z", + "lastUpdatedDateTime": "2020-08-20T21:25:54Z" + }, + { + "modelId": "fbc59a11-f373-4f3d-b24c-3e32aa033d7e", + "status": "creating", + "createdDateTime": "2020-08-20T18:42:56Z", + "lastUpdatedDateTime": "2020-08-20T18:42:56Z" }, { - "modelId": "fffcab2a-f5f1-490f-94a1-a52c4c65a3e4", + "modelId": "fc0d549e-3a1f-4eda-bb96-fb6bf60c0f53", + "attributes": { + "isComposed": false + }, "status": "ready", - "createdDateTime": "2020-09-09T22:21:23Z", - "lastUpdatedDateTime": "2020-09-09T22:22:04Z" + "createdDateTime": "2020-08-20T21:47:32Z", + "lastUpdatedDateTime": "2020-08-20T21:47:39Z" + }, + { + "modelId": "fca987e8-8ed2-4c00-8aa4-eeff583bb155", + "status": "creating", + "createdDateTime": "2020-08-20T21:49:40Z", + "lastUpdatedDateTime": "2020-08-20T21:49:40Z" } ], "nextLink": "" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models?op=summary", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models?op=summary", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-302c42432bb6b64087eb984e562fac49-7abeb8fa66d30f49-00", + "traceparent": "00-5b02458d73a2aa41985b232f1de1a554-9be5164ef85a4444-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1511d3b211adc934d3c93ce856e73db6", + "x-ms-client-request-id": "1750b7b1da6fd4541e4185e808ccfd1c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d23bad9d-7b28-4526-a9df-5135c25a136a", + "apim-request-id": "23cefc14-6a76-4432-855b-ec6da32c3348", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:53 GMT", + "Date": "Fri, 30 Oct 2020 13:32:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "175" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "summary": { - "count": 149, + "count": 267, "limit": 5000, - "lastUpdatedDateTime": "2020-09-09T22:24:53Z" + "lastUpdatedDateTime": "2020-10-30T13:32:59Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d105b6ec-2f04-43eb-bc3d-fa3a2a687166", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f34395e14fb19243a1c15e1f19775b0f-50a5c39b77db634a-00", + "traceparent": "00-4dfc4c34fb0f9640865d924093bc82c8-bfd6e5bc27a7684a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "43eb21426610860415cd8c6098ee1784", + "x-ms-client-request-id": "5fe2334f6ca543487f2c93d76e2324e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "7cdbb0f6-bfcf-4396-a77a-33848f983965", + "apim-request-id": "074318f7-6626-4746-b4b0-95bb45f4dea0", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:24:53 GMT", + "Date": "Fri, 30 Oct 2020 13:32:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "55" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/d105b6ec-2f04-43eb-bc3d-fa3a2a687166?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/cee40303-8aaa-418a-b5b4-9055cb5bb4d8?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1dfed10d26c9034d8952b56bc2c1be51-57f31997f01b6c4e-00", + "traceparent": "00-432096f2ef10a64d9526fff5b9fc107d-354c4d663631f443-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "62783f976d61a903be285e3789f87e58", + "x-ms-client-request-id": "d18579f767a8a3e9e4738dfacfd84303", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "apim-request-id": "c8dea1bb-2efb-43a9-ab49-f5f9b10d29d9", + "apim-request-id": "d9f24b1d-5449-4ff6-a358-4a054d7ca100", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:24:53 GMT", + "Date": "Fri, 30 Oct 2020 13:32:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "error": { "code": "1022", - "message": "Model with \u0027id=d105b6ec-2f04-43eb-bc3d-fa3a2a687166\u0027 not found." + "message": "Model with \u0027id=cee40303-8aaa-418a-b5b4-9055cb5bb4d8\u0027 not found." } } } @@ -1568,7 +2695,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1785494243" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/CopyModelOperationCanPollFromNewObject.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/CopyModelOperationCanPollFromNewObject.json index e4b745c446eca..c0b1276f863be 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/CopyModelOperationCanPollFromNewObject.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/CopyModelOperationCanPollFromNewObject.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9c0526fa70f23b4ba6371f9cc9529763-486f5d1847200a4a-00", + "traceparent": "00-956b0c49c488da43bbcabfa61ee8a109-efa7b26a2c0b914e-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4723e7c57cc1c3a2b79fbacead1f689b", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "7d5e3954-2940-4426-b759-fc8618e9adbd", + "apim-request-id": "e1bff5c8-870b-478a-a3bb-5174a7f39071", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:15:54 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2", + "Date": "Fri, 30 Oct 2020 16:42:35 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "221" + "x-envoy-upstream-service-time": "297" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "161062748ad976a60a5e94063cac13d6", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d303c723-e683-48f9-8ec8-9237cb6fd612", + "apim-request-id": "fb00d980-c2dd-4410-9024-5f4744ec5b68", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:15:54 GMT", + "Date": "Fri, 30 Oct 2020 16:42:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "modelInfo": { - "modelId": "2a18f358-45d2-47a5-b2ab-d49e88ff7ce2", + "modelId": "fb757b82-ca94-4637-bc45-17467bc515cf", "status": "creating", - "createdDateTime": "2020-09-09T22:15:54Z", - "lastUpdatedDateTime": "2020-09-09T22:15:54Z" + "createdDateTime": "2020-10-30T16:42:35Z", + "lastUpdatedDateTime": "2020-10-30T16:42:35Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d1e38652753bef9af487342d9a03596d", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14fd7903-fed2-4ced-906a-227ba0f04da2", + "apim-request-id": "dfba9594-5db2-4a64-9224-3051e5f9cf89", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:15:55 GMT", + "Date": "Fri, 30 Oct 2020 16:42:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { "modelInfo": { - "modelId": "2a18f358-45d2-47a5-b2ab-d49e88ff7ce2", + "modelId": "fb757b82-ca94-4637-bc45-17467bc515cf", "status": "creating", - "createdDateTime": "2020-09-09T22:15:54Z", - "lastUpdatedDateTime": "2020-09-09T22:15:54Z" + "createdDateTime": "2020-10-30T16:42:35Z", + "lastUpdatedDateTime": "2020-10-30T16:42:35Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d3798fbf36c63b9d41ad3c62e89c860b", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5aa79325-ed9e-4b8b-9a42-391e2ad878c5", + "apim-request-id": "9d183932-c3ad-48ad-9dd6-8bbf1736e9a2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:15:56 GMT", + "Date": "Fri, 30 Oct 2020 16:42:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "2a18f358-45d2-47a5-b2ab-d49e88ff7ce2", + "modelId": "fb757b82-ca94-4637-bc45-17467bc515cf", "status": "creating", - "createdDateTime": "2020-09-09T22:15:54Z", - "lastUpdatedDateTime": "2020-09-09T22:15:54Z" + "createdDateTime": "2020-10-30T16:42:35Z", + "lastUpdatedDateTime": "2020-10-30T16:42:35Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "277ce38c973bff60c82121525578db07", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1baa9b91-32c9-430a-8be3-e2cc522a2a39", + "apim-request-id": "a32638db-b014-4c7e-a22a-ba4b73e1f1dd", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:15:57 GMT", + "Date": "Fri, 30 Oct 2020 16:42:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "modelInfo": { - "modelId": "2a18f358-45d2-47a5-b2ab-d49e88ff7ce2", + "modelId": "fb757b82-ca94-4637-bc45-17467bc515cf", "status": "creating", - "createdDateTime": "2020-09-09T22:15:54Z", - "lastUpdatedDateTime": "2020-09-09T22:15:54Z" + "createdDateTime": "2020-10-30T16:42:35Z", + "lastUpdatedDateTime": "2020-10-30T16:42:35Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ac4627043f331b0fe8a88f8e39370757", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c56da07-d260-4d41-8a42-21902c9e38d4", + "apim-request-id": "ecda3266-478d-4840-8f72-4db8910c4ad8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:15:58 GMT", + "Date": "Fri, 30 Oct 2020 16:42:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "modelInfo": { - "modelId": "2a18f358-45d2-47a5-b2ab-d49e88ff7ce2", + "modelId": "fb757b82-ca94-4637-bc45-17467bc515cf", "status": "creating", - "createdDateTime": "2020-09-09T22:15:54Z", - "lastUpdatedDateTime": "2020-09-09T22:15:54Z" + "createdDateTime": "2020-10-30T16:42:35Z", + "lastUpdatedDateTime": "2020-10-30T16:42:35Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b7a02900328728312f7a0ba5144be6c8", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0ca93fa5-6a7d-4bb8-bcc4-6641eb34ac66", + "apim-request-id": "dbd4c456-f293-4192-bfe4-487bdf59da92", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:04 GMT", + "Date": "Fri, 30 Oct 2020 16:42:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5083" + "x-envoy-upstream-service-time": "124" }, "ResponseBody": { "modelInfo": { - "modelId": "2a18f358-45d2-47a5-b2ab-d49e88ff7ce2", + "modelId": "fb757b82-ca94-4637-bc45-17467bc515cf", "status": "creating", - "createdDateTime": "2020-09-09T22:15:54Z", - "lastUpdatedDateTime": "2020-09-09T22:15:54Z" + "createdDateTime": "2020-10-30T16:42:35Z", + "lastUpdatedDateTime": "2020-10-30T16:42:35Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c05d35d2d9564cd8d3603e9307d2c691", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "927f3a21-f9fc-4326-bacf-9172b7894386", + "apim-request-id": "d5af0b90-6785-47ce-83ad-4472b5520456", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:05 GMT", + "Date": "Fri, 30 Oct 2020 16:42:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "modelInfo": { - "modelId": "2a18f358-45d2-47a5-b2ab-d49e88ff7ce2", + "modelId": "fb757b82-ca94-4637-bc45-17467bc515cf", "status": "creating", - "createdDateTime": "2020-09-09T22:15:54Z", - "lastUpdatedDateTime": "2020-09-09T22:15:54Z" + "createdDateTime": "2020-10-30T16:42:35Z", + "lastUpdatedDateTime": "2020-10-30T16:42:35Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2b51ca1923d8d27ff61d7db8346a079c", "x-ms-return-client-request-id": "true" @@ -279,20 +279,119 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a45b4dd-41ea-4e9b-8865-f26d7bae80b4", + "apim-request-id": "2ef9641f-ff78-477c-bfaa-ad5105cac7ba", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:42:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "fb757b82-ca94-4637-bc45-17467bc515cf", + "status": "creating", + "createdDateTime": "2020-10-30T16:42:35Z", + "lastUpdatedDateTime": "2020-10-30T16:42:35Z" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "03bbc7c246d927015153e326f39d215d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "87f4a4e5-fcd0-438e-8af3-b87384f6e187", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:42:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "fb757b82-ca94-4637-bc45-17467bc515cf", + "status": "creating", + "createdDateTime": "2020-10-30T16:42:35Z", + "lastUpdatedDateTime": "2020-10-30T16:42:35Z" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4a8b79b3bafaaef0b58bca385c1f1869", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b8406cf4-4344-4739-af78-f7a22da7e950", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:42:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "125" + }, + "ResponseBody": { + "modelInfo": { + "modelId": "fb757b82-ca94-4637-bc45-17467bc515cf", + "status": "creating", + "createdDateTime": "2020-10-30T16:42:35Z", + "lastUpdatedDateTime": "2020-10-30T16:42:35Z" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf?includeKeys=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3fd1a159c216d3b7c82ad9844059de58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b243c414-9baa-4695-b6a9-96d2d2176046", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:07 GMT", + "Date": "Fri, 30 Oct 2020 16:42:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "72" + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "modelInfo": { - "modelId": "2a18f358-45d2-47a5-b2ab-d49e88ff7ce2", + "modelId": "fb757b82-ca94-4637-bc45-17467bc515cf", "status": "ready", - "createdDateTime": "2020-09-09T22:15:54Z", - "lastUpdatedDateTime": "2020-09-09T22:16:06Z" + "createdDateTime": "2020-10-30T16:42:35Z", + "lastUpdatedDateTime": "2020-10-30T16:42:47Z" }, "keys": { "clusters": { @@ -362,190 +461,586 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/copyAuthorization", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "03bbc7c246d927015153e326f39d215d", + "x-ms-client-request-id": "ba0420fcbdde07a2d60d4e4e7bc8ca32", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "526436cf-3803-44fe-a8eb-76387b1ea237", + "apim-request-id": "931ba216-79e5-4363-a2c8-60bf84df5267", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:07 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/f3dac91f-a8d6-4865-a2d0-5543ab517859", + "Date": "Fri, 30 Oct 2020 16:42:47 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/6c6eaea0-3101-4707-ad75-756d7a2e32e1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "195" + "x-envoy-upstream-service-time": "165" }, "ResponseBody": { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859", + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776167 + "expirationDateTimeTicks": 1604162567 } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2/copy", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copy", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", - "Content-Length": "348", + "Content-Length": "352", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4a8b79b3bafaaef0b58bca385c1f1869", + "x-ms-client-request-id": "51cd7a3be1ccf147c1b881cfe06c6d5b", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "targetResourceRegion": "westus2", + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "targetResourceRegion": "westcentralus", "copyAuthorization": { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859", + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776167 + "expirationDateTimeTicks": 1604162567 } }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6c985cb3-fae7-4b4a-bd9f-ccff9e266669", + "apim-request-id": "25c90a07-8f40-48a7-ba99-1aa87cf748a8", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:16:07 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2/copyresults/4757737c-7bca-49eb-ae88-bf59321a5b31", + "Date": "Fri, 30 Oct 2020 16:42:47 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyresults/4ccc574e-4864-420b-b1fc-450eb7b2764f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "84" + "x-envoy-upstream-service-time": "155" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2/copyResults/4757737c-7bca-49eb-ae88-bf59321a5b31", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3fd1a159c216d3b7c82ad9844059de58", + "x-ms-client-request-id": "3c3c72ac5d1a9b8affca680873695700", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "643eebc1-f66d-4155-810f-9965caa10f7a", + "apim-request-id": "c0b2bf12-f4ef-44c4-b8b2-e0dd20c2a030", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:07 GMT", + "Date": "Fri, 30 Oct 2020 16:42:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:16:08Z", - "lastUpdatedDateTime": "2020-09-09T22:16:08Z", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", "copyResult": { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859" + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2/copyResults/4757737c-7bca-49eb-ae88-bf59321a5b31", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ba0420fcbdde07a2d60d4e4e7bc8ca32", + "x-ms-client-request-id": "c548a75f8d8b1a8cd913f8263bd2266a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b374756d-9e7c-44b1-96ce-e8707bbe1671", + "apim-request-id": "d60b71be-51c4-4f4a-a130-89aaeff8d2c4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:08 GMT", + "Date": "Fri, 30 Oct 2020 16:42:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "86" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:16:08Z", - "lastUpdatedDateTime": "2020-09-09T22:16:08Z", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", "copyResult": { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859" + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2/copyResults/4757737c-7bca-49eb-ae88-bf59321a5b31", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "51cd7a3be1ccf147c1b881cfe06c6d5b", + "x-ms-client-request-id": "09a1f39f8e8bdd18f0315202783e7d58", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81d8ea58-b9fb-47c4-af42-f835f62003f2", + "apim-request-id": "ea4e51ab-4033-435f-8c25-dbad997226b2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:09 GMT", + "Date": "Fri, 30 Oct 2020 16:42:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:16:08Z", - "lastUpdatedDateTime": "2020-09-09T22:16:08Z", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", "copyResult": { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859" + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2/copyResults/4757737c-7bca-49eb-ae88-bf59321a5b31", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3c3c72ac5d1a9b8affca680873695700", + "x-ms-client-request-id": "39708160a8231fd0e522620665635f2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "771e1325-0cbb-4e52-a361-6ac6f27fe175", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:42:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8068fea34dc8d0748f6bd4593a89a19a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0fdccc7b-0458-4a15-ae32-6d8387022382", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:42:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bac5a095ec62f747228123692b11788c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fe416192-c4ad-48ad-af22-28c213494599", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:42:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7a5e26d1fdd513900c9faab8d376e55c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "57f1701e-0b51-4b8a-8903-59b23ef9283f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:42:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c571c880a59db6c9b7715d46290aa47e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "187d8720-497c-44c3-a207-bc56cd406b51", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:42:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "148748f2272b97c410b2adc3428e23ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f7ab3acd-62d8-4626-8068-f0a8964ba35c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:42:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "63e9c79cb39f2cef5ca7c364a049e902", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4cd8d4df-b0a8-493a-8d11-9a1fc5194f09", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:42:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8bc52cfad0ee583003d9b4ebf7067428", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8c9bf1e1-03e2-4523-aee9-fd71af8d94f2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:42:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "61a9b04d40203fde585bb7836460f7c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "426c845b-deec-44f7-9386-2afba9feb729", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:43:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "16c8abc898c8cbbe979160c5fe033556", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2d7515d4-dc53-40d1-8dd5-8cd56f18cb48", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:43:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ef169a33879fb9e14d86329319adf4a2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0bb616f0-b363-459a-9f46-a8401b5fa2fe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:43:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "98" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4b22eee15e3db55ff2ddca8fe0184155", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bfe20e45-b9f4-4b60-a91b-1dc2924026ed", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:43:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c950602508494126c90ec842652bb2e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3dadcc1d-3239-4740-b9d9-359bbd36cff8", + "apim-request-id": "a32a498d-44a7-4792-8199-0baa7c26da7c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:10 GMT", + "Date": "Fri, 30 Oct 2020 16:43:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -553,32 +1048,32 @@ }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:16:08Z", - "lastUpdatedDateTime": "2020-09-09T22:16:08Z", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", "copyResult": { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859" + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2/copyResults/4757737c-7bca-49eb-ae88-bf59321a5b31", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c548a75f8d8b1a8cd913f8263bd2266a", + "x-ms-client-request-id": "10e4bd9ce9e1d5183b60fdc2bd52d935", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "363451ff-da46-489a-803a-db6ea5526878", + "apim-request-id": "3c885a24-03d8-4124-aa62-233cbede659e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:11 GMT", + "Date": "Fri, 30 Oct 2020 16:43:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -586,131 +1081,131 @@ }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:16:08Z", - "lastUpdatedDateTime": "2020-09-09T22:16:08Z", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", "copyResult": { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859" + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2/copyResults/4757737c-7bca-49eb-ae88-bf59321a5b31", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "09a1f39f8e8bdd18f0315202783e7d58", + "x-ms-client-request-id": "b86ddd452b5cd958c7e1822f951d50c6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5222187c-aa90-4d08-b7f4-91a833000175", + "apim-request-id": "65be9561-98a9-4780-a8cb-246a130a058a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:12 GMT", + "Date": "Fri, 30 Oct 2020 16:43:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:16:08Z", - "lastUpdatedDateTime": "2020-09-09T22:16:08Z", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", "copyResult": { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859" + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2/copyResults/4757737c-7bca-49eb-ae88-bf59321a5b31", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "39708160a8231fd0e522620665635f2c", + "x-ms-client-request-id": "22f2e02b30343c73487a8ee90b648377", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "081664e6-26fd-44c7-8917-214147052695", + "apim-request-id": "cd63fb97-1e74-46e8-8881-5009b6ff911d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:13 GMT", + "Date": "Fri, 30 Oct 2020 16:43:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:16:08Z", - "lastUpdatedDateTime": "2020-09-09T22:16:08Z", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", "copyResult": { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859" + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2/copyResults/4757737c-7bca-49eb-ae88-bf59321a5b31", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8068fea34dc8d0748f6bd4593a89a19a", + "x-ms-client-request-id": "88fd9335f9bd718d640a480067e93f1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4fe918a6-5a3f-4960-9b0f-f7cd048dd393", + "apim-request-id": "d9f907be-8425-45bd-a3f2-9f33be94c962", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:15 GMT", + "Date": "Fri, 30 Oct 2020 16:43:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:16:08Z", - "lastUpdatedDateTime": "2020-09-09T22:16:08Z", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", "copyResult": { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859" + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2/copyResults/4757737c-7bca-49eb-ae88-bf59321a5b31", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "bac5a095ec62f747228123692b11788c", + "x-ms-client-request-id": "dc963610b65f1400693170e19c6fce63", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3542dba-3418-4c4b-b1eb-e8ff13d1d498", + "apim-request-id": "8cdb86bb-afc8-48e3-93e4-55617b497312", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:16 GMT", + "Date": "Fri, 30 Oct 2020 16:43:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -718,32 +1213,65 @@ }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:16:08Z", - "lastUpdatedDateTime": "2020-09-09T22:16:08Z", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", "copyResult": { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859" + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2/copyResults/4757737c-7bca-49eb-ae88-bf59321a5b31", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7a5e26d1fdd513900c9faab8d376e55c", + "x-ms-client-request-id": "01fa0b5dc71f31085381bd29e873d55e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d519773c-4fdc-48c6-9115-cff3092322bf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:43:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d4d8703aa7cd7e1792e81e8c88abd4f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1bbf2bc1-023a-450f-810e-3a8c4c730305", + "apim-request-id": "081196b3-2c15-47fc-aafc-fc03e7b685b9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:17 GMT", + "Date": "Fri, 30 Oct 2020 16:43:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -751,69 +1279,135 @@ }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:16:08Z", - "lastUpdatedDateTime": "2020-09-09T22:16:08Z", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", "copyResult": { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859" + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2/copyResults/4757737c-7bca-49eb-ae88-bf59321a5b31", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c571c880a59db6c9b7715d46290aa47e", + "x-ms-client-request-id": "5ba2e43c3eef49fe2d6488def8d62bf6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eed71f85-e3f3-4acd-a179-30a6a67ca61d", + "apim-request-id": "99b1c033-f8f9-4d43-8aa9-147ea70128dc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:18 GMT", + "Date": "Fri, 30 Oct 2020 16:43:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "status": "notStarted", + "createdDateTime": "2020-10-30T16:42:48Z", + "lastUpdatedDateTime": "2020-10-30T16:42:48Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2ca6115cf997b595f37b6e37a97ca8a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "be1d76cd-dfdb-430c-8d2e-373ba16ece38", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:43:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "status": "running", + "createdDateTime": "2020-10-30T16:43:14.215756Z", + "lastUpdatedDateTime": "2020-10-30T16:43:14.2157561Z", + "copyResult": { + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" + } + } + }, + { + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf/copyResults/4ccc574e-4864-420b-b1fc-450eb7b2764f", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "03edc8ac79d0fc6f728fa6691f3985bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ce038350-78b0-4c44-b6df-4cc5a91ae610", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 30 Oct 2020 16:43:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:16:18.1247576Z", - "lastUpdatedDateTime": "2020-09-09T22:16:18.1247578Z", + "createdDateTime": "2020-10-30T16:43:14.5986118Z", + "lastUpdatedDateTime": "2020-10-30T16:43:14.598612Z", "copyResult": { - "modelId": "f3dac91f-a8d6-4865-a2d0-5543ab517859" + "modelId": "6c6eaea0-3101-4707-ad75-756d7a2e32e1" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/2a18f358-45d2-47a5-b2ab-d49e88ff7ce2", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/fb757b82-ca94-4637-bc45-17467bc515cf", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1d35543486fb9146b2bfcbc036dad34c-a1fb0945af4a2141-00", + "traceparent": "00-44bd94df769c9744b964cf3f443ae6b3-a5ba0d034e654a4d-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "148748f2272b97c410b2adc3428e23ac", + "x-ms-client-request-id": "773027bda804425d4fed6873cfc69fb1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "2063364f-267b-4fd1-a273-d5c6b1fad93b", + "apim-request-id": "6381f16f-6558-4a2e-91b8-591aed1d3b6f", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:16:18 GMT", + "Date": "Fri, 30 Oct 2020 16:43:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": [] } @@ -821,9 +1415,9 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westus2", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", "RandomSeed": "414312356" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/CopyModelOperationCanPollFromNewObjectAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/CopyModelOperationCanPollFromNewObjectAsync.json index 227ea1be6e221..40476a0187ff4 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/CopyModelOperationCanPollFromNewObjectAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/CopyModelOperationCanPollFromNewObjectAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cda36c0ca570ec49a2c3d3d82ac6cd36-c5e57b48d4295140-00", + "traceparent": "00-498207a287f1c24da246166575393866-8f7a18777a282a40-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a6922afb16f1ec33072562d6233f58cc", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "82a9ff73-40ac-4d91-a7e3-fbaf5f60c3a7", + "apim-request-id": "24fd8795-1f99-4d4a-9e61-e55a81e7e826", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:17:12 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "Date": "Fri, 30 Oct 2020 16:43:15 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "224" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9b45d8c05604ae4da755777314030691", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7649d4a9-e820-46c2-a485-e3c2cb47a1ad", + "apim-request-id": "faf693bb-fef7-4b54-99c2-ad50ae6d6928", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:13 GMT", + "Date": "Fri, 30 Oct 2020 16:43:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "modelId": "c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" + "createdDateTime": "2020-10-30T16:43:16Z", + "lastUpdatedDateTime": "2020-10-30T16:43:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d7ca2c8f45020bb5ef1fdad5c5e70003", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8dd79723-2b22-497e-acf3-608c378cb82b", + "apim-request-id": "e51d137e-0995-413d-ab51-cde3898c8469", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:14 GMT", + "Date": "Fri, 30 Oct 2020 16:43:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "modelId": "c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" + "createdDateTime": "2020-10-30T16:43:16Z", + "lastUpdatedDateTime": "2020-10-30T16:43:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8d6a1d04da54a576dde4fe9b9ec0d704", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d966454e-d3dd-4066-af81-d3d55496fbff", + "apim-request-id": "96961f17-7641-404a-a7f1-292bc392bdcc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:15 GMT", + "Date": "Fri, 30 Oct 2020 16:43:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "modelId": "c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" + "createdDateTime": "2020-10-30T16:43:16Z", + "lastUpdatedDateTime": "2020-10-30T16:43:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f647d01f80757bc92339abe47b77e8c0", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "845f93c6-0b1d-49bb-9bd9-d369ed428971", + "apim-request-id": "b6386e96-692e-42f1-8e6c-67d6271fec2c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:16 GMT", + "Date": "Fri, 30 Oct 2020 16:43:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "modelId": "c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" + "createdDateTime": "2020-10-30T16:43:16Z", + "lastUpdatedDateTime": "2020-10-30T16:43:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f66e73557898b43db624fa1e47196d2f", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4097eb45-a1ec-4e41-bd5d-1d8a99efccab", + "apim-request-id": "5edf5b3f-13aa-4194-8c4f-fe5a3e51a63f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:17 GMT", + "Date": "Fri, 30 Oct 2020 16:43:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "modelId": "c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" + "createdDateTime": "2020-10-30T16:43:16Z", + "lastUpdatedDateTime": "2020-10-30T16:43:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f5b6d548099f838e53ef6a1a2e922965", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb3dbb62-a8ea-4422-a58a-2b409703638f", + "apim-request-id": "cf8dcb9d-32e8-4e2e-8b72-91c188be52a0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:18 GMT", + "Date": "Fri, 30 Oct 2020 16:43:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "modelId": "c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" + "createdDateTime": "2020-10-30T16:43:16Z", + "lastUpdatedDateTime": "2020-10-30T16:43:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2a463efbe151a66b9292405186aa3309", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0642fe09-217f-4185-8f30-b354e117af4c", + "apim-request-id": "164226e8-2f68-4fc4-b9ff-fb0741174018", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:19 GMT", + "Date": "Fri, 30 Oct 2020 16:43:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "modelId": "c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" + "createdDateTime": "2020-10-30T16:43:16Z", + "lastUpdatedDateTime": "2020-10-30T16:43:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a59c7cccf3c14c20e5eaa3a80d238624", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b4861463-0116-4820-b07a-b9aa8f936112", + "apim-request-id": "594ebfad-06f5-4081-8ccc-f586da60aa56", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:20 GMT", + "Date": "Fri, 30 Oct 2020 16:43:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "modelId": "c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" + "createdDateTime": "2020-10-30T16:43:16Z", + "lastUpdatedDateTime": "2020-10-30T16:43:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "082295fa43d366dd690f620dc83dfda8", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "153b0873-700a-40d6-9d2e-d2c2d544afb0", + "apim-request-id": "5aacff45-6c6f-4a5b-ad8f-686dad28e470", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:21 GMT", + "Date": "Fri, 30 Oct 2020 16:43:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "modelId": "c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" + "createdDateTime": "2020-10-30T16:43:16Z", + "lastUpdatedDateTime": "2020-10-30T16:43:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b24d61bb84f608a41df944663ec3996f", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11c09607-8f68-4897-83ce-9e00accd48b3", + "apim-request-id": "fd151ba1-8ea8-46cd-ab63-649149234fa8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:22 GMT", + "Date": "Fri, 30 Oct 2020 16:43:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "modelId": "c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" + "createdDateTime": "2020-10-30T16:43:16Z", + "lastUpdatedDateTime": "2020-10-30T16:43:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f1571c0c2a8889359e353bb1901383a8", "x-ms-return-client-request-id": "true" @@ -378,32 +378,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a107c17b-8d83-4149-bd4e-99fd70c7ba80", + "apim-request-id": "c94c65c1-35f1-4b4d-b87c-496621c0f301", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:23 GMT", + "Date": "Fri, 30 Oct 2020 16:43:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "modelId": "c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" + "createdDateTime": "2020-10-30T16:43:16Z", + "lastUpdatedDateTime": "2020-10-30T16:43:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "acecfaecd3d6762df01aebdafe7628a6", "x-ms-return-client-request-id": "true" @@ -411,32 +411,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "953ed03c-fd14-4401-82c4-c72c6f94edb5", + "apim-request-id": "c6b1e47a-7709-43e5-9503-7bed590c2eef", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:24 GMT", + "Date": "Fri, 30 Oct 2020 16:43:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "198" }, "ResponseBody": { "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "modelId": "c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" + "createdDateTime": "2020-10-30T16:43:16Z", + "lastUpdatedDateTime": "2020-10-30T16:43:16Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ac00f3760ce691202bc414c048f2770a", "x-ms-return-client-request-id": "true" @@ -444,86 +444,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c31c9e01-6989-46e5-b37d-89cad14136a2", + "apim-request-id": "4ad1baa3-0494-4abd-ad5a-2ab83b9f4c6e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:25 GMT", + "Date": "Fri, 30 Oct 2020 16:43:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", - "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "437a9c75ecd63998eee0006d3f5b8a27", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3f0bc905-2237-4a92-82ca-9a8ff8e75b5f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:26 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", - "status": "creating", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:13Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "9d3b950cd712dfc2d95b8011bf6c2efe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0cae9487-33de-41d6-8841-eef12ca41f02", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:27 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "modelId": "c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "status": "ready", - "createdDateTime": "2020-09-09T22:17:13Z", - "lastUpdatedDateTime": "2020-09-09T22:17:27Z" + "createdDateTime": "2020-10-30T16:43:16Z", + "lastUpdatedDateTime": "2020-10-30T16:43:30Z" }, "keys": { "clusters": { @@ -593,322 +527,256 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/copyAuthorization", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/copyAuthorization", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6264e0a2e5fc89cf5ac7be050cb351cf", + "x-ms-client-request-id": "437a9c75ecd63998eee0006d3f5b8a27", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "ea1f900e-288e-4cd4-a836-65a7db642944", + "apim-request-id": "70728467-4249-4316-af98-8b93e7305601", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:27 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/e31c6b14-abc1-42be-81c0-22a6c3eb44f4", + "Date": "Fri, 30 Oct 2020 16:43:30 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/8b27b8d9-9200-4915-b631-38a1f30f4774", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "204" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4", + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776248 + "expirationDateTimeTicks": 1604162611 } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copy", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copy", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", - "Content-Length": "348", + "Content-Length": "352", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b2b4ec39dab69ef8d99a6a7b6c877981", + "x-ms-client-request-id": "9d3b950cd712dfc2d95b8011bf6c2efe", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "targetResourceRegion": "westus2", + "targetResourceId": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "targetResourceRegion": "westcentralus", "copyAuthorization": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4", + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774", "accessToken": "Sanitized", - "expirationDateTimeTicks": 1599776248 + "expirationDateTimeTicks": 1604162611 } }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "be1bc41e-5c2d-462b-97fe-3d82014d9dad", + "apim-request-id": "0ddd6b54-a4b1-4dab-8511-b081f4059802", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:17:27 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyresults/34cbd275-be5b-4b54-87ca-603f6db06271", + "Date": "Fri, 30 Oct 2020 16:43:30 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyresults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "5fca01b228f7272bc5b1434a18bdd326", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "51f63e76-1d86-422b-8f59-344d970d7945", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:27 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", - "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d2d8b00a7bb8c848e8c588627a541dd3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6e6f0a33-a753-44f1-8cf7-d71fd1ba2838", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", - "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0b523c4df2e811d8c18ded0496ad851c", + "x-ms-client-request-id": "6264e0a2e5fc89cf5ac7be050cb351cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b30a5c7d-ed15-4f8f-8866-1107034ccf34", + "apim-request-id": "490f0428-c8b6-4002-97f1-822890491be6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:29 GMT", + "Date": "Fri, 30 Oct 2020 16:43:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", + "createdDateTime": "2020-10-30T16:43:31Z", + "lastUpdatedDateTime": "2020-10-30T16:43:31Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "bb7143c7a7af37c9b90277319fc8ac70", + "x-ms-client-request-id": "b2b4ec39dab69ef8d99a6a7b6c877981", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5041429-e338-4f03-ad11-6ef33e6abe47", + "apim-request-id": "67940be7-5784-44d7-94e6-460cfcc63b44", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:31 GMT", + "Date": "Fri, 30 Oct 2020 16:43:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", + "createdDateTime": "2020-10-30T16:43:31Z", + "lastUpdatedDateTime": "2020-10-30T16:43:31Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "dcfc7094c76a173ed8c6112a8e43323a", + "x-ms-client-request-id": "5fca01b228f7272bc5b1434a18bdd326", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "362dea52-4eb8-4045-ae2f-0c2cc76a02d1", + "apim-request-id": "5bdf82d6-ece0-4d41-8ee4-5270b548152a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:32 GMT", + "Date": "Fri, 30 Oct 2020 16:43:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", + "createdDateTime": "2020-10-30T16:43:31Z", + "lastUpdatedDateTime": "2020-10-30T16:43:31Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "379b6c3f61e3a623731b52e67ba672f8", + "x-ms-client-request-id": "d2d8b00a7bb8c848e8c588627a541dd3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e89df8e2-0e58-48a1-b213-bbd8f9a207cd", + "apim-request-id": "575d1f96-5c25-4159-b75b-a85f60dff120", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:33 GMT", + "Date": "Fri, 30 Oct 2020 16:43:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", + "createdDateTime": "2020-10-30T16:43:31Z", + "lastUpdatedDateTime": "2020-10-30T16:43:31Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "26707ce1a9b1ffb10559e3e8959ea976", + "x-ms-client-request-id": "0b523c4df2e811d8c18ded0496ad851c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f472802-28c2-4e69-b043-ddffbd5dcaa4", + "apim-request-id": "412ccc93-fa56-45dd-b088-9196d15df8ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:34 GMT", + "Date": "Fri, 30 Oct 2020 16:43:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", + "createdDateTime": "2020-10-30T16:43:31Z", + "lastUpdatedDateTime": "2020-10-30T16:43:31Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "32f13cd0752d338d4c55684f75589c31", + "x-ms-client-request-id": "bb7143c7a7af37c9b90277319fc8ac70", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91104b93-72d7-4158-9102-de2f9c94a9e0", + "apim-request-id": "65deddfa-b0dd-49c6-8c4e-c72977f1d699", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:35 GMT", + "Date": "Fri, 30 Oct 2020 16:43:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -916,131 +784,65 @@ }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", - "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "114919540bd39688bb9b318a7e3b11d4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "49425c2c-372f-4045-b2ae-e2a7e18487f2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", + "createdDateTime": "2020-10-30T16:43:31Z", + "lastUpdatedDateTime": "2020-10-30T16:43:31Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3e15dc7140b46ccaef3dda5b40618aad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "414d862a-517b-4389-9b1f-ed10e3598fd7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", - "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7c94b1bc9755c4a3b45b76924302b411", + "x-ms-client-request-id": "dcfc7094c76a173ed8c6112a8e43323a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cde46967-928c-48bb-8e35-ead1a56c4725", + "apim-request-id": "df7d68ef-4cec-4d16-b6e4-33e055c8edf6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:39 GMT", + "Date": "Fri, 30 Oct 2020 16:43:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "71" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", + "createdDateTime": "2020-10-30T16:43:31Z", + "lastUpdatedDateTime": "2020-10-30T16:43:31Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "98de94445e42147c4edc2295312c555a", + "x-ms-client-request-id": "379b6c3f61e3a623731b52e67ba672f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "32abe7be-6198-4da8-8473-8fe8485ce195", + "apim-request-id": "e393cb62-93c1-46af-a7e9-4d8bf0e6fa1b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:40 GMT", + "Date": "Fri, 30 Oct 2020 16:43:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -1048,300 +850,234 @@ }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", + "createdDateTime": "2020-10-30T16:43:31Z", + "lastUpdatedDateTime": "2020-10-30T16:43:31Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "cccd841194a6da7f39518a58c93828ec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1416f08c-d25e-483d-b511-dd8ed15fdde2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", - "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "ac17c888f1835d6a34802d78740d9387", + "x-ms-client-request-id": "26707ce1a9b1ffb10559e3e8959ea976", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c3d79274-6b70-458a-9222-48baa16f79cf", + "apim-request-id": "9a7a5d9a-b9c2-4159-a5f6-732466c4f261", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:42 GMT", + "Date": "Fri, 30 Oct 2020 16:43:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", + "createdDateTime": "2020-10-30T16:43:31Z", + "lastUpdatedDateTime": "2020-10-30T16:43:31Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "be801c06e735af6a15035ff1d4234a16", + "x-ms-client-request-id": "32f13cd0752d338d4c55684f75589c31", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd29bb65-bf20-48f3-beca-c5b0ecc63dd1", + "apim-request-id": "eab71404-e4e7-4028-9c0a-fc331e2b163c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:43 GMT", + "Date": "Fri, 30 Oct 2020 16:43:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", + "createdDateTime": "2020-10-30T16:43:31Z", + "lastUpdatedDateTime": "2020-10-30T16:43:31Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "680d36b4a8151fd71a6f97256706652c", + "x-ms-client-request-id": "114919540bd39688bb9b318a7e3b11d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "936288f4-764f-4e4e-8ba9-021f256608ad", + "apim-request-id": "d515cba6-a459-4560-a407-4c75c87a8c7d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:44 GMT", + "Date": "Fri, 30 Oct 2020 16:43:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", + "createdDateTime": "2020-10-30T16:43:31Z", + "lastUpdatedDateTime": "2020-10-30T16:43:31Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ac5203bd69b7a0b75e68977f91798910", + "x-ms-client-request-id": "3e15dc7140b46ccaef3dda5b40618aad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ff22354c-d256-4d09-9f85-d5516a2b2912", + "apim-request-id": "606bd37d-60c5-4f6a-b73f-2e6fbc312649", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:45 GMT", + "Date": "Fri, 30 Oct 2020 16:43:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", + "createdDateTime": "2020-10-30T16:43:31Z", + "lastUpdatedDateTime": "2020-10-30T16:43:31Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3dc417362bff5d714561a4c55045480e", + "x-ms-client-request-id": "7c94b1bc9755c4a3b45b76924302b411", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d27f008-25d0-485e-ba9c-e4cc875774c7", + "apim-request-id": "c3978615-6298-4a4e-818d-96c3b3e8665a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:46 GMT", + "Date": "Fri, 30 Oct 2020 16:43:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", + "status": "running", + "createdDateTime": "2020-10-30T16:43:44.6237035Z", + "lastUpdatedDateTime": "2020-10-30T16:43:44.6237036Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70/copyResults/6d02d057-ed82-46da-ad23-d5764b00f4ed", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d033339e9dd14a5e7f6c0aad11588ea0", + "x-ms-client-request-id": "98de94445e42147c4edc2295312c555a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac22d7c1-0056-4292-b7b5-a1872f024985", + "apim-request-id": "6c8ef8dd-f3b8-43c7-bc19-e385f1abc0a1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:47 GMT", + "Date": "Fri, 30 Oct 2020 16:43:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "13" }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:17:28Z", - "lastUpdatedDateTime": "2020-09-09T22:17:28Z", - "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5/copyResults/34cbd275-be5b-4b54-87ca-603f6db06271", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4fef87e62742922c91f56756c4f25018", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bdc9d89f-87de-43fb-947d-017224c6bb6d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" - }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:17:48.2472694Z", - "lastUpdatedDateTime": "2020-09-09T22:17:48.2472695Z", + "createdDateTime": "2020-10-30T16:43:44.7125582Z", + "lastUpdatedDateTime": "2020-10-30T16:43:44.7125584Z", "copyResult": { - "modelId": "e31c6b14-abc1-42be-81c0-22a6c3eb44f4" + "modelId": "8b27b8d9-9200-4915-b631-38a1f30f4774" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/bb972ccd-447a-4d0b-b265-2e4edd190ef5", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/c7b219aa-1d8b-4fc0-8563-39ddd9ab5b70", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c0577c73388c744c85001175ed8aec80-3080c7fbae4bbc48-00", + "traceparent": "00-094d3a4d3452bd4c9c5c852670945069-abc1f331c4746d47-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5de1881fb845983fb979be9221c44bed", + "x-ms-client-request-id": "cccd841194a6da7f39518a58c93828ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "20b7d1d4-413e-4709-9314-fadcd4a1a303", + "apim-request-id": "4f94b6be-a290-4984-a67d-6e923f312a78", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:17:48 GMT", + "Date": "Fri, 30 Oct 2020 16:43:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": [] } @@ -1349,9 +1085,9 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", - "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mariari-group/providers/Microsoft.CognitiveServices/accounts/mariari-westus2-formrecognizer", - "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westus2", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_TARGET_RESOURCE_ID": "/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/camaiaor-rg/providers/Microsoft.CognitiveServices/accounts/camaiaor-formrec-westcentralus", + "FORM_RECOGNIZER_TARGET_RESOURCE_REGION": "westcentralus", "RandomSeed": "1802268220" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeContentOperationCanPollFromNewObject.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeContentOperationCanPollFromNewObject.json index bdbaa55455107..b62fbd0ea55d6 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeContentOperationCanPollFromNewObject.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeContentOperationCanPollFromNewObject.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,8 +9,8 @@ "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "47678d17086e65d7c6e8c720cf715f98", "x-ms-return-client-request-id": "true" @@ -20,25 +20,25 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a8ebf76b-bccc-4276-b889-5a7fa990cc93", + "apim-request-id": "708ab214-9cdc-475f-93fb-bbde2947208e", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:16:19 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a8ebf76b-bccc-4276-b889-5a7fa990cc93", + "Date": "Fri, 30 Oct 2020 14:12:22 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/708ab214-9cdc-475f-93fb-bbde2947208e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "398" + "x-envoy-upstream-service-time": "638" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a8ebf76b-bccc-4276-b889-5a7fa990cc93", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/708ab214-9cdc-475f-93fb-bbde2947208e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4769267cde93785df71c3be80212769b", "x-ms-return-client-request-id": "true" @@ -46,29 +46,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fbc92328-a7b8-41af-b9ea-e268e006c08b", + "apim-request-id": "a5bed53d-ba0f-4b62-a2d3-9095c55ff8ff", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:19 GMT", + "Date": "Fri, 30 Oct 2020 14:12:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:16:19Z", - "lastUpdatedDateTime": "2020-09-09T22:16:19Z" + "createdDateTime": "2020-10-30T14:12:23Z", + "lastUpdatedDateTime": "2020-10-30T14:12:23Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a8ebf76b-bccc-4276-b889-5a7fa990cc93", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/708ab214-9cdc-475f-93fb-bbde2947208e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7319d9a1aeebe1f249abda583d076ae3", "x-ms-return-client-request-id": "true" @@ -76,29 +76,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47233c4f-6b1c-45b5-9182-7727f8040a36", + "apim-request-id": "2cb47c50-843f-4bb8-8b0c-b4146d90ef2e", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:20 GMT", + "Date": "Fri, 30 Oct 2020 14:12:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:16:19Z", - "lastUpdatedDateTime": "2020-09-09T22:16:19Z" + "createdDateTime": "2020-10-30T14:12:23Z", + "lastUpdatedDateTime": "2020-10-30T14:12:23Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a8ebf76b-bccc-4276-b889-5a7fa990cc93", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/708ab214-9cdc-475f-93fb-bbde2947208e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3b72d493aacf39db2fef5052ccee62b3", "x-ms-return-client-request-id": "true" @@ -106,29 +106,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f3da7af5-2966-47c7-aaa5-c2f8bf922196", + "apim-request-id": "3226bf32-1376-42da-8c8e-7ab0abdd9d0e", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:21 GMT", + "Date": "Fri, 30 Oct 2020 14:12:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:16:19Z", - "lastUpdatedDateTime": "2020-09-09T22:16:19Z" + "createdDateTime": "2020-10-30T14:12:23Z", + "lastUpdatedDateTime": "2020-10-30T14:12:23Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a8ebf76b-bccc-4276-b889-5a7fa990cc93", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/708ab214-9cdc-475f-93fb-bbde2947208e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f67f2b72eb57cdac3388fde703043af0", "x-ms-return-client-request-id": "true" @@ -136,29 +136,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aa58483d-5361-4840-a229-1d2191bda640", + "apim-request-id": "71b71872-9963-4ab2-8002-695ca378e51b", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:22 GMT", + "Date": "Fri, 30 Oct 2020 14:12:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:16:19Z", - "lastUpdatedDateTime": "2020-09-09T22:16:19Z" + "createdDateTime": "2020-10-30T14:12:23Z", + "lastUpdatedDateTime": "2020-10-30T14:12:23Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a8ebf76b-bccc-4276-b889-5a7fa990cc93", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/708ab214-9cdc-475f-93fb-bbde2947208e", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2d5558b13aa0f7ccfde044fc5e9f145b", "x-ms-return-client-request-id": "true" @@ -166,56 +166,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7756dfe8-10f4-4c4c-9279-17a0d5b223ee", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:16:19Z", - "lastUpdatedDateTime": "2020-09-09T22:16:19Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/a8ebf76b-bccc-4276-b889-5a7fa990cc93", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "11e626497487a78b28a50746acf4352a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "654c4e41-8d0c-4cb1-84fb-b317db448486", - "Content-Length": "277", + "apim-request-id": "497cdad2-6339-40e9-bf0d-25d1bfcd9512", + "Content-Length": "269", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:24 GMT", + "Date": "Fri, 30 Oct 2020 14:12:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:16:19Z", - "lastUpdatedDateTime": "2020-09-09T22:16:24Z", + "createdDateTime": "2020-10-30T14:12:23Z", + "lastUpdatedDateTime": "2020-10-30T14:12:28Z", "analyzeResult": { "version": "2.1.0", "readResults": [ { "page": 1, "angle": 0, - "width": 8.4967, - "height": 10.9967, + "width": 8.5, + "height": 11, "unit": "inch", "lines": [] } @@ -232,7 +202,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1034255821" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeContentOperationCanPollFromNewObjectAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeContentOperationCanPollFromNewObjectAsync.json index 1209683685a60..11ff7a400a7ae 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeContentOperationCanPollFromNewObjectAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeContentOperationCanPollFromNewObjectAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyze", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyze", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,8 +9,8 @@ "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bd5bde97a9e1ff8910fb24435c530e92", "x-ms-return-client-request-id": "true" @@ -20,25 +20,25 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2b5e0db2-eccd-43a5-8e5f-2da500ad1de9", + "apim-request-id": "b6b216cb-cc52-40ff-b282-8041b1d9a335", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:17:48 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/2b5e0db2-eccd-43a5-8e5f-2da500ad1de9", + "Date": "Fri, 30 Oct 2020 14:13:07 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b6b216cb-cc52-40ff-b282-8041b1d9a335", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "144" + "x-envoy-upstream-service-time": "307" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/2b5e0db2-eccd-43a5-8e5f-2da500ad1de9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b6b216cb-cc52-40ff-b282-8041b1d9a335", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "398b656ea5ca41f886ac633dd000d8b8", "x-ms-return-client-request-id": "true" @@ -46,29 +46,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "93fdf82a-d1eb-41ca-b2c7-1a6abddbdbfd", + "apim-request-id": "30952a2f-0758-4c77-9cbe-e9a94640d4ba", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:48 GMT", + "Date": "Fri, 30 Oct 2020 14:13:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:17:49Z", - "lastUpdatedDateTime": "2020-09-09T22:17:49Z" + "createdDateTime": "2020-10-30T14:13:08Z", + "lastUpdatedDateTime": "2020-10-30T14:13:08Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/2b5e0db2-eccd-43a5-8e5f-2da500ad1de9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b6b216cb-cc52-40ff-b282-8041b1d9a335", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4eddaeb288130bcdaa85175a15fa26c0", "x-ms-return-client-request-id": "true" @@ -76,29 +76,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c172c18-3cfe-4243-9265-d9e9124ae096", + "apim-request-id": "3750c5ad-5821-470b-95d0-e48e0be83250", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:49 GMT", + "Date": "Fri, 30 Oct 2020 14:13:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:17:49Z", - "lastUpdatedDateTime": "2020-09-09T22:17:49Z" + "createdDateTime": "2020-10-30T14:13:08Z", + "lastUpdatedDateTime": "2020-10-30T14:13:08Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/2b5e0db2-eccd-43a5-8e5f-2da500ad1de9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b6b216cb-cc52-40ff-b282-8041b1d9a335", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1203fb9662c3f298e61a3635464b2e0f", "x-ms-return-client-request-id": "true" @@ -106,29 +106,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c7e9fa8a-e065-45fc-8d43-0eacffcfc4a9", + "apim-request-id": "c59dddca-3b19-443e-97c2-27416c0bb038", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:50 GMT", + "Date": "Fri, 30 Oct 2020 14:13:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:17:49Z", - "lastUpdatedDateTime": "2020-09-09T22:17:49Z" + "createdDateTime": "2020-10-30T14:13:08Z", + "lastUpdatedDateTime": "2020-10-30T14:13:08Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/2b5e0db2-eccd-43a5-8e5f-2da500ad1de9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b6b216cb-cc52-40ff-b282-8041b1d9a335", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ae906b23c076e57f987f8e458d9e2b8c", "x-ms-return-client-request-id": "true" @@ -136,29 +136,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b5b60fb1-a816-4437-af79-b1a9f7389c31", + "apim-request-id": "8ec97989-79e2-4d33-9428-a099bd7de2cf", "Content-Length": "106", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:51 GMT", + "Date": "Fri, 30 Oct 2020 14:13:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:17:49Z", - "lastUpdatedDateTime": "2020-09-09T22:17:49Z" + "createdDateTime": "2020-10-30T14:13:08Z", + "lastUpdatedDateTime": "2020-10-30T14:13:08Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/2b5e0db2-eccd-43a5-8e5f-2da500ad1de9", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/layout/analyzeResults/b6b216cb-cc52-40ff-b282-8041b1d9a335", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d4a6a285c5fd50f416ea67f95297c55e", "x-ms-return-client-request-id": "true" @@ -166,56 +166,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "956be576-798b-462c-a1d6-e9c587f9b142", - "Content-Length": "106", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:17:49Z", - "lastUpdatedDateTime": "2020-09-09T22:17:49Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/layout/analyzeResults/2b5e0db2-eccd-43a5-8e5f-2da500ad1de9", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "a93608567869d64a7c1d7a44d3526448", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "07cb5e72-5094-4365-b9d4-0076dac39ff7", - "Content-Length": "277", + "apim-request-id": "91a87f7f-5e88-4523-a891-5174521d2327", + "Content-Length": "269", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:53 GMT", + "Date": "Fri, 30 Oct 2020 14:13:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:17:49Z", - "lastUpdatedDateTime": "2020-09-09T22:17:53Z", + "createdDateTime": "2020-10-30T14:13:08Z", + "lastUpdatedDateTime": "2020-10-30T14:13:12Z", "analyzeResult": { "version": "2.1.0", "readResults": [ { "page": 1, "angle": 0, - "width": 8.4967, - "height": 10.9967, + "width": 8.5, + "height": 11, "unit": "inch", "lines": [] } @@ -232,7 +202,7 @@ ], "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1312855245" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeCustomFormsOperationCanPollFromNewObject.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeCustomFormsOperationCanPollFromNewObject.json index 3743110c85e5d..b8930d86bcc7e 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeCustomFormsOperationCanPollFromNewObject.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeCustomFormsOperationCanPollFromNewObject.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e83afaebc2f0444190bac43a6b3ce480-ef1631353ee9a444-00", + "traceparent": "00-ba2c2be5833d4b41ba68abfe907cd088-cc44748c5f857b45-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c0be03d8e0891803ced8926f3f2098ae", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "e3c7e908-9d22-4253-a307-50725d432b25", + "apim-request-id": "5a3f7e51-73fa-46c3-92a7-e2a680ee1b8b", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:16:24 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444", + "Date": "Fri, 30 Oct 2020 14:12:29 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "360" + "x-envoy-upstream-service-time": "686" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "42eb41bd823631c3271d39dbd74cd514", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f594d24-49af-4549-bfd5-8484d73caf41", + "apim-request-id": "e924b4c0-39c7-4e79-acf9-e98e291a3776", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:24 GMT", + "Date": "Fri, 30 Oct 2020 14:12:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", + "modelId": "04c955b1-3f9a-47d8-a8f2-29319a31bcbf", "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" + "createdDateTime": "2020-10-30T14:12:29Z", + "lastUpdatedDateTime": "2020-10-30T14:12:29Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a4478c20cf307f3809799f9fa2555a7f", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "29a43550-8b8d-402e-875a-e7bee72789ca", + "apim-request-id": "a01d68c5-002d-49b6-bdce-3df7ba9b838c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:26 GMT", + "Date": "Fri, 30 Oct 2020 14:12:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", + "modelId": "04c955b1-3f9a-47d8-a8f2-29319a31bcbf", "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" + "createdDateTime": "2020-10-30T14:12:29Z", + "lastUpdatedDateTime": "2020-10-30T14:12:29Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3dbd69a98c4856d73f8d996ba7284181", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0016e7bc-bf2f-4812-b7cf-132741f2da5c", + "apim-request-id": "70315d83-6a88-47e6-9fe4-477f01bb8d85", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:27 GMT", + "Date": "Fri, 30 Oct 2020 14:12:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", + "modelId": "04c955b1-3f9a-47d8-a8f2-29319a31bcbf", "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" + "createdDateTime": "2020-10-30T14:12:29Z", + "lastUpdatedDateTime": "2020-10-30T14:12:29Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b24f7e03f3d8ed7d096b39bde2248fd2", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "287a78f9-0405-4b5d-9cf6-4b545d3e74fc", + "apim-request-id": "4b4f7970-7b65-4a54-9778-2006e687bf42", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:28 GMT", + "Date": "Fri, 30 Oct 2020 14:12:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "108" }, "ResponseBody": { "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", + "modelId": "04c955b1-3f9a-47d8-a8f2-29319a31bcbf", "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" + "createdDateTime": "2020-10-30T14:12:29Z", + "lastUpdatedDateTime": "2020-10-30T14:12:29Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6d31b9c3988e94ccb4f164a336ccd8e0", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf3236bc-e5ba-47a1-9bcc-06f842010309", + "apim-request-id": "514a2021-8a23-49b5-ab22-c7e93c56e1d1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:29 GMT", + "Date": "Fri, 30 Oct 2020 14:12:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", + "modelId": "04c955b1-3f9a-47d8-a8f2-29319a31bcbf", "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" + "createdDateTime": "2020-10-30T14:12:29Z", + "lastUpdatedDateTime": "2020-10-30T14:12:29Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "239b1d37a706b5a7ecd034dc5219741a", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c273cea-b3f2-417c-9753-4c4a201fba21", + "apim-request-id": "3d2ba184-0f6f-4c74-bea5-6cbd4de16688", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:30 GMT", + "Date": "Fri, 30 Oct 2020 14:12:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", + "modelId": "04c955b1-3f9a-47d8-a8f2-29319a31bcbf", "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" + "createdDateTime": "2020-10-30T14:12:29Z", + "lastUpdatedDateTime": "2020-10-30T14:12:29Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eda8c7fed3f66bf3b2bafee78fd9b63c", "x-ms-return-client-request-id": "true" @@ -246,32 +246,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "895609d8-29a0-49e5-a4fb-57ec05be3908", + "apim-request-id": "13d46a5c-0e24-4434-93e1-f65a764de913", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:31 GMT", + "Date": "Fri, 30 Oct 2020 14:12:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "138" }, "ResponseBody": { "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", + "modelId": "04c955b1-3f9a-47d8-a8f2-29319a31bcbf", "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" + "createdDateTime": "2020-10-30T14:12:29Z", + "lastUpdatedDateTime": "2020-10-30T14:12:29Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c48658926b891bcb117c80be63ef419a", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "077f2b0d-facd-470f-8a5c-b62c87c043da", + "apim-request-id": "22e33b6d-cbe0-4df8-b6ae-32e301c7ab29", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:32 GMT", + "Date": "Fri, 30 Oct 2020 14:12:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "73" }, "ResponseBody": { "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", + "modelId": "04c955b1-3f9a-47d8-a8f2-29319a31bcbf", "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" + "createdDateTime": "2020-10-30T14:12:29Z", + "lastUpdatedDateTime": "2020-10-30T14:12:29Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6fa5497cea2363ea2a30714ba9bf2513", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e5875d0a-05d3-4744-9975-215f7ed7d710", + "apim-request-id": "5c46286b-2005-4f75-b483-37a65b633134", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:33 GMT", + "Date": "Fri, 30 Oct 2020 14:12:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", + "modelId": "04c955b1-3f9a-47d8-a8f2-29319a31bcbf", "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" + "createdDateTime": "2020-10-30T14:12:29Z", + "lastUpdatedDateTime": "2020-10-30T14:12:29Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fa49f71aaf939291fb8cdb79533407c2", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "107446bd-3b22-4125-89c9-e2c848e8596a", + "apim-request-id": "0ea14fd0-1cab-4caa-a49c-f7b63d39899e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:34 GMT", + "Date": "Fri, 30 Oct 2020 14:12:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "72" }, "ResponseBody": { "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", + "modelId": "04c955b1-3f9a-47d8-a8f2-29319a31bcbf", "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" + "createdDateTime": "2020-10-30T14:12:29Z", + "lastUpdatedDateTime": "2020-10-30T14:12:29Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "456a63794633a8186d229958f97f7251", "x-ms-return-client-request-id": "true" @@ -378,185 +378,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ef2405e6-19bd-46f0-a5bd-f68f9f73916a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:35 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", - "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "6ba46d5647a6cc06b81274970f7110f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cfa2aaf4-556a-4674-89f1-b29f8d157684", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", - "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "45d2ae29e055d3dfdfa18c711639987b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1044a2e2-3cca-4438-ab7e-0e5f19ff4593", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", - "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e522891a9b8f321b5d9d8d20d28198fc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1ad29a36-1dda-40e3-92a9-21e89920388b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:38 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", - "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "4a2fa3112dad76fc8ed18c05ba95b67e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "19a7ff9a-776f-4637-8f57-77e4b3bd9735", + "apim-request-id": "80bd95b7-c534-47d2-b26e-bdcbda0a5a79", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:40 GMT", + "Date": "Fri, 30 Oct 2020 14:12:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", - "status": "creating", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:25Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "857cf8792a4e8d66939fe8b753be005e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f4ff97ff-1e14-40cd-abe4-318a106bda4e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "modelInfo": { - "modelId": "94652a2b-9b5d-401b-b610-b3eba35bd444", + "modelId": "04c955b1-3f9a-47d8-a8f2-29319a31bcbf", "status": "ready", - "createdDateTime": "2020-09-09T22:16:25Z", - "lastUpdatedDateTime": "2020-09-09T22:16:40Z" + "createdDateTime": "2020-10-30T14:12:29Z", + "lastUpdatedDateTime": "2020-10-30T14:12:41Z" }, "keys": { "clusters": { @@ -626,7 +461,7 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -634,331 +469,300 @@ "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "735f90084e0aecce8dac57be0e1677c8", + "x-ms-client-request-id": "6ba46d5647a6cc06b81274970f7110f6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7af312b7-273d-4207-8ab1-79323c7588aa", + "apim-request-id": "3eceb138-61a1-423b-a096-891c36129047", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:16:41 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444/analyzeresults/5bddeadf-9f77-44c6-b22b-617b4f29127f", + "Date": "Fri, 30 Oct 2020 14:12:42 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf/analyzeresults/6822f15d-ac1f-42ac-8cfc-5d0f94e55c74", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "110" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444/analyzeResults/5bddeadf-9f77-44c6-b22b-617b4f29127f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf/analyzeResults/6822f15d-ac1f-42ac-8cfc-5d0f94e55c74", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "daa70ee71304e6ad3ca1b70d454522cf", + "x-ms-client-request-id": "45d2ae29e055d3dfdfa18c711639987b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dfbb77c0-f81e-4699-bc16-74eb35035762", + "apim-request-id": "ccd52218-02d0-4b44-bd92-0691515b369d", "Content-Length": "109", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:42 GMT", + "Date": "Fri, 30 Oct 2020 14:12:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "status": "notStarted", - "createdDateTime": "2020-09-09T22:16:41Z", - "lastUpdatedDateTime": "2020-09-09T22:16:41Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444/analyzeResults/5bddeadf-9f77-44c6-b22b-617b4f29127f", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "2afd2ed043352b742990f7a2d3a77f7c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "865ffc26-6cc3-4f9a-ac3b-cefedf7a1658", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:43 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:16:41Z", - "lastUpdatedDateTime": "2020-09-09T22:16:42Z", - "analyzeResult": null + "createdDateTime": "2020-10-30T14:12:43Z", + "lastUpdatedDateTime": "2020-10-30T14:12:43Z" } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444/analyzeResults/5bddeadf-9f77-44c6-b22b-617b4f29127f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf/analyzeResults/6822f15d-ac1f-42ac-8cfc-5d0f94e55c74", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "45d020272617f459e278366896c0a748", + "x-ms-client-request-id": "e522891a9b8f321b5d9d8d20d28198fc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5227af32-3c7e-4abb-8df9-de5e9af38f59", + "apim-request-id": "11cb381f-612d-4673-a992-860963b3458c", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:44 GMT", + "Date": "Fri, 30 Oct 2020 14:12:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:16:41Z", - "lastUpdatedDateTime": "2020-09-09T22:16:42Z", + "createdDateTime": "2020-10-30T14:12:43Z", + "lastUpdatedDateTime": "2020-10-30T14:12:43Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444/analyzeResults/5bddeadf-9f77-44c6-b22b-617b4f29127f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf/analyzeResults/6822f15d-ac1f-42ac-8cfc-5d0f94e55c74", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e0ee87894d19a392997bb0741c0b1395", + "x-ms-client-request-id": "4a2fa3112dad76fc8ed18c05ba95b67e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7752603e-4fca-43a9-a75d-55e2e5a0f16b", + "apim-request-id": "0f06ca9c-1521-44bf-ab10-fb5769235c87", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:45 GMT", + "Date": "Fri, 30 Oct 2020 14:12:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "138" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:16:41Z", - "lastUpdatedDateTime": "2020-09-09T22:16:42Z", + "createdDateTime": "2020-10-30T14:12:43Z", + "lastUpdatedDateTime": "2020-10-30T14:12:43Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444/analyzeResults/5bddeadf-9f77-44c6-b22b-617b4f29127f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf/analyzeResults/6822f15d-ac1f-42ac-8cfc-5d0f94e55c74", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "25e53b22dd74aab8d40848bc0d0b9569", + "x-ms-client-request-id": "857cf8792a4e8d66939fe8b753be005e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "332a7d47-631f-4dfe-bc2e-fa3e979035eb", + "apim-request-id": "c023cd2d-afdf-424f-9d48-27372f0f0d0c", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:46 GMT", + "Date": "Fri, 30 Oct 2020 14:12:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "94" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:16:41Z", - "lastUpdatedDateTime": "2020-09-09T22:16:42Z", + "createdDateTime": "2020-10-30T14:12:43Z", + "lastUpdatedDateTime": "2020-10-30T14:12:43Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444/analyzeResults/5bddeadf-9f77-44c6-b22b-617b4f29127f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf/analyzeResults/6822f15d-ac1f-42ac-8cfc-5d0f94e55c74", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4c18afe89eb9da638d2cab9c75e5d8d6", + "x-ms-client-request-id": "735f90084e0aecce8dac57be0e1677c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ad07fef-d5b0-4ac9-96d1-5309076483e8", + "apim-request-id": "3a7badb2-2ccc-44d9-824a-5cd71d3e229b", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:47 GMT", + "Date": "Fri, 30 Oct 2020 14:12:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "94" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:16:41Z", - "lastUpdatedDateTime": "2020-09-09T22:16:42Z", + "createdDateTime": "2020-10-30T14:12:43Z", + "lastUpdatedDateTime": "2020-10-30T14:12:43Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444/analyzeResults/5bddeadf-9f77-44c6-b22b-617b4f29127f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf/analyzeResults/6822f15d-ac1f-42ac-8cfc-5d0f94e55c74", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5b46a16582daabd3ce440b1005d6968d", + "x-ms-client-request-id": "daa70ee71304e6ad3ca1b70d454522cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0bb96a0d-f332-43c0-a244-fc0f06e048ac", + "apim-request-id": "24abcde4-97db-46d1-b0d7-9835f7aebd1a", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:48 GMT", + "Date": "Fri, 30 Oct 2020 14:12:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "92" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:16:41Z", - "lastUpdatedDateTime": "2020-09-09T22:16:42Z", + "createdDateTime": "2020-10-30T14:12:43Z", + "lastUpdatedDateTime": "2020-10-30T14:12:43Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444/analyzeResults/5bddeadf-9f77-44c6-b22b-617b4f29127f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf/analyzeResults/6822f15d-ac1f-42ac-8cfc-5d0f94e55c74", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6c8b47e5c6f383dbd70b9747321c34ef", + "x-ms-client-request-id": "2afd2ed043352b742990f7a2d3a77f7c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "618e9e4d-82f9-4d22-9bcc-2caef02d779f", + "apim-request-id": "0f97e578-cb15-4d2c-b443-bd73d2ce684f", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:49 GMT", + "Date": "Fri, 30 Oct 2020 14:12:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "72" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:16:41Z", - "lastUpdatedDateTime": "2020-09-09T22:16:42Z", + "createdDateTime": "2020-10-30T14:12:43Z", + "lastUpdatedDateTime": "2020-10-30T14:12:43Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444/analyzeResults/5bddeadf-9f77-44c6-b22b-617b4f29127f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf/analyzeResults/6822f15d-ac1f-42ac-8cfc-5d0f94e55c74", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6b5672303ac4668edb6c7d749252d5b7", + "x-ms-client-request-id": "45d020272617f459e278366896c0a748", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "16fdeeff-c951-496a-a391-d416aa50c840", + "apim-request-id": "f32418c8-f3d0-4618-af9d-8929181ac7b3", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:50 GMT", + "Date": "Fri, 30 Oct 2020 14:12:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-envoy-upstream-service-time": "143" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:16:41Z", - "lastUpdatedDateTime": "2020-09-09T22:16:42Z", + "createdDateTime": "2020-10-30T14:12:43Z", + "lastUpdatedDateTime": "2020-10-30T14:12:43Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444/analyzeResults/5bddeadf-9f77-44c6-b22b-617b4f29127f", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf/analyzeResults/6822f15d-ac1f-42ac-8cfc-5d0f94e55c74", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2db61d966b5a9ee2c5c383cfea8c79b2", + "x-ms-client-request-id": "e0ee87894d19a392997bb0741c0b1395", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "903c8d48-28ac-4840-914a-3595daea5364", + "apim-request-id": "355c851b-2c7d-41aa-8fd5-f3d55215a5dd", "Content-Length": "340", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:51 GMT", + "Date": "Fri, 30 Oct 2020 14:12:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "124" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:16:41Z", - "lastUpdatedDateTime": "2020-09-09T22:16:51Z", + "createdDateTime": "2020-10-30T14:12:43Z", + "lastUpdatedDateTime": "2020-10-30T14:12:52Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -985,28 +789,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/94652a2b-9b5d-401b-b610-b3eba35bd444", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/04c955b1-3f9a-47d8-a8f2-29319a31bcbf", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b93ceb561c8a6e488346ed198491ea6e-86d1dcfcabf29a4d-00", + "traceparent": "00-c60a8cca00c39e4e8ae76bc437a289d5-bc57039f4c782e42-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "92e01c0f2a7fabc8b92591874966f085", + "x-ms-client-request-id": "25e53b22dd74aab8d40848bc0d0b9569", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "ed18ac36-ab72-47ba-8dcd-6eea98835fa1", + "apim-request-id": "fe8530a2-944e-4fac-8b93-fc082e57027a", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:16:51 GMT", + "Date": "Fri, 30 Oct 2020 14:12:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "116" }, "ResponseBody": [] } @@ -1014,7 +818,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "553245408" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeCustomFormsOperationCanPollFromNewObjectAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeCustomFormsOperationCanPollFromNewObjectAsync.json index b4c769492fa2d..519dc29e00525 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeCustomFormsOperationCanPollFromNewObjectAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/RecognizeCustomFormsOperationCanPollFromNewObjectAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Content-Length": "43", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-82d8cb03d883ef458382f63cc6261dae-890615939b93a046-00", + "traceparent": "00-9e2afb70b649c54d9b32cc303ec7fa50-d07eb18548130d4a-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "370831c9b35fe5fefaccdaa0425da556", "x-ms-return-client-request-id": "true" @@ -22,25 +22,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "e9c64062-aae4-43e2-bd93-526e87f55dd7", + "apim-request-id": "92f5be53-84a6-4094-aed7-feddfcdbad4d", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:17:53 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c", + "Date": "Fri, 30 Oct 2020 14:13:13 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "226" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9c525099c3d3929904b8d3946163e6ad", "x-ms-return-client-request-id": "true" @@ -48,32 +48,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "abf41875-2a2f-4a9d-94ef-709ba5344585", + "apim-request-id": "65df5402-16c8-4196-8ed4-5e57c8749458", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:53 GMT", + "Date": "Fri, 30 Oct 2020 14:13:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", + "modelId": "8efa4261-5c7d-4266-b9e9-4f068bb8a94e", "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" + "createdDateTime": "2020-10-30T14:13:13Z", + "lastUpdatedDateTime": "2020-10-30T14:13:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dacb8a3eb9d73ce432cf36434fabb75a", "x-ms-return-client-request-id": "true" @@ -81,32 +81,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0531e555-a0d2-4850-b68c-c3943bed51b2", + "apim-request-id": "d2bba285-3481-4311-a6dd-9c61fed9f96a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:55 GMT", + "Date": "Fri, 30 Oct 2020 14:13:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", + "modelId": "8efa4261-5c7d-4266-b9e9-4f068bb8a94e", "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" + "createdDateTime": "2020-10-30T14:13:13Z", + "lastUpdatedDateTime": "2020-10-30T14:13:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8e947f2048a1050e977533a7e0698496", "x-ms-return-client-request-id": "true" @@ -114,32 +114,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e22c07fd-fd53-45fb-ba49-9bbc6744a638", + "apim-request-id": "f34259c0-e3bb-4779-910b-38918116b4e3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:56 GMT", + "Date": "Fri, 30 Oct 2020 14:13:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", + "modelId": "8efa4261-5c7d-4266-b9e9-4f068bb8a94e", "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" + "createdDateTime": "2020-10-30T14:13:13Z", + "lastUpdatedDateTime": "2020-10-30T14:13:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b7622de6cb91df7f6b166a038c564358", "x-ms-return-client-request-id": "true" @@ -147,32 +147,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "afda4425-5979-4707-8a57-f1021bf18e9e", + "apim-request-id": "a9b7167f-97b3-4060-a2bb-a56d670e829b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:57 GMT", + "Date": "Fri, 30 Oct 2020 14:13:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", + "modelId": "8efa4261-5c7d-4266-b9e9-4f068bb8a94e", "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" + "createdDateTime": "2020-10-30T14:13:13Z", + "lastUpdatedDateTime": "2020-10-30T14:13:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e274780057cff50c7bc54261863d5bc8", "x-ms-return-client-request-id": "true" @@ -180,32 +180,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a1a19ca5-1372-4f8d-8a56-da58c6af89f3", + "apim-request-id": "cdb13b13-0dda-4c1a-bfc1-61d9a55f0226", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:59 GMT", + "Date": "Fri, 30 Oct 2020 14:13:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", + "modelId": "8efa4261-5c7d-4266-b9e9-4f068bb8a94e", "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" + "createdDateTime": "2020-10-30T14:13:13Z", + "lastUpdatedDateTime": "2020-10-30T14:13:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "225d9f4b004854c900b4238ade0a7941", "x-ms-return-client-request-id": "true" @@ -213,32 +213,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "096e16d6-85fa-4d8f-9837-491e6340f7bc", + "apim-request-id": "3096687e-a2a0-4fd4-af7c-dd532c0383f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:00 GMT", + "Date": "Fri, 30 Oct 2020 14:13:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", + "modelId": "8efa4261-5c7d-4266-b9e9-4f068bb8a94e", "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" + "createdDateTime": "2020-10-30T14:13:13Z", + "lastUpdatedDateTime": "2020-10-30T14:13:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "68a6da31a1f58fc7206d3bcb881d592e", "x-ms-return-client-request-id": "true" @@ -246,9 +246,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8dc7df49-8191-492d-a846-ae38369b296e", + "apim-request-id": "e2359f7b-56c1-4105-a41c-5add4c5d8dcf", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:01 GMT", + "Date": "Fri, 30 Oct 2020 14:13:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -256,22 +256,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", + "modelId": "8efa4261-5c7d-4266-b9e9-4f068bb8a94e", "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" + "createdDateTime": "2020-10-30T14:13:13Z", + "lastUpdatedDateTime": "2020-10-30T14:13:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ecb8a1bb21f80010af1fe21b34811770", "x-ms-return-client-request-id": "true" @@ -279,32 +279,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0d6197c7-e758-471d-ad85-abe3c88e94f5", + "apim-request-id": "f2b9f9af-7ee2-4394-bf0f-73e0c8affa63", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:02 GMT", + "Date": "Fri, 30 Oct 2020 14:13:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", + "modelId": "8efa4261-5c7d-4266-b9e9-4f068bb8a94e", "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" + "createdDateTime": "2020-10-30T14:13:13Z", + "lastUpdatedDateTime": "2020-10-30T14:13:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ab2f004cf296a9d3d8cd01dbc4fdcce2", "x-ms-return-client-request-id": "true" @@ -312,32 +312,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a59f3780-03a0-4494-ab08-f25f2830e68b", + "apim-request-id": "5a81f1d1-bd12-4348-9b67-71adc53d2e28", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:03 GMT", + "Date": "Fri, 30 Oct 2020 14:13:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", + "modelId": "8efa4261-5c7d-4266-b9e9-4f068bb8a94e", "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" + "createdDateTime": "2020-10-30T14:13:13Z", + "lastUpdatedDateTime": "2020-10-30T14:13:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3ccff45a8c521048caa6b9d6bfac5b9f", "x-ms-return-client-request-id": "true" @@ -345,32 +345,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed0f7612-31ee-416e-bb26-61e2ba3c6691", + "apim-request-id": "b774ac3f-3e06-4a7b-94a8-d010857099a2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:04 GMT", + "Date": "Fri, 30 Oct 2020 14:13:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", + "modelId": "8efa4261-5c7d-4266-b9e9-4f068bb8a94e", "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" + "createdDateTime": "2020-10-30T14:13:13Z", + "lastUpdatedDateTime": "2020-10-30T14:13:13Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "877fca56aeedc897ce0e142a20343bb1", "x-ms-return-client-request-id": "true" @@ -378,185 +378,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9369ecb4-b851-4d21-aed5-1a0667da4133", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", - "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "3fc0ff53dab1c01eb71fe0f039fdea2c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "406ed9b9-b95d-4324-9564-0c671e399629", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:06 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", - "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "f9856172447eabf55d076d43781ef095", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e7c8d348-9ae7-4fe5-ba88-347ff69ad9d6", + "apim-request-id": "c2453bed-2d51-4b44-bbfd-a1dfcba07522", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:07 GMT", + "Date": "Fri, 30 Oct 2020 14:13:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", - "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c082076a1beb7bedacbecfcecda68ed1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2d8b7055-96bb-4f7a-b1dd-aca0857b94ac", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:08 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", - "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "beb8e72441af0e330a14e2aa6cdb4899", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9bf67d16-1306-48f3-bf7c-d8cc8750ccda", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", - "status": "creating", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:17:54Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "32864b2f2a7a574074094dbf7426deb6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "62e237dc-87b8-41f9-be1c-b131b348de40", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "modelInfo": { - "modelId": "59fe70b0-c1e9-429f-a65b-1b4d389a576c", + "modelId": "8efa4261-5c7d-4266-b9e9-4f068bb8a94e", "status": "ready", - "createdDateTime": "2020-09-09T22:17:54Z", - "lastUpdatedDateTime": "2020-09-09T22:18:10Z" + "createdDateTime": "2020-10-30T14:13:13Z", + "lastUpdatedDateTime": "2020-10-30T14:13:27Z" }, "keys": { "clusters": { @@ -626,7 +461,7 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c/analyze?includeTextDetails=false", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e/analyze?includeTextDetails=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -634,362 +469,270 @@ "Content-Type": "application/pdf", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "901e9c78326628e6d474b5d639420ed0", + "x-ms-client-request-id": "3fc0ff53dab1c01eb71fe0f039fdea2c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "20cc345e-28d0-4e81-a43c-e36a9435e9c0", + "apim-request-id": "cee58fba-122e-42e7-9982-11d1c37169a8", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:18:10 GMT", - "Operation-Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c/analyzeresults/ccf38d06-0035-429b-92a4-2968e41e6f41", + "Date": "Fri, 30 Oct 2020 14:13:27 GMT", + "Operation-Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e/analyzeresults/b3d6c5f8-1b00-4c08-b60b-aa69e7d4a727", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c/analyzeResults/ccf38d06-0035-429b-92a4-2968e41e6f41", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e/analyzeResults/b3d6c5f8-1b00-4c08-b60b-aa69e7d4a727", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "829f35765c20fa57a76049a5f47399e3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "898c9d73-08fd-431e-9b09-1f23f183a5ee", - "Content-Length": "109", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" - }, - "ResponseBody": { - "status": "notStarted", - "createdDateTime": "2020-09-09T22:18:11Z", - "lastUpdatedDateTime": "2020-09-09T22:18:11Z" - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c/analyzeResults/ccf38d06-0035-429b-92a4-2968e41e6f41", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d0322b36b7bdfc33655d5d05746a1d31", + "x-ms-client-request-id": "f9856172447eabf55d076d43781ef095", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "487fd6a5-825f-49ad-8384-b269b05e8b1c", + "apim-request-id": "ccdd248b-5a55-4cfb-8219-7528d103140a", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:11 GMT", + "Date": "Fri, 30 Oct 2020 14:13:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:18:11Z", - "lastUpdatedDateTime": "2020-09-09T22:18:11Z", + "createdDateTime": "2020-10-30T14:13:28Z", + "lastUpdatedDateTime": "2020-10-30T14:13:29Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c/analyzeResults/ccf38d06-0035-429b-92a4-2968e41e6f41", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e/analyzeResults/b3d6c5f8-1b00-4c08-b60b-aa69e7d4a727", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3e497cfb5c871b954523e905e8403460", + "x-ms-client-request-id": "c082076a1beb7bedacbecfcecda68ed1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56e8a642-4a42-48e6-9a73-6bf54408cd6a", + "apim-request-id": "3f710c55-c158-4f41-9d77-b80815e63c14", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:12 GMT", + "Date": "Fri, 30 Oct 2020 14:13:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:18:11Z", - "lastUpdatedDateTime": "2020-09-09T22:18:11Z", + "createdDateTime": "2020-10-30T14:13:28Z", + "lastUpdatedDateTime": "2020-10-30T14:13:29Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c/analyzeResults/ccf38d06-0035-429b-92a4-2968e41e6f41", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e/analyzeResults/b3d6c5f8-1b00-4c08-b60b-aa69e7d4a727", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0d9fd1da3e10be1302a21cc2fe51863c", + "x-ms-client-request-id": "beb8e72441af0e330a14e2aa6cdb4899", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd9379d4-2c55-48b9-8c2b-911f6fa84c3c", + "apim-request-id": "90bc475d-74aa-4fa5-b8fe-136468d3df6e", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:13 GMT", + "Date": "Fri, 30 Oct 2020 14:13:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:18:11Z", - "lastUpdatedDateTime": "2020-09-09T22:18:11Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c/analyzeResults/ccf38d06-0035-429b-92a4-2968e41e6f41", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "77aa17435b2ada5b95168a99ce2e1424", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9fd49e92-1fab-4a2c-a294-ee54288fd24e", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:18:11Z", - "lastUpdatedDateTime": "2020-09-09T22:18:11Z", + "createdDateTime": "2020-10-30T14:13:28Z", + "lastUpdatedDateTime": "2020-10-30T14:13:29Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c/analyzeResults/ccf38d06-0035-429b-92a4-2968e41e6f41", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e/analyzeResults/b3d6c5f8-1b00-4c08-b60b-aa69e7d4a727", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a22bfd2910cabc21688a3ce53fd31df4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6665f41f-267d-4965-9b80-619c18c92081", - "Content-Length": "127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:15 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" - }, - "ResponseBody": { - "status": "running", - "createdDateTime": "2020-09-09T22:18:11Z", - "lastUpdatedDateTime": "2020-09-09T22:18:11Z", - "analyzeResult": null - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c/analyzeResults/ccf38d06-0035-429b-92a4-2968e41e6f41", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d1c2ac9cbc967f3575c577f9b37aefd3", + "x-ms-client-request-id": "32864b2f2a7a574074094dbf7426deb6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14d96dad-7103-43b2-b070-9e990b0ae390", + "apim-request-id": "b5483a3a-e6bd-424d-9978-80c300a57bb3", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:16 GMT", + "Date": "Fri, 30 Oct 2020 14:13:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:18:11Z", - "lastUpdatedDateTime": "2020-09-09T22:18:11Z", + "createdDateTime": "2020-10-30T14:13:28Z", + "lastUpdatedDateTime": "2020-10-30T14:13:29Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c/analyzeResults/ccf38d06-0035-429b-92a4-2968e41e6f41", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e/analyzeResults/b3d6c5f8-1b00-4c08-b60b-aa69e7d4a727", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0199f88ee3253272f5ed0ea01e769bc2", + "x-ms-client-request-id": "901e9c78326628e6d474b5d639420ed0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8b24ec66-bd3d-42c4-825b-70ad2146225f", + "apim-request-id": "36364b05-1d92-465b-af2f-2c51093d7f25", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:17 GMT", + "Date": "Fri, 30 Oct 2020 14:13:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:18:11Z", - "lastUpdatedDateTime": "2020-09-09T22:18:11Z", + "createdDateTime": "2020-10-30T14:13:28Z", + "lastUpdatedDateTime": "2020-10-30T14:13:29Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c/analyzeResults/ccf38d06-0035-429b-92a4-2968e41e6f41", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e/analyzeResults/b3d6c5f8-1b00-4c08-b60b-aa69e7d4a727", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "22fc96f9426c6c8ec8ac2c04982708ee", + "x-ms-client-request-id": "829f35765c20fa57a76049a5f47399e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bbf42080-830a-4314-928b-9542dd048b3d", + "apim-request-id": "9b7ff770-7f03-4cb9-b2cd-da32edcc8873", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:18 GMT", + "Date": "Fri, 30 Oct 2020 14:13:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:18:11Z", - "lastUpdatedDateTime": "2020-09-09T22:18:11Z", + "createdDateTime": "2020-10-30T14:13:28Z", + "lastUpdatedDateTime": "2020-10-30T14:13:29Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c/analyzeResults/ccf38d06-0035-429b-92a4-2968e41e6f41", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e/analyzeResults/b3d6c5f8-1b00-4c08-b60b-aa69e7d4a727", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4757689a1b39b9ce398fdba8ad9460ff", + "x-ms-client-request-id": "d0322b36b7bdfc33655d5d05746a1d31", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8beba65-6e6d-4ea1-b1c8-bc78af15fc95", + "apim-request-id": "f18aa6fc-6d4e-46ce-8d75-d7990c961d0f", "Content-Length": "127", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:19 GMT", + "Date": "Fri, 30 Oct 2020 14:13:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { "status": "running", - "createdDateTime": "2020-09-09T22:18:11Z", - "lastUpdatedDateTime": "2020-09-09T22:18:11Z", + "createdDateTime": "2020-10-30T14:13:28Z", + "lastUpdatedDateTime": "2020-10-30T14:13:29Z", "analyzeResult": null } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c/analyzeResults/ccf38d06-0035-429b-92a4-2968e41e6f41", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e/analyzeResults/b3d6c5f8-1b00-4c08-b60b-aa69e7d4a727", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1c00b42acd7d4b666a2c3979b66d9ace", + "x-ms-client-request-id": "3e497cfb5c871b954523e905e8403460", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d95e6af2-2cda-4647-a88f-f1b5c3f4103d", + "apim-request-id": "527e634b-8d20-4839-93f0-21721c6746bd", "Content-Length": "340", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:21 GMT", + "Date": "Fri, 30 Oct 2020 14:13:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "status": "succeeded", - "createdDateTime": "2020-09-09T22:18:11Z", - "lastUpdatedDateTime": "2020-09-09T22:18:21Z", + "createdDateTime": "2020-10-30T14:13:28Z", + "lastUpdatedDateTime": "2020-10-30T14:13:37Z", "analyzeResult": { "version": "2.1.0", "readResults": [ @@ -1016,28 +759,28 @@ } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/59fe70b0-c1e9-429f-a65b-1b4d389a576c", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/8efa4261-5c7d-4266-b9e9-4f068bb8a94e", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9037bc7150bb6f4ea786152cfef11f6c-12053e585a8a794c-00", + "traceparent": "00-60b7f01f5c9fd4459319e6fe22bbc1e8-05309c6db5b99947-00", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b50620e4541fdd89c843e8dd67e5bf33", + "x-ms-client-request-id": "0d9fd1da3e10be1302a21cc2fe51863c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { - "apim-request-id": "80075c87-f8cd-4202-8769-9f716ac4f6c3", + "apim-request-id": "5c878067-baef-4c49-8c96-51c1318d61d2", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:18:21 GMT", + "Date": "Fri, 30 Oct 2020 14:13:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": [] } @@ -1045,7 +788,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "433315650" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/TrainingOperationCanPollFromNewObject.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/TrainingOperationCanPollFromNewObject.json index f8516b2e8da18..a4771092c2b45 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/TrainingOperationCanPollFromNewObject.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/TrainingOperationCanPollFromNewObject.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,8 +9,8 @@ "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8c734aa7bd7b8ae92c30b0189d2bb263", "x-ms-return-client-request-id": "true" @@ -21,25 +21,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "9cec9289-74a6-423a-a03f-ffb6f8cb4144", + "apim-request-id": "b1ae9572-3102-4a9d-96bb-5282fe987184", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:16:56 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb", + "Date": "Fri, 30 Oct 2020 14:12:55 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d3e488e5-e7bf-4c70-8f71-eb8971a9915e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-envoy-upstream-service-time": "176" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d3e488e5-e7bf-4c70-8f71-eb8971a9915e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "92fa518fd9d79f27f86fb2ec47e71708", "x-ms-return-client-request-id": "true" @@ -47,32 +47,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "896bee48-2914-4be1-8736-586f868c7d52", + "apim-request-id": "5f9ba3cf-b467-4489-b6af-85235b2066b0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:56 GMT", + "Date": "Fri, 30 Oct 2020 14:12:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "119" }, "ResponseBody": { "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", + "modelId": "d3e488e5-e7bf-4c70-8f71-eb8971a9915e", "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" + "createdDateTime": "2020-10-30T14:12:55Z", + "lastUpdatedDateTime": "2020-10-30T14:12:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d3e488e5-e7bf-4c70-8f71-eb8971a9915e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d671f12963d3c915c428ba058844a244", "x-ms-return-client-request-id": "true" @@ -80,32 +80,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c1a8f19-0da7-4c2b-901a-7ea5c8365a78", + "apim-request-id": "0332c131-b7de-49c7-a601-e54cafd3c342", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:58 GMT", + "Date": "Fri, 30 Oct 2020 14:12:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "72" }, "ResponseBody": { "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", + "modelId": "d3e488e5-e7bf-4c70-8f71-eb8971a9915e", "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" + "createdDateTime": "2020-10-30T14:12:55Z", + "lastUpdatedDateTime": "2020-10-30T14:12:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d3e488e5-e7bf-4c70-8f71-eb8971a9915e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f0ef7492a2bacee622d4930b0bfc4244", "x-ms-return-client-request-id": "true" @@ -113,32 +113,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7bbee67-83ed-4107-a795-9bd8e3c56c9f", + "apim-request-id": "ae927179-a0c9-4186-88f8-19743aacece8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:16:59 GMT", + "Date": "Fri, 30 Oct 2020 14:12:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", + "modelId": "d3e488e5-e7bf-4c70-8f71-eb8971a9915e", "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" + "createdDateTime": "2020-10-30T14:12:55Z", + "lastUpdatedDateTime": "2020-10-30T14:12:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d3e488e5-e7bf-4c70-8f71-eb8971a9915e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "abeea818dcb92c8f3b30cdaf1e2116b3", "x-ms-return-client-request-id": "true" @@ -146,32 +146,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ddd9e240-c906-47f8-80e8-2d9c0c56bd49", + "apim-request-id": "886ab228-b013-44f3-b888-3c875894c76c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:00 GMT", + "Date": "Fri, 30 Oct 2020 14:13:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", + "modelId": "d3e488e5-e7bf-4c70-8f71-eb8971a9915e", "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" + "createdDateTime": "2020-10-30T14:12:55Z", + "lastUpdatedDateTime": "2020-10-30T14:12:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d3e488e5-e7bf-4c70-8f71-eb8971a9915e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d35a6dcd26f8874d0aa2b3ffcf09bec7", "x-ms-return-client-request-id": "true" @@ -179,32 +179,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e9aba59-8c63-4be9-bdbf-9ba290ebaf08", + "apim-request-id": "1eea8a97-b5f9-462a-ba75-76487be31c29", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:01 GMT", + "Date": "Fri, 30 Oct 2020 14:13:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", + "modelId": "d3e488e5-e7bf-4c70-8f71-eb8971a9915e", "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" + "createdDateTime": "2020-10-30T14:12:55Z", + "lastUpdatedDateTime": "2020-10-30T14:12:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d3e488e5-e7bf-4c70-8f71-eb8971a9915e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e0ed75e5f656b68ae4c3b489d537af01", "x-ms-return-client-request-id": "true" @@ -212,32 +212,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cef34f11-4730-445d-80c0-5015c53090c4", + "apim-request-id": "ff875ac0-8e64-40a7-a29f-7594b03755fe", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:02 GMT", + "Date": "Fri, 30 Oct 2020 14:13:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", + "modelId": "d3e488e5-e7bf-4c70-8f71-eb8971a9915e", "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" + "createdDateTime": "2020-10-30T14:12:55Z", + "lastUpdatedDateTime": "2020-10-30T14:12:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d3e488e5-e7bf-4c70-8f71-eb8971a9915e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9e3ee0be6fa2f14c5a67a11729905d31", "x-ms-return-client-request-id": "true" @@ -245,32 +245,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "02381087-bd88-41ce-acee-44f01e86bd46", + "apim-request-id": "0456725a-77c4-4d28-965c-763b464ca7d1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:03 GMT", + "Date": "Fri, 30 Oct 2020 14:13:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", + "modelId": "d3e488e5-e7bf-4c70-8f71-eb8971a9915e", "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" + "createdDateTime": "2020-10-30T14:12:55Z", + "lastUpdatedDateTime": "2020-10-30T14:12:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d3e488e5-e7bf-4c70-8f71-eb8971a9915e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a9ca05723634d65ce2a4ee3572c4b1d3", "x-ms-return-client-request-id": "true" @@ -278,32 +278,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0f893fe7-707d-4206-9778-3456e20d6146", + "apim-request-id": "1ab7869d-dae4-47d0-a643-2edf228d3f12", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:04 GMT", + "Date": "Fri, 30 Oct 2020 14:13:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", + "modelId": "d3e488e5-e7bf-4c70-8f71-eb8971a9915e", "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" + "createdDateTime": "2020-10-30T14:12:55Z", + "lastUpdatedDateTime": "2020-10-30T14:12:55Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/d3e488e5-e7bf-4c70-8f71-eb8971a9915e?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ee40b2f220cb762529fc85ef55738c53", "x-ms-return-client-request-id": "true" @@ -311,251 +311,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ae1be9fc-ad4e-4ed5-8ce6-2eda35d35cf3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", - "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "d0178266066d87cc8468bbfe80167f96", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9ffd0615-dcea-46d1-8d71-209af10895a2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:06 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", - "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "7724cdb66e4f5266e0547f38b06d806f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4ea91daf-c82b-43ae-8803-b1d2d7d363fb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:07 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", - "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "efcf9b17e1aceb65e5b96a636426f512", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6bb8db8d-2547-4d28-8acd-d98561fac2e2", + "apim-request-id": "ae7ece4b-f0a8-488c-a469-0e0ebd2ee16b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:08 GMT", + "Date": "Fri, 30 Oct 2020 14:13:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", - "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "8739ee7c154ef7031cc5ef198794d616", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bc0143aa-2756-4bf1-ad27-2b900b24a655", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", - "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "e5e74ce79047d4e9673891960403edba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d1d05b4c-6271-4670-930b-b435f552d005", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", - "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "c2bb6d5ef934012097d8d2e7f14c6450", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0c935a53-c975-4226-8f58-99d96e9b0fe6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", - "status": "creating", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:16:56Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/b332d3a9-767e-4b92-b298-03a7ba2c64cb?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "187c53e2103eecca04641f15836df219", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "13a000f7-81f7-4882-a853-913a5214c1a0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:17:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "modelInfo": { - "modelId": "b332d3a9-767e-4b92-b298-03a7ba2c64cb", + "modelId": "d3e488e5-e7bf-4c70-8f71-eb8971a9915e", "status": "ready", - "createdDateTime": "2020-09-09T22:16:56Z", - "lastUpdatedDateTime": "2020-09-09T22:17:12Z" + "createdDateTime": "2020-10-30T14:12:55Z", + "lastUpdatedDateTime": "2020-10-30T14:13:06Z" }, "keys": { "clusters": { @@ -628,7 +397,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "1923633631" } } \ No newline at end of file diff --git a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/TrainingOperationCanPollFromNewObjectAsync.json b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/TrainingOperationCanPollFromNewObjectAsync.json index f04105b7b081a..b8201c144038b 100644 --- a/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/TrainingOperationCanPollFromNewObjectAsync.json +++ b/sdk/formrecognizer/Azure.AI.FormRecognizer/tests/SessionRecords/OperationsLiveTests/TrainingOperationCanPollFromNewObjectAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,8 +9,8 @@ "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a73745548307700faaa6814c5819f70c", "x-ms-return-client-request-id": "true" @@ -21,25 +21,25 @@ }, "StatusCode": 201, "ResponseHeaders": { - "apim-request-id": "9ac155b9-5aca-4e06-b239-228c020325d1", + "apim-request-id": "e99ce9f9-6faf-406c-8425-831783bbef7f", "Content-Length": "0", - "Date": "Wed, 09 Sep 2020 22:18:26 GMT", - "Location": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "Date": "Fri, 30 Oct 2020 14:13:38 GMT", + "Location": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4037c27c-35b7-4c57-970e-62655cbe492d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "219" + "x-envoy-upstream-service-time": "167" }, "ResponseBody": [] }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4037c27c-35b7-4c57-970e-62655cbe492d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2d52b896e4e325cd48c9150d8b31df65", "x-ms-return-client-request-id": "true" @@ -47,32 +47,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0addaec-0d94-47c4-a30e-3c8198642c3a", + "apim-request-id": "aa0f140c-5d21-4cdb-8804-007264135121", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:26 GMT", + "Date": "Fri, 30 Oct 2020 14:13:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "4037c27c-35b7-4c57-970e-62655cbe492d", "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" + "createdDateTime": "2020-10-30T14:13:38Z", + "lastUpdatedDateTime": "2020-10-30T14:13:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4037c27c-35b7-4c57-970e-62655cbe492d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "42873edac829000e41361ae3e6ee169f", "x-ms-return-client-request-id": "true" @@ -80,32 +80,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca22788d-935f-4781-8f03-0c3311e7d474", + "apim-request-id": "e700c2a0-20d1-45b9-bd5c-3da16df46942", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:27 GMT", + "Date": "Fri, 30 Oct 2020 14:13:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "4037c27c-35b7-4c57-970e-62655cbe492d", "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" + "createdDateTime": "2020-10-30T14:13:38Z", + "lastUpdatedDateTime": "2020-10-30T14:13:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4037c27c-35b7-4c57-970e-62655cbe492d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fbbc27d8dde16f6078125e3e6d02e579", "x-ms-return-client-request-id": "true" @@ -113,32 +113,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "58ee4741-ba35-473a-a60b-21fa112c2646", + "apim-request-id": "d8e761db-f228-4b6b-86fa-0dcd92bd4ea9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:28 GMT", + "Date": "Fri, 30 Oct 2020 14:13:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "4037c27c-35b7-4c57-970e-62655cbe492d", "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" + "createdDateTime": "2020-10-30T14:13:38Z", + "lastUpdatedDateTime": "2020-10-30T14:13:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4037c27c-35b7-4c57-970e-62655cbe492d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "19711bc6b492cee2aa52ecadcaea3f5a", "x-ms-return-client-request-id": "true" @@ -146,32 +146,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aaf70ca9-0f3f-4d3b-b304-518fffd68e3f", + "apim-request-id": "e85e38f4-8356-490b-891e-1cc3c3b60e37", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:29 GMT", + "Date": "Fri, 30 Oct 2020 14:13:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "4037c27c-35b7-4c57-970e-62655cbe492d", "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" + "createdDateTime": "2020-10-30T14:13:38Z", + "lastUpdatedDateTime": "2020-10-30T14:13:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4037c27c-35b7-4c57-970e-62655cbe492d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "643575b2e475fd84de17ca1769cf933f", "x-ms-return-client-request-id": "true" @@ -179,32 +179,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "266fb100-f5a4-4f80-ac35-c4a231adf8a4", + "apim-request-id": "1fe38fe1-702e-4957-97c3-719f08e95a79", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:30 GMT", + "Date": "Fri, 30 Oct 2020 14:13:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "4037c27c-35b7-4c57-970e-62655cbe492d", "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" + "createdDateTime": "2020-10-30T14:13:38Z", + "lastUpdatedDateTime": "2020-10-30T14:13:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4037c27c-35b7-4c57-970e-62655cbe492d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ca1ca050fd7c230d44ee518ef0b2a48d", "x-ms-return-client-request-id": "true" @@ -212,9 +212,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6a1fc358-e9f6-43e7-a81d-bab29e2ed73e", + "apim-request-id": "99ee108f-f85e-4d7c-a2ab-8d9f79f436c2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:31 GMT", + "Date": "Fri, 30 Oct 2020 14:13:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -222,22 +222,22 @@ }, "ResponseBody": { "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "4037c27c-35b7-4c57-970e-62655cbe492d", "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" + "createdDateTime": "2020-10-30T14:13:38Z", + "lastUpdatedDateTime": "2020-10-30T14:13:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4037c27c-35b7-4c57-970e-62655cbe492d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f78c04d381cce20497733b7ae9ca64da", "x-ms-return-client-request-id": "true" @@ -245,32 +245,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f108f3d4-238f-4806-b350-eba1e24f4859", + "apim-request-id": "74fc4adf-6b94-4623-b65c-6a4fdbec7f42", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:32 GMT", + "Date": "Fri, 30 Oct 2020 14:13:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "4037c27c-35b7-4c57-970e-62655cbe492d", "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" + "createdDateTime": "2020-10-30T14:13:38Z", + "lastUpdatedDateTime": "2020-10-30T14:13:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4037c27c-35b7-4c57-970e-62655cbe492d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "295cadbe74cdb4dd68111f8692f50d2b", "x-ms-return-client-request-id": "true" @@ -278,32 +278,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54301791-8794-4748-b933-eb3b21cf14bb", + "apim-request-id": "65c3b70d-b22b-48aa-8ac1-0486e60f45a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:33 GMT", + "Date": "Fri, 30 Oct 2020 14:13:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "4037c27c-35b7-4c57-970e-62655cbe492d", "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" + "createdDateTime": "2020-10-30T14:13:38Z", + "lastUpdatedDateTime": "2020-10-30T14:13:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4037c27c-35b7-4c57-970e-62655cbe492d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "65443c739b42cf729c393309c292397a", "x-ms-return-client-request-id": "true" @@ -311,32 +311,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3096e783-7149-4b70-80a4-0e789b0a4f0f", + "apim-request-id": "c8e68589-d0e4-4b2e-b05e-e4ebc5c7dd84", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:34 GMT", + "Date": "Fri, 30 Oct 2020 14:13:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "4037c27c-35b7-4c57-970e-62655cbe492d", "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" + "createdDateTime": "2020-10-30T14:13:38Z", + "lastUpdatedDateTime": "2020-10-30T14:13:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4037c27c-35b7-4c57-970e-62655cbe492d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "43d076897a555ebf26d78ebb617d4fa1", "x-ms-return-client-request-id": "true" @@ -344,32 +344,32 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5facc23-d9dc-4a2a-86f8-891f55248a91", + "apim-request-id": "3eb79c93-c0f5-4aef-bde0-50baa08b9fc9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:35 GMT", + "Date": "Fri, 30 Oct 2020 14:13:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "4037c27c-35b7-4c57-970e-62655cbe492d", "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" + "createdDateTime": "2020-10-30T14:13:38Z", + "lastUpdatedDateTime": "2020-10-30T14:13:38Z" } } }, { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", + "RequestUri": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/formrecognizer/v2.1-preview.2/custom/models/4037c27c-35b7-4c57-970e-62655cbe492d?includeKeys=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20201030.1", + "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ad070f66ff8622973a8d8c9441d4f2d6", "x-ms-return-client-request-id": "true" @@ -377,152 +377,20 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e254081a-ebef-4ec0-a605-faeb149a729e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", - "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "1bfda5d8c925f9d57de53e6b0db76d1f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a72ef450-66fe-44d3-969d-7061960b14a7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", - "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b2a391e98c8b8af3dfad09c8ed2b1c52", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "abbda2f7-4207-4709-a2a9-08c0e234cd02", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:38 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", - "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "bce2b8e534809c7b390e2fa0c12c1583", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c68ecc64-e946-47ab-9c13-7e2561e02e88", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" - }, - "ResponseBody": { - "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", - "status": "creating", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:26Z" - } - } - }, - { - "RequestUri": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/formrecognizer/v2.1-preview.1/custom/models/25eefd34-0c18-4e0f-b59d-7bceee4c5795?includeKeys=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.FormRecognizer/3.1.0-alpha.20200909.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" - ], - "x-ms-client-request-id": "b0aa6d1f3f304b4bb1723c78c00d0b51", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bd09da2b-34f0-488c-b863-900f740eff0b", + "apim-request-id": "65681a7f-0303-4c1f-a4a9-e0a3015cd52b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Sep 2020 22:18:40 GMT", + "Date": "Fri, 30 Oct 2020 14:13:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "24" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "modelInfo": { - "modelId": "25eefd34-0c18-4e0f-b59d-7bceee4c5795", + "modelId": "4037c27c-35b7-4c57-970e-62655cbe492d", "status": "ready", - "createdDateTime": "2020-09-09T22:18:26Z", - "lastUpdatedDateTime": "2020-09-09T22:18:40Z" + "createdDateTime": "2020-10-30T14:13:38Z", + "lastUpdatedDateTime": "2020-10-30T14:13:51Z" }, "keys": { "clusters": { @@ -595,7 +463,7 @@ "Variables": { "FORM_RECOGNIZER_API_KEY": "Sanitized", "FORM_RECOGNIZER_BLOB_CONTAINER_SAS_URL": "https://sanitized.blob.core.windows.net", - "FORM_RECOGNIZER_ENDPOINT": "https://mariari-westus2-formrecognizer.cognitiveservices.azure.com/", + "FORM_RECOGNIZER_ENDPOINT": "https://camaiaor-formrec-westcentralus.cognitiveservices.azure.com/", "RandomSeed": "596378860" } } \ No newline at end of file