Qdrant · Schema

PointStruct

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
id object
vector object
payload object Payload values (optional)
View JSON Schema on GitHub

JSON Schema

qdrant-pointstruct-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PointStruct",
  "title": "PointStruct",
  "type": "object",
  "required": [
    "id",
    "vector"
  ],
  "properties": {
    "id": {
      "$ref": "#/components/schemas/ExtendedPointId"
    },
    "vector": {
      "$ref": "#/components/schemas/VectorStruct"
    },
    "payload": {
      "description": "Payload values (optional)",
      "anyOf": [
        {
          "$ref": "#/components/schemas/Payload"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}