Qdrant · Schema

CollectionsResponse

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
collections array
View JSON Schema on GitHub

JSON Schema

qdrant-collectionsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CollectionsResponse",
  "title": "CollectionsResponse",
  "type": "object",
  "required": [
    "collections"
  ],
  "properties": {
    "collections": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CollectionDescription"
      }
    }
  },
  "example": {
    "collections": [
      {
        "name": "arxiv-title"
      },
      {
        "name": "arxiv-abstract"
      },
      {
        "name": "medium-title"
      },
      {
        "name": "medium-text"
      }
    ]
  }
}