Weaviate · JSON Structure

Weaviate Text Analyzer Config Structure

Text analysis options for a property. These settings are immutable after the property is created. Applies only to text and text[] data types that use an inverted index (searchable or filterable).

Type: object Properties: 3
Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Weaviate Text Analyzer Config Structure is a JSON Structure definition published by Weaviate, describing 3 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

asciiFold asciiFoldIgnore stopwordPreset

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api-evangelist.github.io/weaviate/json-structure/weaviate-text-analyzer-config-structure.json",
  "title": "TextAnalyzerConfig",
  "description": "Text analysis options for a property. These settings are immutable after the property is created. Applies only to text and text[] data types that use an inverted index (searchable or filterable).",
  "type": "object",
  "properties": {
    "asciiFold": {
      "type": "bool",
      "description": "If true, accent/diacritic marks are folded to their base characters during indexing and search. For example, '\u00e9cole' matches 'ecole'. Defaults to false."
    },
    "asciiFoldIgnore": {
      "type": "array",
      "description": "If provided, specifies a list of characters that should be excluded from ascii folding. For example, if ['\u00e9'] is provided, then '\u00e9' will not be folded to 'e' during indexing and search. This list is immutable after the property is created."
    },
    "stopwordPreset": {
      "type": "str",
      "description": "Stopword preset name. Overrides the collection-level invertedIndexConfig.stopwords for this property. Only applies to properties using 'word' tokenization. Can be a built-in preset ('en', 'none') or a user-defined preset from invertedIndexConfig.stopwordPresets."
    }
  }
}