Typesense · Schema

StopwordsSet

Full-Text SearchOpen SourceSearch EngineTypo ToleranceVector Search

Properties

Name Type Description
id string ID of the stopwords set.
stopwords array
locale string
View JSON Schema on GitHub

JSON Schema

typesense-stopwordsset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StopwordsSet",
  "title": "StopwordsSet",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the stopwords set."
    },
    "stopwords": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "locale": {
      "type": "string"
    }
  }
}