Qdrant · Schema

VectorStruct

Full vector data per point separator with single and multiple vector modes

AIArtificial IntelligenceVector Databases
View JSON Schema on GitHub

JSON Schema

qdrant-vectorstruct-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VectorStruct",
  "title": "VectorStruct",
  "description": "Full vector data per point separator with single and multiple vector modes",
  "anyOf": [
    {
      "type": "array",
      "items": {
        "type": "number",
        "format": "float"
      },
      "example": [
        0.875,
        0.140625,
        0.897599995136261
      ]
    },
    {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "number",
          "format": "float"
        }
      },
      "example": [
        [
          0.875,
          0.140625,
          0.11020000278949738
        ],
        [
          0.7580000162124634,
          0.28126001358032227,
          0.9687100052833557
        ],
        [
          0.6209999918937683,
          0.42187801003456116,
          0.9375
        ]
      ]
    },
    {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/Vector"
      },
      "example": {
        "image-embeddings": [
          0.8730000257492065,
          0.140625,
          0.897599995136261
        ]
      }
    },
    {
      "$ref": "#/components/schemas/Document"
    },
    {
      "$ref": "#/components/schemas/Image"
    },
    {
      "$ref": "#/components/schemas/InferenceObject"
    }
  ]
}