Which Document Intelligence Model Extracts Invoice Fields
You are building an app named App1 that will use Azure AI Document Intelligence to extract the following data from scanned documents: • Shipping address • Billing address • Customer ID • Amount due • Due date • Total tax • Subtotal You need to identify which model to use for App1. The solution must minimize development effort. Which model should you use?
Community Votes
100% of anonymous learners picked answer C. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
This question tests identifying the correct Azure AI Document Intelligence prebuilt model based on a list of target extraction fields, where the common trap is choosing a custom or general model instead of the specialized prebuilt one.
Azure AI Document Intelligence provides prebuilt models to minimize development effort for data extraction. This page establishes that the prebuilt invoice model is the correct choice for extracting standard invoice fields like billing address and amount due.
Choosing a custom extraction model (A) or general document model (D), which requires significantly more development effort or lacks the specific schema to reliably extract these exact financial fields.
Community Discussion (7 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
The prebuilt invoice model in Azure AI Document Intelligence is specifically trained to extract common invoice fields such as shipping address, billing address, customer ID, amount due, due date, total tax, and subtotal. Using this prebuilt model requires zero custom training, perfectly satisfying the requirement to minimize development effort.Why the Other Options Are Wrong
A custom extraction model (A) requires you to label and train your own dataset, which contradicts the minimize development effort constraint. The contract model (B) is prebuilt but targets contract-specific fields like parties and clauses, not invoice financials. The general document model (D) extracts generic key-value pairs and entities but lacks the specialized schema to reliably extract the specific list of invoice fields without additional logic.Community Comment Notes
Commenters universally agree that the listed fields directly map to the prebuilt invoice model's schema. As syupwsh noted, "Azure AI Document Intelligence provides a pre-built model specifically designed for extracting common fields from invoices". A Microsoft reference was also provided confirming these are the exact fields extracted by the invoice model.Official Reference
Exam Strategy
Match the required extraction fields to the exact schema of Azure AI Document Intelligence prebuilt models. When the question specifies minimizing development effort, always prefer a prebuilt model over a custom one if the target fields align.