analyze-document
Extract structured data from documents using Azure Form Recognizer. Ideal for processing receipts, invoices, and IDs by analyzing the document URL with optional custom models.
Instructions
Analyzes a document using Azure Form Recognizer and returns structured data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
modelId | No | Optional model ID for custom models | |
url | Yes | URL of the document to analyze |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"modelId": {
"description": "Optional model ID for custom models",
"type": "string"
},
"url": {
"description": "URL of the document to analyze",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}