Qdrant · Schema

BatchVectorStruct

AIArtificial IntelligenceVector Databases
View JSON Schema on GitHub

JSON Schema

qdrant-batchvectorstruct-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchVectorStruct",
  "title": "BatchVectorStruct",
  "anyOf": [
    {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "number",
          "format": "float"
        }
      }
    },
    {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "array",
          "items": {
            "type": "number",
            "format": "float"
          }
        }
      }
    },
    {
      "type": "object",
      "additionalProperties": {
        "type": "array",
        "items": {
          "$ref": "#/components/schemas/Vector"
        }
      }
    },
    {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Document"
      }
    },
    {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Image"
      }
    },
    {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/InferenceObject"
      }
    }
  ]
}