Typesense · Schema

CollectionAliasSchema

Full-Text SearchOpen SourceSearch EngineTypo ToleranceVector Search

Properties

Name Type Description
collection_name string Name of the collection this alias points to.
View JSON Schema on GitHub

JSON Schema

typesense-collectionaliasschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CollectionAliasSchema",
  "title": "CollectionAliasSchema",
  "type": "object",
  "required": [
    "collection_name"
  ],
  "properties": {
    "collection_name": {
      "type": "string",
      "description": "Name of the collection this alias points to."
    }
  }
}