Skip to main content

analyze_form_results

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

Overview

Nameanalyze_form_results
TypeResource
Idazure.ai_form_recognizer.analyze_form_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_form_resultselectmodel_id, result_id, endpointGet Analyze Form Result. Obtain current status and the result of the analyze form 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: )
model_idstringModel identifier.
result_idstringAnalyze operation result identifier.

SELECT examples

Get Analyze Form Result. Obtain current status and the result of the analyze form operation.

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