Typesense · Schema

StopwordsSetUpsertSchema

Full-Text SearchOpen SourceSearch EngineTypo ToleranceVector Search

Properties

Name Type Description
stopwords array List of stopword strings.
locale string Locale for the stopwords set.
View JSON Schema on GitHub

JSON Schema

typesense-stopwordssetupsertschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StopwordsSetUpsertSchema",
  "title": "StopwordsSetUpsertSchema",
  "type": "object",
  "required": [
    "stopwords"
  ],
  "properties": {
    "stopwords": {
      "type": "array",
      "description": "List of stopword strings.",
      "items": {
        "type": "string"
      }
    },
    "locale": {
      "type": "string",
      "description": "Locale for the stopwords set."
    }
  }
}