Qdrant · Schema

VectorInput

AIArtificial IntelligenceVector Databases
View JSON Schema on GitHub

JSON Schema

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