Skip to main content

analyze_business_card_results

Creates, updates, deletes, gets or lists an analyze_business_card_results resource.

Overview

Nameanalyze_business_card_results
TypeResource
Idazure.ai_form_recognizer.analyze_business_card_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
analyzeResultobjectResults of the analyze operation.
composedTrainResultsarrayTraining result for composed model.
createdDateTimestring (date-time)Required. Date and time (UTC) when the analyze operation was submitted.
keysobjectKeys extracted by the custom model.
lastUpdatedDateTimestring (date-time)Required. Date and time (UTC) when the status was last updated.
modelInfoobjectBasic custom model information. All required parameters must be populated in order to send to Azure.
statusstringRequired. Operation status. Known values are: "notStarted", "running", "succeeded", "failed".
trainResultobjectCustom model training result. All required parameters must be populated in order to send to Azure.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_analyze_business_card_resultselectresult_id, endpointGet Analyze Business Card Result. Track the progress and obtain the result of the analyze business card operation.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
endpointstringThe service endpoint host (no scheme). (default: )
result_idstringAnalyze operation result identifier.

SELECT examples

Get Analyze Business Card Result. Track the progress and obtain the result of the analyze business card operation.

SELECT
analyzeResult,
composedTrainResults,
createdDateTime,
keys,
lastUpdatedDateTime,
modelInfo,
status,
trainResult
FROM azure.ai_form_recognizer.analyze_business_card_results
WHERE result_id = '{{ result_id }}' -- required
AND endpoint = '{{ endpoint }}' -- required
;