Qdrant · Schema

AliasDescription

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
alias_name string
collection_name string
View JSON Schema on GitHub

JSON Schema

qdrant-aliasdescription-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AliasDescription",
  "title": "AliasDescription",
  "type": "object",
  "required": [
    "alias_name",
    "collection_name"
  ],
  "properties": {
    "alias_name": {
      "type": "string"
    },
    "collection_name": {
      "type": "string"
    }
  },
  "example": {
    "alias_name": "blogs-title",
    "collection_name": "arivx-title"
  }
}