{ "$schema": "https://json-structure.org/structure/v1", "$id": "https://raw.githubusercontent.com/api-evangelist/mindee/main/json-structure/mindee-extraction-structure.json", "title": "Mindee Extraction Result", "description": "JSON Structure description of a Mindee extraction inference result. Field set is data-schema driven; this captures the wrapper and the common per-field shape.", "type": "object", "properties": { "inference": { "type": "object", "properties": { "id": { "type": "string", "description": "Inference identifier." }, "model": { "type": "object" }, "file": { "type": "object" }, "result": { "type": "object", "description": "Result payload keyed by field name from the model's Data Schema.", "properties": { "fields": { "type": "object", "additionalProperties": { "type": "object", "properties": { "value": { "description": "Extracted value (string, number, date, boolean, or list)." }, "confidence": { "type": "number", "minimum": 0, "maximum": 1 }, "polygon": { "type": "array" }, "page": { "type": "integer" }, "raw_text": { "type": "string" } } } } } } } } } }