Qdrant · Schema

CreateAlias

Create alternative name for a collection. Collection will be available under both names for search, retrieve,

AIArtificial IntelligenceVector Databases

Properties

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

JSON Schema

qdrant-createalias-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateAlias",
  "title": "CreateAlias",
  "description": "Create alternative name for a collection. Collection will be available under both names for search, retrieve,",
  "type": "object",
  "required": [
    "alias_name",
    "collection_name"
  ],
  "properties": {
    "collection_name": {
      "type": "string"
    },
    "alias_name": {
      "type": "string"
    }
  }
}