Mistral AI · Schema

ExtractedImage

AgentsArtificial IntelligenceBatch ProcessingChatEmbeddingsFine-TuningLarge Language ModelsOCR

Properties

Name Type Description
id string A unique identifier for the extracted image.
base64 string Base64-encoded image data.
content_type string The MIME type of the image.
View JSON Schema on GitHub

JSON Schema

mistral-ai-extractedimage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExtractedImage",
  "title": "ExtractedImage",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "A unique identifier for the extracted image."
    },
    "base64": {
      "type": "string",
      "description": "Base64-encoded image data."
    },
    "content_type": {
      "type": "string",
      "description": "The MIME type of the image."
    }
  }
}