DocumentTypeDetailsOutput interface
Document type info.
Properties
build |
Custom document model build mode. Possible values: "template", "neural", "generative" |
confidence |
Only perform analysis if docType confidence is above threshold. |
description | Document model description. |
features | List of optional analysis features. |
field |
Estimated confidence for each field. |
field |
Description of the document semantic schema using a JSON Schema style syntax. |
max |
Maximum number of documents of specified type to analyze. Default=all. |
model |
Document model to use for analyzing documents with specified type. |
query |
List of additional fields to extract. Ex. "NumberOfGuests,StoreNumber" |
Property Details
buildMode
Custom document model build mode.
Possible values: "template", "neural", "generative"
buildMode?: string
Property Value
string
confidenceThreshold
Only perform analysis if docType confidence is above threshold.
confidenceThreshold?: number
Property Value
number
description
Document model description.
description?: string
Property Value
string
features
List of optional analysis features.
features?: string[]
Property Value
string[]
fieldConfidence
Estimated confidence for each field.
fieldConfidence?: Record<string, number>
Property Value
Record<string, number>
fieldSchema
Description of the document semantic schema using a JSON Schema style syntax.
fieldSchema?: Record<string, DocumentFieldSchemaOutput>
Property Value
Record<string, DocumentFieldSchemaOutput>
maxDocumentsToAnalyze
Maximum number of documents of specified type to analyze. Default=all.
maxDocumentsToAnalyze?: number
Property Value
number
modelId
Document model to use for analyzing documents with specified type.
modelId?: string
Property Value
string
queryFields
List of additional fields to extract. Ex. "NumberOfGuests,StoreNumber"
queryFields?: string[]
Property Value
string[]
Azure SDK for JavaScript