Skip to content

Commit

Permalink
Add x-model overlays for tokenizer, filter, charfilter schemas (#2976)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcawl authored Oct 16, 2024
1 parent 4e82e6b commit 966c2f2
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions docs/overlays/elasticsearch-shared-overlays.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,43 @@ actions:
# W
- name: watcher
x-displayName: Watcher
# Add x-model and/or abbreviate schemas that should point to other references
- target: "$.components['schemas']['_types.analysis:CharFilter'].oneOf"
description: Remove existing oneOf definition for CharFilter
remove: true
- target: "$.components['schemas']['_types.analysis:CharFilter']"
description: Simplify CharFilter definition
update:
x-model: true
description: >
Character filters that are used to preprocess characters before they are passed to the tokenizer.
externalDocs:
url: https://www.elastic.co/guide/en/elasticsearch/reference/master/analysis-charfilters.html
description: Character filters reference
- target: "$.components['schemas']['_types.analysis:Tokenizer'].oneOf"
description: Remove existing oneOf definition for tokenizer
remove: true
- target: "$.components['schemas']['_types.analysis:Tokenizer']"
description: Simplify tokenizer definition
update:
x-model: true
description: >
A tokenizer to use to convert text into tokens.
externalDocs:
url: https://www.elastic.co/guide/en/elasticsearch/reference/master/analysis-tokenizers.html
description: Tokenizer reference
- target: "$.components['schemas']['_types.analysis:TokenFilter'].oneOf"
description: Remove existing oneOf definition for tokenfilter
remove: true
- target: "$.components['schemas']['_types.analysis:TokenFilter']"
description: Simplify tokenfilter definition
update:
x-model: true
description: >
Token filters that are applied after the tokenizer.
externalDocs:
url: https://www.elastic.co/guide/en/elasticsearch/reference/master/analysis-tokenfilters.html
description: Token filter reference
# Abbreviate and annotate items that are not shown in Bump.sh due to depth limits
- target: "$.components['schemas']['ml._types:Datafeed'].properties.query"
description: Remove query object from anomaly detection datafeed
Expand Down

0 comments on commit 966c2f2

Please sign in to comment.