Mistral AI · Schema

OcrResponse

AgentsArtificial IntelligenceBatch ProcessingChatEmbeddingsFine-TuningLarge Language ModelsOCR

Properties

Name Type Description
pages array A list of pages with extracted content.
model string The model used for OCR processing.
usage object
View JSON Schema on GitHub

JSON Schema

mistral-ai-ocrresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OcrResponse",
  "title": "OcrResponse",
  "type": "object",
  "properties": {
    "pages": {
      "type": "array",
      "description": "A list of pages with extracted content.",
      "items": {
        "$ref": "#/components/schemas/OcrPage"
      }
    },
    "model": {
      "type": "string",
      "description": "The model used for OCR processing."
    },
    "usage": {
      "$ref": "#/components/schemas/OcrUsage"
    }
  }
}