Qdrant · Schema

PointVectors

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
id object
vector object
View JSON Schema on GitHub

JSON Schema

qdrant-pointvectors-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PointVectors",
  "title": "PointVectors",
  "type": "object",
  "required": [
    "id",
    "vector"
  ],
  "properties": {
    "id": {
      "$ref": "#/components/schemas/ExtendedPointId"
    },
    "vector": {
      "$ref": "#/components/schemas/VectorStruct"
    }
  }
}