Skip to content

Commit

Permalink
Add normalizer to AnalyzeRequest, update description of other propert…
Browse files Browse the repository at this point in the history
…ies (Azure#15727)
  • Loading branch information
yoju0121 authored Aug 25, 2021
1 parent 5844fec commit c99fbb9
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1639,27 +1639,31 @@
},
"analyzer": {
"$ref": "#/definitions/LexicalAnalyzerName",
"description": "The name of the analyzer to use to break the given text. If this parameter is not specified, you must specify a tokenizer instead. The tokenizer and analyzer parameters are mutually exclusive."
"description": "The name of the analyzer to use to break the given text."
},
"tokenizer": {
"$ref": "#/definitions/LexicalTokenizerName",
"description": "The name of the tokenizer to use to break the given text. If this parameter is not specified, you must specify an analyzer instead. The tokenizer and analyzer parameters are mutually exclusive."
"description": "The name of the tokenizer to use to break the given text."
},
"normalizer": {
"$ref": "#/definitions/LexicalNormalizerName",
"description": "The name of the normalizer to use to normalize the given text."
},
"tokenFilters": {
"type": "array",
"items": {
"$ref": "#/definitions/TokenFilterName",
"x-nullable": false
},
"description": "An optional list of token filters to use when breaking the given text. This parameter can only be set when using the tokenizer parameter."
"description": "An optional list of token filters to use when breaking the given text."
},
"charFilters": {
"type": "array",
"items": {
"$ref": "#/definitions/CharFilterName",
"x-nullable": false
},
"description": "An optional list of character filters to use when breaking the given text. This parameter can only be set when using the tokenizer parameter."
"description": "An optional list of character filters to use when breaking the given text."
}
},
"required": [
Expand Down

0 comments on commit c99fbb9

Please sign in to comment.