An Azure service that turns documents into usable data. Previously known as Azure Form Recognizer.
Hi ,
Thanks for reaching out to Microsoft Q&A.
Based on the schema documentation you referenced, the prebuilt invoice model appears to be primarily designed around common international invoice fields, which explains why you're missing:
- Bankgiro/PlusGiro payment methods - These are specifically Swedish/Nordic payment systems
- OCR reference numbers - The swedish OCR payment reference system
- Invoice type classifications (Credit/Debit/Reminder) in Swedish context
- Swedish specific reference number formats
To obtain these specific fields, you have a couple of options:
- Post-Processing: After the model extracts the general fields, you can implement custom logic to parse the raw OCR output and identify the swedish specific fields. This approach requires additional development effort but allows for tailored extraction.
- Custom Model Training: Azure Doc Intelligence allows you to train custom models using your own labeled data. By providing examples of Swedish invoices and annotating the desired fields, you can create a model that accurately extracts the specific information you need.
- Hybrid Extraction Strategy: Use the prebuilt model for standard fields (amounts, dates, vendor info) and implement custom extraction logic for swedish specific elements from the raw OCR output.
As of now, there's no official roadmap indicating when or if the prebuilt invoice model will include Swedish-specific fields. Microsoft continuously updates its services based on user feedback and demand. If support for these fields is crucial for your operations, consider submitting feedback through Azure's official channels to highlight the need. https://feedback.azure.com/
Understanding "Language Support"
In this context, "language support" means the model can recognize and process text written in Swedish, enabling OCR and extraction of standard invoice fields. It does not imply comprehensive understanding or extraction of all locale specific elements unique to swedish invoices.
Please feel free to click the 'Upvote' (Thumbs-up) button and 'Accept as Answer'. This helps the community by allowing others with similar queries to easily find the solution.