Typesense · Schema

ClusterApiKeys

Full-Text SearchOpen SourceSearch EngineTypo ToleranceVector Search

Properties

Name Type Description
admin_key string Admin API key with full access to the Typesense Server.
search_only_key string Search-only API key for client-side use.
View JSON Schema on GitHub

JSON Schema

typesense-clusterapikeys-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClusterApiKeys",
  "title": "ClusterApiKeys",
  "type": "object",
  "properties": {
    "admin_key": {
      "type": "string",
      "description": "Admin API key with full access to the Typesense Server."
    },
    "search_only_key": {
      "type": "string",
      "description": "Search-only API key for client-side use."
    }
  }
}