Mindee · JSON Structure

Mindee Extraction Structure

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: 1
Document ParsingOCRIDPAIMachine LearningInvoicesReceiptsIDsComputer Vision

Mindee Extraction Structure is a JSON Structure definition published by Mindee, describing 1 property. It conforms to the https://json-structure.org/structure/v1 meta-schema.

Properties

inference

Meta-schema: https://json-structure.org/structure/v1

JSON Structure

Raw ↑
{
  "$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" }
                }
              }
            }
          }
        }
      }
    }
  }
}