Pinecone · Schema

ImageModel

Represents the data for an image.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
type string The format of the image data. Currently, this is always "base64".
mime_type string The MIME type of the image (e.g., "image/jpeg").
data string The image data. Currently, this is always a base64-encoded string.
View JSON Schema on GitHub

JSON Schema

pinecone-imagemodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImageModel",
  "title": "ImageModel",
  "nullable": true,
  "description": "Represents the data for an image.",
  "type": "object",
  "properties": {
    "type": {
      "description": "The format of the image data. Currently, this is always \"base64\".",
      "type": "string"
    },
    "mime_type": {
      "description": "The MIME type of the image (e.g., \"image/jpeg\").",
      "type": "string"
    },
    "data": {
      "description": "The image data. Currently, this is always a base64-encoded string.",
      "type": "string"
    }
  },
  "required": [
    "type",
    "mime_type",
    "data"
  ]
}