Skip to content

Commit c99fbb9

Browse files
authored
Add normalizer to AnalyzeRequest, update description of other properties (#15727)
1 parent 5844fec commit c99fbb9

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

specification/search/data-plane/Azure.Search/preview/2021-04-30-Preview/searchservice.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1639,27 +1639,31 @@
16391639
},
16401640
"analyzer": {
16411641
"$ref": "#/definitions/LexicalAnalyzerName",
1642-
"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."
1642+
"description": "The name of the analyzer to use to break the given text."
16431643
},
16441644
"tokenizer": {
16451645
"$ref": "#/definitions/LexicalTokenizerName",
1646-
"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."
1646+
"description": "The name of the tokenizer to use to break the given text."
1647+
},
1648+
"normalizer": {
1649+
"$ref": "#/definitions/LexicalNormalizerName",
1650+
"description": "The name of the normalizer to use to normalize the given text."
16471651
},
16481652
"tokenFilters": {
16491653
"type": "array",
16501654
"items": {
16511655
"$ref": "#/definitions/TokenFilterName",
16521656
"x-nullable": false
16531657
},
1654-
"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."
1658+
"description": "An optional list of token filters to use when breaking the given text."
16551659
},
16561660
"charFilters": {
16571661
"type": "array",
16581662
"items": {
16591663
"$ref": "#/definitions/CharFilterName",
16601664
"x-nullable": false
16611665
},
1662-
"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."
1666+
"description": "An optional list of character filters to use when breaking the given text."
16631667
}
16641668
},
16651669
"required": [

0 commit comments

Comments
 (0)