Qdrant · Schema

ExtendedPointId

Type, used for specifying point ID in user interface

AIArtificial IntelligenceVector Databases
View JSON Schema on GitHub

JSON Schema

qdrant-extendedpointid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExtendedPointId",
  "title": "ExtendedPointId",
  "description": "Type, used for specifying point ID in user interface",
  "anyOf": [
    {
      "type": "integer",
      "format": "uint64",
      "minimum": 0,
      "example": 42
    },
    {
      "type": "string",
      "format": "uuid",
      "example": "550e8400-e29b-41d4-a716-446655440000"
    }
  ]
}