Skip to content

Commit

Permalink
Search SDK: Adding searchAnalyzer and indexAnalyzer properties to Fie…
Browse files Browse the repository at this point in the history
…ld type
  • Loading branch information
brjohnstmsft committed Sep 5, 2016
1 parent 9a5debc commit aa33aa7
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion search/2015-02-28-Preview/swagger/searchservice.json
Original file line number Diff line number Diff line change
Expand Up @@ -3125,7 +3125,21 @@
"url": "https://msdn.microsoft.com/library/azure/dn879793.aspx"
},
"$ref": "#/definitions/AnalyzerName",
"description": "Name of the text analyzer to use."
"description": "The name of the analyzer to use for the field at search time and indexing time. This option can be used only with searchable fields and it can't be set together with either searchAnalyzer or indexAnalyzer. Once the analyzer is chosen, it cannot be changed for the field."
},
"searchAnalyzer": {
"externalDocs": {
"url": "https://msdn.microsoft.com/library/azure/dn879793.aspx"
},
"$ref": "#/definitions/AnalyzerName",
"description": "The name of the analyzer used at search time for the field. This option can be used only with searchable fields. It must be set together with indexAnalyzer and it cannot be set together with the analyzer option. This analyzer can be updated on an existing field."
},
"indexAnalyzer": {
"externalDocs": {
"url": "https://msdn.microsoft.com/library/azure/dn879793.aspx"
},
"$ref": "#/definitions/AnalyzerName",
"description": "The name of the analyzer used at indexing time for the field. This option can be used only with searchable fields. It must be set together with searchAnalyzer and it cannot be set together with the analyzer option. Once the analyzer is chosen, it cannot be changed for the field."
},
"key": {
"x-ms-client-name": "isKey",
Expand Down

0 comments on commit aa33aa7

Please sign in to comment.