Qdrant · Schema

Nested

Select points with payload for a specified nested field

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
key string
filter object
View JSON Schema on GitHub

JSON Schema

qdrant-nested-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Nested",
  "title": "Nested",
  "description": "Select points with payload for a specified nested field",
  "type": "object",
  "required": [
    "filter",
    "key"
  ],
  "properties": {
    "key": {
      "type": "string"
    },
    "filter": {
      "$ref": "#/components/schemas/Filter"
    }
  }
}