Typesense · Schema

StemmingDictionary

Full-Text SearchOpen SourceSearch EngineTypo ToleranceVector Search

Properties

Name Type Description
id string Stemming dictionary ID.
words object Map of words to their stems.
View JSON Schema on GitHub

JSON Schema

typesense-stemmingdictionary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StemmingDictionary",
  "title": "StemmingDictionary",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Stemming dictionary ID."
    },
    "words": {
      "type": "object",
      "description": "Map of words to their stems.",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}