Qdrant · Schema

CollectionExistence

State of existence of a collection, true = exists, false = does not exist

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
exists boolean
View JSON Schema on GitHub

JSON Schema

qdrant-collectionexistence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CollectionExistence",
  "title": "CollectionExistence",
  "description": "State of existence of a collection, true = exists, false = does not exist",
  "type": "object",
  "required": [
    "exists"
  ],
  "properties": {
    "exists": {
      "type": "boolean"
    }
  }
}