Qdrant · Schema

IsEmptyCondition

Select points with empty payload for a specified field

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
is_empty object
View JSON Schema on GitHub

JSON Schema

qdrant-isemptycondition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IsEmptyCondition",
  "title": "IsEmptyCondition",
  "description": "Select points with empty payload for a specified field",
  "type": "object",
  "required": [
    "is_empty"
  ],
  "properties": {
    "is_empty": {
      "$ref": "#/components/schemas/PayloadField"
    }
  }
}