Typesense · Schema

SynonymItem

Full-Text SearchOpen SourceSearch EngineTypo ToleranceVector Search

Properties

Name Type Description
id string ID of the synonym item.
synonyms array
root string Root term for one-way synonyms.
View JSON Schema on GitHub

JSON Schema

typesense-synonymitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SynonymItem",
  "title": "SynonymItem",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the synonym item."
    },
    "synonyms": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "root": {
      "type": "string",
      "description": "Root term for one-way synonyms."
    }
  }
}