diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsGet.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsGet.json
new file mode 100644
index 000000000000..000082a08d9f
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsGet.json
@@ -0,0 +1,39 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "autocompleteMode": "oneTerm",
+ "search": "washington medic",
+ "suggesterName": "sg",
+ "filter": "search.in(docId,'101,102,105')",
+ "fuzzy": false,
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": 80,
+ "searchFields": [
+ "title",
+ "description"
+ ],
+ "top": 10
+ },
+ "responses": {
+ "200": {
+ "body": [
+ {
+ "text": "medicaid",
+ "queryPlusText": "washington medicaid"
+ },
+ {
+ "text": "medicare",
+ "queryPlusText": "washington medicare"
+ },
+ {
+ "text": "medicine",
+ "queryPlusText": "washington medicine"
+ }
+ ]
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsPost.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsPost.json
new file mode 100644
index 000000000000..72c60d7cc1e4
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsPost.json
@@ -0,0 +1,37 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "autocompleteRequest": {
+ "autocompleteMode": "oneTerm",
+ "search": "washington medic",
+ "suggesterName": "sg",
+ "filter": "search.in(docId,'101,102,105')",
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": 80,
+ "searchFields": "title,description",
+ "top": 10
+ }
+ },
+ "responses": {
+ "200": {
+ "body": [
+ {
+ "text": "medicaid",
+ "queryPlusText": "washington medicaid"
+ },
+ {
+ "text": "medicare",
+ "queryPlusText": "washington medicare"
+ },
+ {
+ "text": "medicine",
+ "queryPlusText": "washington medicine"
+ }
+ ]
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexCountDocuments.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexCountDocuments.json
new file mode 100644
index 000000000000..bc3c57632601
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexCountDocuments.json
@@ -0,0 +1,13 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": 427
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexGetDocument.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexGetDocument.json
new file mode 100644
index 000000000000..c3270808a760
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexGetDocument.json
@@ -0,0 +1,23 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "key": "1",
+ "$select": [
+ "docId",
+ "title",
+ "description"
+ ]
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "description": "Cheapest hotel in town",
+ "docId": "1",
+ "title": "Nice Hotel"
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexIndexDocuments.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexIndexDocuments.json
new file mode 100644
index 000000000000..5c41bc8b2a89
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexIndexDocuments.json
@@ -0,0 +1,94 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "batch": {
+ "value": [
+ {
+ "@search.action": "upload",
+ "docId": "1",
+ "title": "Fancy Stay",
+ "description": "Best hotel in town"
+ },
+ {
+ "@search.action": "merge",
+ "docId": "2",
+ "title": "Roach Motel"
+ },
+ {
+ "@search.action": "mergeOrUpload",
+ "docId": "3",
+ "title": "Econo Motel"
+ },
+ {
+ "@search.action": "delete",
+ "docId": "4"
+ }
+ ]
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "key": "1",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 201
+ },
+ {
+ "key": "2",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 200
+ },
+ {
+ "key": "3",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 200
+ },
+ {
+ "key": "4",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 200
+ }
+ ]
+ }
+ },
+ "207": {
+ "body": {
+ "value": [
+ {
+ "key": "1",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 200
+ },
+ {
+ "key": "2",
+ "status": false,
+ "errorMessage": "Document not found.",
+ "statusCode": 404
+ },
+ {
+ "key": "3",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 200
+ },
+ {
+ "key": "4",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 200
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsGet.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsGet.json
new file mode 100644
index 000000000000..0bc9ad4e6522
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsGet.json
@@ -0,0 +1,85 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "$count": true,
+ "facet": [
+ "category,count:10,sort:count"
+ ],
+ "$filter": "rating gt 10",
+ "highlight": [
+ "title"
+ ],
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": 80,
+ "$orderby": [
+ "search.score() desc",
+ "rating desc"
+ ],
+ "queryType": "simple",
+ "scoringParameters": [
+ "currentLocation--122.123,44.77233"
+ ],
+ "scoringProfile": "sp",
+ "search": "nice hotels",
+ "searchFields": [
+ "title",
+ "description"
+ ],
+ "searchMode": "any",
+ "$select": [
+ "docId",
+ "title",
+ "description"
+ ],
+ "$skip": 100,
+ "$top": 10
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "@odata.count": 25,
+ "@search.coverage": 80,
+ "@search.facets": {
+ "category": [
+ {
+ "count": 1,
+ "value": "Economy"
+ },
+ {
+ "count": 1,
+ "value": "Luxury"
+ }
+ ]
+ },
+ "value": [
+ {
+ "@search.score": 1.50,
+ "@search.highlights": {
+ "title": [
+ "Nice Hotel"
+ ]
+ },
+ "description": "Cheapest hotel in town",
+ "docId": "1",
+ "title": "Nice Hotel"
+ },
+ {
+ "@search.score": 0.70,
+ "@search.highlights": {
+ "title": [
+ "Fancy Hotel"
+ ]
+ },
+ "description": "Best hotel in town",
+ "docId": "2",
+ "title": "Fancy Hotel"
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsPost.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsPost.json
new file mode 100644
index 000000000000..732a0a19680a
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsPost.json
@@ -0,0 +1,98 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "searchRequest": {
+ "count": true,
+ "facets": [
+ "category,count:10,sort:count"
+ ],
+ "filter": "rating gt 4.0",
+ "highlight": "title",
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": null,
+ "orderby": "search.score() desc,rating desc",
+ "queryType": "simple",
+ "scoringParameters": [
+ "currentLocation--122.123,44.77233"
+ ],
+ "scoringProfile": "sp",
+ "search": "nice hotels",
+ "searchFields": "title,description",
+ "searchMode": "any",
+ "select": "docId,title,description",
+ "skip": 0,
+ "top": 10
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "@odata.count": 25,
+ "@search.facets": {
+ "category": [
+ {
+ "count": 1,
+ "value": "Economy"
+ },
+ {
+ "count": 1,
+ "value": "Luxury"
+ }
+ ]
+ },
+ "@search.nextPageParameters": {
+ "count": true,
+ "facets": [
+ "category,count:10,sort:count"
+ ],
+ "filter": "rating gt 4.0",
+ "highlight": "title",
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": null,
+ "orderby": "search.score() desc,rating desc",
+ "queryType": "simple",
+ "scoringParameters": [
+ "currentLocation--122.123,44.77233"
+ ],
+ "scoringProfile": "sp",
+ "search": "nice hotels",
+ "searchFields": "title,description",
+ "searchMode": "any",
+ "select": "docId,title,description",
+ "skip": 2,
+ "top": 8
+ },
+ "value": [
+ {
+ "@search.score": 1.50,
+ "@search.highlights": {
+ "title": [
+ "Nice Hotel"
+ ]
+ },
+ "description": "Cheapest hotel in town",
+ "docId": "1",
+ "title": "Nice Hotel"
+ },
+ {
+ "@search.score": 0.70,
+ "@search.highlights": {
+ "title": [
+ "Fancy Hotel"
+ ]
+ },
+ "description": "Best hotel in town",
+ "docId": "2",
+ "title": "Fancy Hotel"
+ }
+ ],
+ "@odata.nextLink": "https://myservice.search.windows.net/indexes('myindex')/docs/search.post.search?api-version=2019-05-06-Preview"
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSuggestDocumentsGet.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSuggestDocumentsGet.json
new file mode 100644
index 000000000000..465f75aa62ea
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSuggestDocumentsGet.json
@@ -0,0 +1,48 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "$filter": "rating gt 10",
+ "fuzzy": false,
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": 80,
+ "$orderby": [
+ "search.score() desc",
+ "rating desc"
+ ],
+ "search": "hote",
+ "searchFields": [
+ "title"
+ ],
+ "suggesterName": "sg",
+ "$select": [
+ "docId",
+ "title",
+ "description"
+ ],
+ "$top": 10
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "@search.text": "Nice Hotel",
+ "description": "Cheapest hotel in town",
+ "docId": "1",
+ "title": "Nice Hotel"
+ },
+ {
+ "@search.text": "Fancy Hotel",
+ "description": "Best hotel in town",
+ "docId": "2",
+ "title": "Fancy Hotel"
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSuggestDocumentsPost.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSuggestDocumentsPost.json
new file mode 100644
index 000000000000..a898e78f9fa8
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/examples/SearchIndexSuggestDocumentsPost.json
@@ -0,0 +1,39 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "suggestRequest": {
+ "filter": "rating gt 4.0",
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": 80,
+ "orderby": "rating desc",
+ "search": "hote",
+ "searchFields": "title",
+ "select": "docId,title,description",
+ "top": 10
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "@search.text": "Nice Hotel",
+ "description": "Cheapest hotel in town",
+ "docId": "1",
+ "title": "Nice Hotel"
+ },
+ {
+ "@search.text": "Fancy Hotel",
+ "description": "Best hotel in town",
+ "docId": "2",
+ "title": "Fancy Hotel"
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/searchindex.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/searchindex.json
new file mode 100644
index 000000000000..b1cc8cbb9aac
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/preview/2019-05-06-preview/searchindex.json
@@ -0,0 +1,1336 @@
+{
+ "swagger": "2.0",
+ "info": {
+ "title": "SearchIndexClient",
+ "description": "Client that can be used to query an index and upload, merge, or delete documents.",
+ "version": "2019-05-06-Preview",
+ "x-ms-code-generation-settings": {
+ "useDateTimeOffset": true,
+ "syncMethods": "None"
+ }
+ },
+ "x-ms-parameterized-host": {
+ "hostTemplate": "https://{searchServiceName}.{searchDnsSuffix}/indexes('{indexName}')",
+ "useSchemePrefix": false,
+ "parameters": [
+ {
+ "$ref": "#/parameters/SearchServiceNameParameter"
+ },
+ {
+ "$ref": "#/parameters/SearchDnsSuffixParameter"
+ },
+ {
+ "$ref": "#/parameters/IndexNameParameter"
+ }
+ ]
+ },
+ "consumes": [
+ "application/json"
+ ],
+ "produces": [
+ "application/json"
+ ],
+ "paths": {
+ "/docs/$count": {
+ "get": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_Count",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Count-Documents"
+ },
+ "x-ms-examples": {
+ "SearchIndexCountDocuments": {
+ "$ref": "./examples/SearchIndexCountDocuments.json"
+ }
+ },
+ "description": "Queries the number of documents in the index.",
+ "parameters": [
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "type": "integer",
+ "format": "int64"
+ }
+ }
+ }
+ }
+ },
+ "/docs": {
+ "get": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_SearchGet",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Search-Documents"
+ },
+ "x-ms-examples": {
+ "SearchIndexSearchDocumentsGet": {
+ "$ref": "./examples/SearchIndexSearchDocumentsGet.json"
+ }
+ },
+ "description": "Searches for documents in the index.",
+ "parameters": [
+ {
+ "name": "search",
+ "in": "query",
+ "type": "string",
+ "description": "A full-text search query expression; Use \"*\" or omit this parameter to match all documents.",
+ "x-ms-client-name": "SearchText"
+ },
+ {
+ "name": "$count",
+ "in": "query",
+ "type": "boolean",
+ "description": "A value that specifies whether to fetch the total count of results. Default is false. Setting this value to true may have a performance impact. Note that the count returned is an approximation.",
+ "x-nullable": false,
+ "x-ms-client-name": "IncludeTotalResultCount",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "facet",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "collectionFormat": "multi",
+ "description": "The list of facet expressions to apply to the search query. Each facet expression contains a field name, optionally followed by a comma-separated list of name:value pairs.",
+ "x-ms-client-name": "Facets",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "$filter",
+ "in": "query",
+ "type": "string",
+ "description": "The OData $filter expression to apply to the search query.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "highlight",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of field names to use for hit highlights. Only searchable fields can be used for hit highlighting.",
+ "x-ms-client-name": "HighlightFields",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "highlightPostTag",
+ "in": "query",
+ "type": "string",
+ "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. Default is </em>.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "highlightPreTag",
+ "in": "query",
+ "type": "string",
+ "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. Default is <em>.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "minimumCoverage",
+ "in": "query",
+ "type": "number",
+ "format": "double",
+ "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by a search query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 100.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "$orderby",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, and desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no OrderBy is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses.",
+ "x-ms-client-name": "OrderBy",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "queryType",
+ "in": "query",
+ "type": "string",
+ "enum": [
+ "simple",
+ "full"
+ ],
+ "x-ms-enum": {
+ "name": "QueryType",
+ "modelAsString": false
+ },
+ "x-nullable": false,
+ "description": "A value that specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "scoringParameter",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "collectionFormat": "multi",
+ "x-ms-client-name": "ScoringParameters",
+ "description": "The list of parameter values to be used in scoring functions (for example, referencePointParameter) using the format name-values. For example, if the scoring profile defines a function with a parameter called 'mylocation' the parameter string would be \"mylocation--122.2,44.8\" (without the quotes).",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "scoringProfile",
+ "in": "query",
+ "type": "string",
+ "description": "The name of a scoring profile to evaluate match scores for matching documents in order to sort the results.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "searchFields",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of field names to which to scope the full-text search. When using fielded search (fieldName:searchExpression) in a full Lucene query, the field names of each fielded search expression take precedence over any field names listed in this parameter.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "searchMode",
+ "in": "query",
+ "type": "string",
+ "enum": [
+ "any",
+ "all"
+ ],
+ "x-ms-enum": {
+ "name": "SearchMode",
+ "modelAsString": false
+ },
+ "x-nullable": false,
+ "description": "A value that specifies whether any or all of the search terms must be matched in order to count the document as a match.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "$select",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of fields to retrieve. If unspecified, all fields marked as retrievable in the schema are included.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "$skip",
+ "in": "query",
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of search results to skip. This value cannot be greater than 100,000. If you need to scan documents in sequence, but cannot use $skip due to this limitation, consider using $orderby on a totally-ordered key and $filter with a range query instead.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "$top",
+ "in": "query",
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of search results to retrieve. This can be used in conjunction with $skip to implement client-side paging of search results. If results are truncated due to server-side paging, the response will include a continuation token that can be used to issue another Search request for the next page of results.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "Response containing documents that match the search criteria.",
+ "schema": {
+ "$ref": "#/definitions/DocumentSearchResult"
+ }
+ }
+ }
+ }
+ },
+ "/docs/search.post.search": {
+ "post": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_SearchPost",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Search-Documents"
+ },
+ "x-ms-examples": {
+ "SearchIndexSearchDocumentsPost": {
+ "$ref": "./examples/SearchIndexSearchDocumentsPost.json"
+ }
+ },
+ "description": "Searches for documents in the index.",
+ "parameters": [
+ {
+ "name": "searchRequest",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/SearchRequest",
+ "description": "The Search request."
+ },
+ "description": "The definition of the Search request."
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "Response containing documents that match the search criteria.",
+ "schema": {
+ "$ref": "#/definitions/DocumentSearchResult"
+ }
+ }
+ }
+ }
+ },
+ "/docs('{key}')": {
+ "get": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_Get",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/lookup-document"
+ },
+ "x-ms-examples": {
+ "SearchIndexGetDocument": {
+ "$ref": "./examples/SearchIndexGetDocument.json"
+ }
+ },
+ "description": "Retrieves a document from the index.",
+ "parameters": [
+ {
+ "name": "key",
+ "in": "path",
+ "required": true,
+ "description": "The key of the document to retrieve.",
+ "type": "string"
+ },
+ {
+ "name": "$select",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "List of field names to retrieve for the document; Any field not retrieved will be missing from the returned document.",
+ "x-ms-client-name": "SelectedFields"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Response containing the requested document.",
+ "schema": {
+ "type": "object"
+ }
+ }
+ }
+ }
+ },
+ "/docs/search.suggest": {
+ "get": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_SuggestGet",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/suggestions"
+ },
+ "x-ms-examples": {
+ "SearchIndexSuggestDocumentsGet": {
+ "$ref": "./examples/SearchIndexSuggestDocumentsGet.json"
+ }
+ },
+ "description": "Suggests documents in the index that match the given partial query text.",
+ "parameters": [
+ {
+ "name": "search",
+ "in": "query",
+ "required": true,
+ "type": "string",
+ "description": "The search text to use to suggest documents. Must be at least 1 character, and no more than 100 characters.",
+ "x-ms-client-name": "SearchText"
+ },
+ {
+ "name": "suggesterName",
+ "in": "query",
+ "required": true,
+ "type": "string",
+ "description": "The name of the suggester as specified in the suggesters collection that's part of the index definition."
+ },
+ {
+ "name": "$filter",
+ "in": "query",
+ "type": "string",
+ "description": "An OData expression that filters the documents considered for suggestions.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "fuzzy",
+ "in": "query",
+ "type": "boolean",
+ "description": "A value indicating whether to use fuzzy matching for the suggestions query. Default is false. When set to true, the query will find terms even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy suggestions queries are slower and consume more resources.",
+ "x-ms-client-name": "UseFuzzyMatching",
+ "x-nullable": false,
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "highlightPostTag",
+ "in": "query",
+ "type": "string",
+ "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting of suggestions is disabled.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "highlightPreTag",
+ "in": "query",
+ "type": "string",
+ "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting of suggestions is disabled.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "minimumCoverage",
+ "in": "query",
+ "type": "number",
+ "format": "double",
+ "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by a suggestions query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "$orderby",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "x-ms-client-name": "OrderBy",
+ "description": "The list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, or desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no $orderby is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "searchFields",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of field names to search for the specified search text. Target fields must be included in the specified suggester.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "$select",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of fields to retrieve. If unspecified, only the key field will be included in the results.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "$top",
+ "in": "query",
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of suggestions to retrieve. The value must be a number between 1 and 100. The default is 5.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "Response containing suggested documents that match the partial input.",
+ "schema": {
+ "$ref": "#/definitions/DocumentSuggestResult"
+ }
+ }
+ }
+ }
+ },
+ "/docs/search.post.suggest": {
+ "post": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_SuggestPost",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/suggestions"
+ },
+ "x-ms-examples": {
+ "SearchIndexSuggestDocumentsPost": {
+ "$ref": "./examples/SearchIndexSuggestDocumentsPost.json"
+ }
+ },
+ "description": "Suggests documents in the index that match the given partial query text.",
+ "parameters": [
+ {
+ "name": "suggestRequest",
+ "in": "body",
+ "required": true,
+ "description": "The Suggest request.",
+ "schema": {
+ "$ref": "#/definitions/SuggestRequest"
+ }
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "Response containing suggested documents that match the partial input.",
+ "schema": {
+ "$ref": "#/definitions/DocumentSuggestResult"
+ }
+ }
+ }
+ }
+ },
+ "/docs/search.index": {
+ "post": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_Index",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/addupdate-or-delete-documents"
+ },
+ "x-ms-examples": {
+ "SearchIndexIndexDocuments": {
+ "$ref": "./examples/SearchIndexIndexDocuments.json"
+ }
+ },
+ "description": "Sends a batch of document write actions to the index.",
+ "parameters": [
+ {
+ "name": "batch",
+ "in": "body",
+ "description": "The batch of index actions.",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/IndexBatch"
+ }
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "Response containing the status of operations for all actions in the batch.",
+ "schema": {
+ "$ref": "#/definitions/DocumentIndexResult"
+ }
+ },
+ "207": {
+ "description": "Response containing the status of operations for all actions in the batch.",
+ "schema": {
+ "$ref": "#/definitions/DocumentIndexResult"
+ }
+ }
+ }
+ }
+ },
+ "/docs/search.autocomplete": {
+ "get": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_AutocompleteGet",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/autocomplete"
+ },
+ "x-ms-examples": {
+ "SearchIndexAutocompleteDocumentsGet": {
+ "$ref": "./examples/SearchIndexAutocompleteDocumentsGet.json"
+ }
+ },
+ "description": "Autocompletes incomplete query terms based on input text and matching terms in the index.",
+ "parameters": [
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "name": "search",
+ "in": "query",
+ "type": "string",
+ "required": true,
+ "description": "The incomplete term which should be auto-completed.",
+ "x-ms-client-name": "SearchText"
+ },
+ {
+ "name": "suggesterName",
+ "in": "query",
+ "type": "string",
+ "required": true,
+ "description": "The name of the suggester as specified in the suggesters collection that's part of the index definition."
+ },
+ {
+ "name": "autocompleteMode",
+ "in": "query",
+ "type": "string",
+ "x-nullable": false,
+ "enum": [
+ "oneTerm",
+ "twoTerms",
+ "oneTermWithContext"
+ ],
+ "x-ms-enum": {
+ "name": "AutocompleteMode",
+ "modelAsString": false
+ },
+ "description": "Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context while producing auto-completed terms.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "$filter",
+ "in": "query",
+ "type": "string",
+ "description": "An OData expression that filters the documents used to produce completed terms for the Autocomplete result.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "fuzzy",
+ "in": "query",
+ "type": "boolean",
+ "description": "A value indicating whether to use fuzzy matching for the autocomplete query. Default is false. When set to true, the query will find terms even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy autocomplete queries are slower and consume more resources.",
+ "x-ms-client-name": "UseFuzzyMatching",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "highlightPostTag",
+ "in": "query",
+ "type": "string",
+ "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting is disabled.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "highlightPreTag",
+ "in": "query",
+ "type": "string",
+ "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting is disabled.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "minimumCoverage",
+ "in": "query",
+ "type": "number",
+ "format": "double",
+ "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by an autocomplete query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "searchFields",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of field names to consider when querying for auto-completed terms. Target fields must be included in the specified suggester.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "$top",
+ "in": "query",
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of auto-completed terms to retrieve. This must be a value between 1 and 100. The default is 5.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/AutocompleteResult",
+ "description": "The result of Autocomplete query."
+ }
+ }
+ }
+ }
+ },
+ "/docs/search.post.autocomplete": {
+ "post": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_AutocompletePost",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/autocomplete"
+ },
+ "x-ms-examples": {
+ "SearchIndexAutocompleteDocumentsPost": {
+ "$ref": "./examples/SearchIndexAutocompleteDocumentsPost.json"
+ }
+ },
+ "description": "Autocompletes incomplete query terms based on input text and matching terms in the index.",
+ "parameters": [
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "name": "autocompleteRequest",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/AutocompleteRequest"
+ },
+ "description": "The definition of the Autocomplete request."
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/AutocompleteResult",
+ "description": "The result of Autocomplete query."
+ }
+ }
+ }
+ }
+ }
+ },
+ "definitions": {
+ "DocumentSuggestResult": {
+ "properties": {
+ "value": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/SuggestResult"
+ },
+ "readOnly": true,
+ "x-ms-client-name": "Results",
+ "description": "The sequence of results returned by the query."
+ },
+ "@search.coverage": {
+ "type": "number",
+ "readOnly": true,
+ "format": "double",
+ "x-ms-client-name": "Coverage",
+ "description": "A value indicating the percentage of the index that was included in the query, or null if minimumCoverage was not set in the request."
+ }
+ },
+ "description": "Response containing suggestion query results from an index."
+ },
+ "SuggestResult": {
+ "properties": {
+ "@search.text": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The text of the suggestion result.",
+ "x-ms-client-name": "Text"
+ }
+ },
+ "additionalProperties": true,
+ "description": "A result containing a document found by a suggestion query, plus associated metadata."
+ },
+ "FacetResult": {
+ "properties": {
+ "count": {
+ "type": "integer",
+ "format": "int64",
+ "readOnly": true,
+ "description": "The approximate count of documents falling within the bucket described by this facet."
+ }
+ },
+ "additionalProperties": true,
+ "description": "A single bucket of a facet query result. Reports the number of documents with a field value falling within a particular range or having a particular value or interval."
+ },
+ "DocumentSearchResult": {
+ "properties": {
+ "@odata.count": {
+ "type": "integer",
+ "format": "int64",
+ "readOnly": true,
+ "x-ms-client-name": "Count",
+ "description": "The total count of results found by the search operation, or null if the count was not requested. If present, the count may be greater than the number of results in this response. This can happen if you use the $top or $skip parameters, or if Azure Cognitive Search can't return all the requested documents in a single Search response."
+ },
+ "@search.coverage": {
+ "type": "number",
+ "format": "double",
+ "readOnly": true,
+ "x-ms-client-name": "Coverage",
+ "description": "A value indicating the percentage of the index that was included in the query, or null if minimumCoverage was not specified in the request."
+ },
+ "@search.facets": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/FacetResult"
+ }
+ },
+ "readOnly": true,
+ "x-ms-client-name": "Facets",
+ "description": "The facet query results for the search operation, organized as a collection of buckets for each faceted field; null if the query did not include any facet expressions."
+ },
+ "@search.nextPageParameters": {
+ "$ref": "#/definitions/SearchRequest",
+ "readOnly": true,
+ "x-ms-client-name": "NextPageParameters",
+ "description": "Continuation JSON payload returned when Azure Cognitive Search can't return all the requested results in a single Search response. You can use this JSON along with @odata.nextLink to formulate another POST Search request to get the next part of the search response."
+ },
+ "value": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/SearchResult"
+ },
+ "readOnly": true,
+ "x-ms-client-name": "Results",
+ "description": "The sequence of results returned by the query."
+ },
+ "@odata.nextLink": {
+ "type": "string",
+ "readOnly": true,
+ "x-ms-client-name": "NextLink",
+ "description": "Continuation URL returned when Azure Cognitive Search can't return all the requested results in a single Search response. You can use this URL to formulate another GET or POST Search request to get the next part of the search response. Make sure to use the same verb (GET or POST) as the request that produced this response."
+ }
+ },
+ "description": "Response containing search results from an index."
+ },
+ "SearchResult": {
+ "properties": {
+ "@search.score": {
+ "type": "number",
+ "format": "double",
+ "readOnly": true,
+ "x-ms-client-name": "Score",
+ "x-nullable": false,
+ "description": "The relevance score of the document compared to other documents returned by the query."
+ },
+ "@search.highlights": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "readOnly": true,
+ "x-ms-client-name": "Highlights",
+ "description": "Text fragments from the document that indicate the matching search terms, organized by each applicable field; null if hit highlighting was not enabled for the query."
+ }
+ },
+ "additionalProperties": true,
+ "description": "Contains a document found by a search query, plus associated metadata."
+ },
+ "IndexBatch": {
+ "properties": {
+ "value": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/IndexAction"
+ },
+ "description": "The actions in the batch.",
+ "x-ms-client-name": "Actions"
+ }
+ },
+ "required": [
+ "value"
+ ],
+ "description": "Contains a batch of document write actions to send to the index."
+ },
+ "IndexAction": {
+ "properties": {
+ "@search.action": {
+ "type": "string",
+ "enum": [
+ "upload",
+ "merge",
+ "mergeOrUpload",
+ "delete"
+ ],
+ "x-ms-enum": {
+ "name": "IndexActionType"
+ },
+ "x-ms-client-name": "ActionType",
+ "x-nullable": false,
+ "description": "The operation to perform on a document in an indexing batch."
+ }
+ },
+ "additionalProperties": true,
+ "description": "Represents an index action that operates on a document."
+ },
+ "IndexingResult": {
+ "properties": {
+ "key": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The key of a document that was in the indexing request."
+ },
+ "errorMessage": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The error message explaining why the indexing operation failed for the document identified by the key; null if indexing succeeded."
+ },
+ "status": {
+ "x-ms-client-name": "Succeeded",
+ "type": "boolean",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "A value indicating whether the indexing operation succeeded for the document identified by the key."
+ },
+ "statusCode": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "The status code of the indexing operation. Possible values include: 200 for a successful update or delete, 201 for successful document creation, 400 for a malformed input document, 404 for document not found, 409 for a version conflict, 422 when the index is temporarily unavailable, or 503 for when the service is too busy."
+ }
+ },
+ "description": "Status of an indexing operation for a single document."
+ },
+ "DocumentIndexResult": {
+ "properties": {
+ "value": {
+ "x-ms-client-name": "Results",
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/IndexingResult"
+ },
+ "description": "The list of status information for each document in the indexing request."
+ }
+ },
+ "description": "Response containing the status of operations for all documents in the indexing request."
+ },
+ "SearchMode": {
+ "type": "string",
+ "enum": [
+ "any",
+ "all"
+ ],
+ "x-ms-enum": {
+ "name": "SearchMode",
+ "modelAsString": false
+ },
+ "description": "Specifies whether any or all of the search terms must be matched in order to count the document as a match."
+ },
+ "QueryType": {
+ "type": "string",
+ "enum": [
+ "simple",
+ "full"
+ ],
+ "x-ms-enum": {
+ "name": "QueryType",
+ "modelAsString": false
+ },
+ "description": "Specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax."
+ },
+ "AutocompleteMode": {
+ "type": "string",
+ "enum": [
+ "oneTerm",
+ "twoTerms",
+ "oneTermWithContext"
+ ],
+ "x-ms-enum": {
+ "name": "AutocompleteMode",
+ "modelAsString": false
+ },
+ "description": "Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context in producing autocomplete terms."
+ },
+ "SearchRequest": {
+ "properties": {
+ "count": {
+ "type": "boolean",
+ "description": "A value that specifies whether to fetch the total count of results. Default is false. Setting this value to true may have a performance impact. Note that the count returned is an approximation.",
+ "x-ms-client-name": "IncludeTotalResultCount"
+ },
+ "facets": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Search-Documents"
+ },
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of facet expressions to apply to the search query. Each facet expression contains a field name, optionally followed by a comma-separated list of name:value pairs."
+ },
+ "filter": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/OData-Expression-Syntax-for-Azure-Search"
+ },
+ "type": "string",
+ "description": "The OData $filter expression to apply to the search query."
+ },
+ "highlight": {
+ "type": "string",
+ "description": "The comma-separated list of field names to use for hit highlights. Only searchable fields can be used for hit highlighting.",
+ "x-ms-client-name": "HighlightFields"
+ },
+ "highlightPostTag": {
+ "type": "string",
+ "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. Default is </em>."
+ },
+ "highlightPreTag": {
+ "type": "string",
+ "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. Default is <em>."
+ },
+ "minimumCoverage": {
+ "type": "number",
+ "format": "double",
+ "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by a search query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 100."
+ },
+ "orderby": {
+ "x-ms-client-name": "OrderBy",
+ "type": "string",
+ "description": "The comma-separated list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, or desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no $orderby is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses."
+ },
+ "queryType": {
+ "$ref": "#/definitions/QueryType",
+ "description": "A value that specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax."
+ },
+ "scoringParameters": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of parameter values to be used in scoring functions (for example, referencePointParameter) using the format name-values. For example, if the scoring profile defines a function with a parameter called 'mylocation' the parameter string would be \"mylocation--122.2,44.8\" (without the quotes)."
+ },
+ "scoringProfile": {
+ "type": "string",
+ "description": "The name of a scoring profile to evaluate match scores for matching documents in order to sort the results."
+ },
+ "search": {
+ "type": "string",
+ "description": "A full-text search query expression; Use \"*\" or omit this parameter to match all documents.",
+ "x-ms-client-name": "SearchText"
+ },
+ "searchFields": {
+ "type": "string",
+ "description": "The comma-separated list of field names to which to scope the full-text search. When using fielded search (fieldName:searchExpression) in a full Lucene query, the field names of each fielded search expression take precedence over any field names listed in this parameter."
+ },
+ "searchMode": {
+ "$ref": "#/definitions/SearchMode",
+ "description": "A value that specifies whether any or all of the search terms must be matched in order to count the document as a match."
+ },
+ "select": {
+ "type": "string",
+ "description": "The comma-separated list of fields to retrieve. If unspecified, all fields marked as retrievable in the schema are included."
+ },
+ "skip": {
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of search results to skip. This value cannot be greater than 100,000. If you need to scan documents in sequence, but cannot use skip due to this limitation, consider using orderby on a totally-ordered key and filter with a range query instead."
+ },
+ "top": {
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of search results to retrieve. This can be used in conjunction with $skip to implement client-side paging of search results. If results are truncated due to server-side paging, the response will include a continuation token that can be used to issue another Search request for the next page of results."
+ }
+ },
+ "description": "Parameters for filtering, sorting, faceting, paging, and other search query behaviors."
+ },
+ "SuggestRequest": {
+ "properties": {
+ "filter": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/OData-Expression-Syntax-for-Azure-Search"
+ },
+ "type": "string",
+ "description": "An OData expression that filters the documents considered for suggestions."
+ },
+ "fuzzy": {
+ "type": "boolean",
+ "description": "A value indicating whether to use fuzzy matching for the suggestion query. Default is false. When set to true, the query will find suggestions even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy suggestion searches are slower and consume more resources.",
+ "x-ms-client-name": "UseFuzzyMatching"
+ },
+ "highlightPostTag": {
+ "type": "string",
+ "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting of suggestions is disabled."
+ },
+ "highlightPreTag": {
+ "type": "string",
+ "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting of suggestions is disabled."
+ },
+ "minimumCoverage": {
+ "type": "number",
+ "format": "double",
+ "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by a suggestion query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80."
+ },
+ "orderby": {
+ "x-ms-client-name": "OrderBy",
+ "type": "string",
+ "description": "The comma-separated list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, or desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no $orderby is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses."
+ },
+ "search": {
+ "type": "string",
+ "description": "The search text to use to suggest documents. Must be at least 1 character, and no more than 100 characters.",
+ "x-ms-client-name": "SearchText"
+ },
+ "searchFields": {
+ "type": "string",
+ "description": "The comma-separated list of field names to search for the specified search text. Target fields must be included in the specified suggester."
+ },
+ "select": {
+ "type": "string",
+ "description": "The comma-separated list of fields to retrieve. If unspecified, only the key field will be included in the results."
+ },
+ "suggesterName": {
+ "type": "string",
+ "description": "The name of the suggester as specified in the suggesters collection that's part of the index definition."
+ },
+ "top": {
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of suggestions to retrieve. This must be a value between 1 and 100. The default is 5."
+ }
+ },
+ "description": "Parameters for filtering, sorting, fuzzy matching, and other suggestions query behaviors."
+ },
+ "AutocompleteRequest": {
+ "properties": {
+ "search": {
+ "type": "string",
+ "description": "The search text on which to base autocomplete results.",
+ "x-ms-client-name": "SearchText"
+ },
+ "autocompleteMode": {
+ "$ref": "#/definitions/AutocompleteMode",
+ "description": "Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context while producing auto-completed terms."
+ },
+ "filter": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/OData-Expression-Syntax-for-Azure-Search"
+ },
+ "type": "string",
+ "description": "An OData expression that filters the documents used to produce completed terms for the Autocomplete result."
+ },
+ "fuzzy": {
+ "type": "boolean",
+ "description": "A value indicating whether to use fuzzy matching for the autocomplete query. Default is false. When set to true, the query will autocomplete terms even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy autocomplete queries are slower and consume more resources.",
+ "x-ms-client-name": "UseFuzzyMatching"
+ },
+ "highlightPostTag": {
+ "type": "string",
+ "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting is disabled."
+ },
+ "highlightPreTag": {
+ "type": "string",
+ "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting is disabled."
+ },
+ "minimumCoverage": {
+ "type": "number",
+ "format": "double",
+ "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by an autocomplete query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80."
+ },
+ "searchFields": {
+ "type": "string",
+ "description": "The comma-separated list of field names to consider when querying for auto-completed terms. Target fields must be included in the specified suggester."
+ },
+ "suggesterName": {
+ "type": "string",
+ "description": "The name of the suggester as specified in the suggesters collection that's part of the index definition."
+ },
+ "top": {
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of auto-completed terms to retrieve. This must be a value between 1 and 100. The default is 5."
+ }
+ },
+ "description": "Parameters for fuzzy matching, and other autocomplete query behaviors."
+ },
+ "AutocompleteResult": {
+ "properties": {
+ "value": {
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/AutocompleteItem"
+ },
+ "description": "The list of returned Autocompleted items.",
+ "x-ms-client-name": "Results"
+ }
+ },
+ "description": "The result of Autocomplete query."
+ },
+ "AutocompleteItem": {
+ "properties": {
+ "text": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The completed term."
+ },
+ "queryPlusText": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The query along with the completed term."
+ }
+ },
+ "description": "The result of Autocomplete requests."
+ }
+ },
+ "parameters": {
+ "ApiVersionParameter": {
+ "name": "api-version",
+ "in": "query",
+ "required": true,
+ "type": "string",
+ "description": "Client Api Version."
+ },
+ "ClientRequestIdParameter": {
+ "name": "client-request-id",
+ "in": "header",
+ "required": false,
+ "type": "string",
+ "format": "uuid",
+ "description": "The tracking ID sent with the request to help with debugging.",
+ "x-ms-client-request-id": true,
+ "x-ms-parameter-grouping": {
+ "name": "search-request-options"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "SearchServiceNameParameter": {
+ "name": "searchServiceName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "x-ms-skip-url-encoding": true,
+ "description": "The name of the search service.",
+ "x-ms-parameter-location": "client"
+ },
+ "SearchDnsSuffixParameter": {
+ "name": "searchDnsSuffix",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "default": "search.windows.net",
+ "x-ms-skip-url-encoding": true,
+ "description": "The DNS suffix of the search service. The default is search.windows.net.",
+ "x-ms-parameter-location": "client"
+ },
+ "IndexNameParameter": {
+ "name": "indexName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "x-ms-skip-url-encoding": false,
+ "description": "The name of the index.",
+ "x-ms-parameter-location": "client"
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/readme.md b/specification/search/data-plane/Microsoft.Azure.Search.Data/readme.md
index 67dd81075e88..72ec8d2b1f6a 100644
--- a/specification/search/data-plane/Microsoft.Azure.Search.Data/readme.md
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/readme.md
@@ -27,6 +27,15 @@ openapi-type: data-plane
tag: package-2019-05
```
+### Tag: package-2019-05-preview
+
+These settings apply only when `--tag=package-2019-05-preview` is specified on the command line.
+
+``` yaml $(tag) == 'package-2019-05-preview'
+input-file:
+- preview/2019-05-06-preview/searchindex.json
+```
+
### Tag: package-2019-05
These settings apply only when `--tag=package-2019-05` is specified on the command line.
@@ -89,17 +98,26 @@ input-file:
- preview/2015-02-28/searchindex.json
```
-
### Tag: track1-package-2019-05
-These settings apply only when `--tag=track1-package-2019-05` is specified on the command line. It is meant to be used for
-generating Track 1 .NET SDK only!
+These settings apply only when `--tag=track1-package-2019-05` is specified on the command line.
+It is meant to be used for generating Track 1 .NET SDK only!
``` yaml $(tag) == 'track1-package-2019-05'
input-file:
- track1/stable/2019-05-06/searchindex.json
```
+### Tag: track1-package-2019-05-preview
+
+These settings apply only when `--tag=track1-package-2019-05-preview` is specified on the command line.
+It is meant to be used for generating Track 1 .NET SDK only!
+
+``` yaml $(tag) == 'track1-package-2019-05-preview'
+input-file:
+- track1/preview/2019-05-06-preview/searchindex.json
+```
+
---
# Code Generation
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsGet.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsGet.json
new file mode 100644
index 000000000000..000082a08d9f
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsGet.json
@@ -0,0 +1,39 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "autocompleteMode": "oneTerm",
+ "search": "washington medic",
+ "suggesterName": "sg",
+ "filter": "search.in(docId,'101,102,105')",
+ "fuzzy": false,
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": 80,
+ "searchFields": [
+ "title",
+ "description"
+ ],
+ "top": 10
+ },
+ "responses": {
+ "200": {
+ "body": [
+ {
+ "text": "medicaid",
+ "queryPlusText": "washington medicaid"
+ },
+ {
+ "text": "medicare",
+ "queryPlusText": "washington medicare"
+ },
+ {
+ "text": "medicine",
+ "queryPlusText": "washington medicine"
+ }
+ ]
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsPost.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsPost.json
new file mode 100644
index 000000000000..72c60d7cc1e4
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexAutocompleteDocumentsPost.json
@@ -0,0 +1,37 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "autocompleteRequest": {
+ "autocompleteMode": "oneTerm",
+ "search": "washington medic",
+ "suggesterName": "sg",
+ "filter": "search.in(docId,'101,102,105')",
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": 80,
+ "searchFields": "title,description",
+ "top": 10
+ }
+ },
+ "responses": {
+ "200": {
+ "body": [
+ {
+ "text": "medicaid",
+ "queryPlusText": "washington medicaid"
+ },
+ {
+ "text": "medicare",
+ "queryPlusText": "washington medicare"
+ },
+ {
+ "text": "medicine",
+ "queryPlusText": "washington medicine"
+ }
+ ]
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexCountDocuments.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexCountDocuments.json
new file mode 100644
index 000000000000..bc3c57632601
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexCountDocuments.json
@@ -0,0 +1,13 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": 427
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexGetDocument.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexGetDocument.json
new file mode 100644
index 000000000000..c3270808a760
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexGetDocument.json
@@ -0,0 +1,23 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "key": "1",
+ "$select": [
+ "docId",
+ "title",
+ "description"
+ ]
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "description": "Cheapest hotel in town",
+ "docId": "1",
+ "title": "Nice Hotel"
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexIndexDocuments.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexIndexDocuments.json
new file mode 100644
index 000000000000..5c41bc8b2a89
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexIndexDocuments.json
@@ -0,0 +1,94 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "batch": {
+ "value": [
+ {
+ "@search.action": "upload",
+ "docId": "1",
+ "title": "Fancy Stay",
+ "description": "Best hotel in town"
+ },
+ {
+ "@search.action": "merge",
+ "docId": "2",
+ "title": "Roach Motel"
+ },
+ {
+ "@search.action": "mergeOrUpload",
+ "docId": "3",
+ "title": "Econo Motel"
+ },
+ {
+ "@search.action": "delete",
+ "docId": "4"
+ }
+ ]
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "key": "1",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 201
+ },
+ {
+ "key": "2",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 200
+ },
+ {
+ "key": "3",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 200
+ },
+ {
+ "key": "4",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 200
+ }
+ ]
+ }
+ },
+ "207": {
+ "body": {
+ "value": [
+ {
+ "key": "1",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 200
+ },
+ {
+ "key": "2",
+ "status": false,
+ "errorMessage": "Document not found.",
+ "statusCode": 404
+ },
+ {
+ "key": "3",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 200
+ },
+ {
+ "key": "4",
+ "status": true,
+ "errorMessage": null,
+ "statusCode": 200
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsGet.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsGet.json
new file mode 100644
index 000000000000..0bc9ad4e6522
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsGet.json
@@ -0,0 +1,85 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "$count": true,
+ "facet": [
+ "category,count:10,sort:count"
+ ],
+ "$filter": "rating gt 10",
+ "highlight": [
+ "title"
+ ],
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": 80,
+ "$orderby": [
+ "search.score() desc",
+ "rating desc"
+ ],
+ "queryType": "simple",
+ "scoringParameters": [
+ "currentLocation--122.123,44.77233"
+ ],
+ "scoringProfile": "sp",
+ "search": "nice hotels",
+ "searchFields": [
+ "title",
+ "description"
+ ],
+ "searchMode": "any",
+ "$select": [
+ "docId",
+ "title",
+ "description"
+ ],
+ "$skip": 100,
+ "$top": 10
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "@odata.count": 25,
+ "@search.coverage": 80,
+ "@search.facets": {
+ "category": [
+ {
+ "count": 1,
+ "value": "Economy"
+ },
+ {
+ "count": 1,
+ "value": "Luxury"
+ }
+ ]
+ },
+ "value": [
+ {
+ "@search.score": 1.50,
+ "@search.highlights": {
+ "title": [
+ "Nice Hotel"
+ ]
+ },
+ "description": "Cheapest hotel in town",
+ "docId": "1",
+ "title": "Nice Hotel"
+ },
+ {
+ "@search.score": 0.70,
+ "@search.highlights": {
+ "title": [
+ "Fancy Hotel"
+ ]
+ },
+ "description": "Best hotel in town",
+ "docId": "2",
+ "title": "Fancy Hotel"
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsPost.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsPost.json
new file mode 100644
index 000000000000..732a0a19680a
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexSearchDocumentsPost.json
@@ -0,0 +1,98 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "searchRequest": {
+ "count": true,
+ "facets": [
+ "category,count:10,sort:count"
+ ],
+ "filter": "rating gt 4.0",
+ "highlight": "title",
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": null,
+ "orderby": "search.score() desc,rating desc",
+ "queryType": "simple",
+ "scoringParameters": [
+ "currentLocation--122.123,44.77233"
+ ],
+ "scoringProfile": "sp",
+ "search": "nice hotels",
+ "searchFields": "title,description",
+ "searchMode": "any",
+ "select": "docId,title,description",
+ "skip": 0,
+ "top": 10
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "@odata.count": 25,
+ "@search.facets": {
+ "category": [
+ {
+ "count": 1,
+ "value": "Economy"
+ },
+ {
+ "count": 1,
+ "value": "Luxury"
+ }
+ ]
+ },
+ "@search.nextPageParameters": {
+ "count": true,
+ "facets": [
+ "category,count:10,sort:count"
+ ],
+ "filter": "rating gt 4.0",
+ "highlight": "title",
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": null,
+ "orderby": "search.score() desc,rating desc",
+ "queryType": "simple",
+ "scoringParameters": [
+ "currentLocation--122.123,44.77233"
+ ],
+ "scoringProfile": "sp",
+ "search": "nice hotels",
+ "searchFields": "title,description",
+ "searchMode": "any",
+ "select": "docId,title,description",
+ "skip": 2,
+ "top": 8
+ },
+ "value": [
+ {
+ "@search.score": 1.50,
+ "@search.highlights": {
+ "title": [
+ "Nice Hotel"
+ ]
+ },
+ "description": "Cheapest hotel in town",
+ "docId": "1",
+ "title": "Nice Hotel"
+ },
+ {
+ "@search.score": 0.70,
+ "@search.highlights": {
+ "title": [
+ "Fancy Hotel"
+ ]
+ },
+ "description": "Best hotel in town",
+ "docId": "2",
+ "title": "Fancy Hotel"
+ }
+ ],
+ "@odata.nextLink": "https://myservice.search.windows.net/indexes('myindex')/docs/search.post.search?api-version=2019-05-06-Preview"
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexSuggestDocumentsGet.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexSuggestDocumentsGet.json
new file mode 100644
index 000000000000..465f75aa62ea
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexSuggestDocumentsGet.json
@@ -0,0 +1,48 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "$filter": "rating gt 10",
+ "fuzzy": false,
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": 80,
+ "$orderby": [
+ "search.score() desc",
+ "rating desc"
+ ],
+ "search": "hote",
+ "searchFields": [
+ "title"
+ ],
+ "suggesterName": "sg",
+ "$select": [
+ "docId",
+ "title",
+ "description"
+ ],
+ "$top": 10
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "@search.text": "Nice Hotel",
+ "description": "Cheapest hotel in town",
+ "docId": "1",
+ "title": "Nice Hotel"
+ },
+ {
+ "@search.text": "Fancy Hotel",
+ "description": "Best hotel in town",
+ "docId": "2",
+ "title": "Fancy Hotel"
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexSuggestDocumentsPost.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexSuggestDocumentsPost.json
new file mode 100644
index 000000000000..a898e78f9fa8
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/examples/SearchIndexSuggestDocumentsPost.json
@@ -0,0 +1,39 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview",
+ "suggestRequest": {
+ "filter": "rating gt 4.0",
+ "highlightPostTag": "",
+ "highlightPreTag": "",
+ "minimumCoverage": 80,
+ "orderby": "rating desc",
+ "search": "hote",
+ "searchFields": "title",
+ "select": "docId,title,description",
+ "top": 10
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "@search.text": "Nice Hotel",
+ "description": "Cheapest hotel in town",
+ "docId": "1",
+ "title": "Nice Hotel"
+ },
+ {
+ "@search.text": "Fancy Hotel",
+ "description": "Best hotel in town",
+ "docId": "2",
+ "title": "Fancy Hotel"
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/searchindex.json b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/searchindex.json
new file mode 100644
index 000000000000..b1cc8cbb9aac
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Data/track1/preview/2019-05-06-preview/searchindex.json
@@ -0,0 +1,1336 @@
+{
+ "swagger": "2.0",
+ "info": {
+ "title": "SearchIndexClient",
+ "description": "Client that can be used to query an index and upload, merge, or delete documents.",
+ "version": "2019-05-06-Preview",
+ "x-ms-code-generation-settings": {
+ "useDateTimeOffset": true,
+ "syncMethods": "None"
+ }
+ },
+ "x-ms-parameterized-host": {
+ "hostTemplate": "https://{searchServiceName}.{searchDnsSuffix}/indexes('{indexName}')",
+ "useSchemePrefix": false,
+ "parameters": [
+ {
+ "$ref": "#/parameters/SearchServiceNameParameter"
+ },
+ {
+ "$ref": "#/parameters/SearchDnsSuffixParameter"
+ },
+ {
+ "$ref": "#/parameters/IndexNameParameter"
+ }
+ ]
+ },
+ "consumes": [
+ "application/json"
+ ],
+ "produces": [
+ "application/json"
+ ],
+ "paths": {
+ "/docs/$count": {
+ "get": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_Count",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Count-Documents"
+ },
+ "x-ms-examples": {
+ "SearchIndexCountDocuments": {
+ "$ref": "./examples/SearchIndexCountDocuments.json"
+ }
+ },
+ "description": "Queries the number of documents in the index.",
+ "parameters": [
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "type": "integer",
+ "format": "int64"
+ }
+ }
+ }
+ }
+ },
+ "/docs": {
+ "get": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_SearchGet",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Search-Documents"
+ },
+ "x-ms-examples": {
+ "SearchIndexSearchDocumentsGet": {
+ "$ref": "./examples/SearchIndexSearchDocumentsGet.json"
+ }
+ },
+ "description": "Searches for documents in the index.",
+ "parameters": [
+ {
+ "name": "search",
+ "in": "query",
+ "type": "string",
+ "description": "A full-text search query expression; Use \"*\" or omit this parameter to match all documents.",
+ "x-ms-client-name": "SearchText"
+ },
+ {
+ "name": "$count",
+ "in": "query",
+ "type": "boolean",
+ "description": "A value that specifies whether to fetch the total count of results. Default is false. Setting this value to true may have a performance impact. Note that the count returned is an approximation.",
+ "x-nullable": false,
+ "x-ms-client-name": "IncludeTotalResultCount",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "facet",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "collectionFormat": "multi",
+ "description": "The list of facet expressions to apply to the search query. Each facet expression contains a field name, optionally followed by a comma-separated list of name:value pairs.",
+ "x-ms-client-name": "Facets",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "$filter",
+ "in": "query",
+ "type": "string",
+ "description": "The OData $filter expression to apply to the search query.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "highlight",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of field names to use for hit highlights. Only searchable fields can be used for hit highlighting.",
+ "x-ms-client-name": "HighlightFields",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "highlightPostTag",
+ "in": "query",
+ "type": "string",
+ "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. Default is </em>.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "highlightPreTag",
+ "in": "query",
+ "type": "string",
+ "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. Default is <em>.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "minimumCoverage",
+ "in": "query",
+ "type": "number",
+ "format": "double",
+ "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by a search query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 100.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "$orderby",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, and desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no OrderBy is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses.",
+ "x-ms-client-name": "OrderBy",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "queryType",
+ "in": "query",
+ "type": "string",
+ "enum": [
+ "simple",
+ "full"
+ ],
+ "x-ms-enum": {
+ "name": "QueryType",
+ "modelAsString": false
+ },
+ "x-nullable": false,
+ "description": "A value that specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "scoringParameter",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "collectionFormat": "multi",
+ "x-ms-client-name": "ScoringParameters",
+ "description": "The list of parameter values to be used in scoring functions (for example, referencePointParameter) using the format name-values. For example, if the scoring profile defines a function with a parameter called 'mylocation' the parameter string would be \"mylocation--122.2,44.8\" (without the quotes).",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "scoringProfile",
+ "in": "query",
+ "type": "string",
+ "description": "The name of a scoring profile to evaluate match scores for matching documents in order to sort the results.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "searchFields",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of field names to which to scope the full-text search. When using fielded search (fieldName:searchExpression) in a full Lucene query, the field names of each fielded search expression take precedence over any field names listed in this parameter.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "searchMode",
+ "in": "query",
+ "type": "string",
+ "enum": [
+ "any",
+ "all"
+ ],
+ "x-ms-enum": {
+ "name": "SearchMode",
+ "modelAsString": false
+ },
+ "x-nullable": false,
+ "description": "A value that specifies whether any or all of the search terms must be matched in order to count the document as a match.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "$select",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of fields to retrieve. If unspecified, all fields marked as retrievable in the schema are included.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "$skip",
+ "in": "query",
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of search results to skip. This value cannot be greater than 100,000. If you need to scan documents in sequence, but cannot use $skip due to this limitation, consider using $orderby on a totally-ordered key and $filter with a range query instead.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "name": "$top",
+ "in": "query",
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of search results to retrieve. This can be used in conjunction with $skip to implement client-side paging of search results. If results are truncated due to server-side paging, the response will include a continuation token that can be used to issue another Search request for the next page of results.",
+ "x-ms-parameter-grouping": {
+ "name": "SearchParameters"
+ }
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "Response containing documents that match the search criteria.",
+ "schema": {
+ "$ref": "#/definitions/DocumentSearchResult"
+ }
+ }
+ }
+ }
+ },
+ "/docs/search.post.search": {
+ "post": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_SearchPost",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Search-Documents"
+ },
+ "x-ms-examples": {
+ "SearchIndexSearchDocumentsPost": {
+ "$ref": "./examples/SearchIndexSearchDocumentsPost.json"
+ }
+ },
+ "description": "Searches for documents in the index.",
+ "parameters": [
+ {
+ "name": "searchRequest",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/SearchRequest",
+ "description": "The Search request."
+ },
+ "description": "The definition of the Search request."
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "Response containing documents that match the search criteria.",
+ "schema": {
+ "$ref": "#/definitions/DocumentSearchResult"
+ }
+ }
+ }
+ }
+ },
+ "/docs('{key}')": {
+ "get": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_Get",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/lookup-document"
+ },
+ "x-ms-examples": {
+ "SearchIndexGetDocument": {
+ "$ref": "./examples/SearchIndexGetDocument.json"
+ }
+ },
+ "description": "Retrieves a document from the index.",
+ "parameters": [
+ {
+ "name": "key",
+ "in": "path",
+ "required": true,
+ "description": "The key of the document to retrieve.",
+ "type": "string"
+ },
+ {
+ "name": "$select",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "List of field names to retrieve for the document; Any field not retrieved will be missing from the returned document.",
+ "x-ms-client-name": "SelectedFields"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "Response containing the requested document.",
+ "schema": {
+ "type": "object"
+ }
+ }
+ }
+ }
+ },
+ "/docs/search.suggest": {
+ "get": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_SuggestGet",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/suggestions"
+ },
+ "x-ms-examples": {
+ "SearchIndexSuggestDocumentsGet": {
+ "$ref": "./examples/SearchIndexSuggestDocumentsGet.json"
+ }
+ },
+ "description": "Suggests documents in the index that match the given partial query text.",
+ "parameters": [
+ {
+ "name": "search",
+ "in": "query",
+ "required": true,
+ "type": "string",
+ "description": "The search text to use to suggest documents. Must be at least 1 character, and no more than 100 characters.",
+ "x-ms-client-name": "SearchText"
+ },
+ {
+ "name": "suggesterName",
+ "in": "query",
+ "required": true,
+ "type": "string",
+ "description": "The name of the suggester as specified in the suggesters collection that's part of the index definition."
+ },
+ {
+ "name": "$filter",
+ "in": "query",
+ "type": "string",
+ "description": "An OData expression that filters the documents considered for suggestions.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "fuzzy",
+ "in": "query",
+ "type": "boolean",
+ "description": "A value indicating whether to use fuzzy matching for the suggestions query. Default is false. When set to true, the query will find terms even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy suggestions queries are slower and consume more resources.",
+ "x-ms-client-name": "UseFuzzyMatching",
+ "x-nullable": false,
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "highlightPostTag",
+ "in": "query",
+ "type": "string",
+ "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting of suggestions is disabled.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "highlightPreTag",
+ "in": "query",
+ "type": "string",
+ "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting of suggestions is disabled.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "minimumCoverage",
+ "in": "query",
+ "type": "number",
+ "format": "double",
+ "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by a suggestions query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "$orderby",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "x-ms-client-name": "OrderBy",
+ "description": "The list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, or desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no $orderby is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "searchFields",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of field names to search for the specified search text. Target fields must be included in the specified suggester.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "$select",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of fields to retrieve. If unspecified, only the key field will be included in the results.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "name": "$top",
+ "in": "query",
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of suggestions to retrieve. The value must be a number between 1 and 100. The default is 5.",
+ "x-ms-parameter-grouping": {
+ "name": "SuggestParameters"
+ }
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "Response containing suggested documents that match the partial input.",
+ "schema": {
+ "$ref": "#/definitions/DocumentSuggestResult"
+ }
+ }
+ }
+ }
+ },
+ "/docs/search.post.suggest": {
+ "post": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_SuggestPost",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/suggestions"
+ },
+ "x-ms-examples": {
+ "SearchIndexSuggestDocumentsPost": {
+ "$ref": "./examples/SearchIndexSuggestDocumentsPost.json"
+ }
+ },
+ "description": "Suggests documents in the index that match the given partial query text.",
+ "parameters": [
+ {
+ "name": "suggestRequest",
+ "in": "body",
+ "required": true,
+ "description": "The Suggest request.",
+ "schema": {
+ "$ref": "#/definitions/SuggestRequest"
+ }
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "Response containing suggested documents that match the partial input.",
+ "schema": {
+ "$ref": "#/definitions/DocumentSuggestResult"
+ }
+ }
+ }
+ }
+ },
+ "/docs/search.index": {
+ "post": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_Index",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/addupdate-or-delete-documents"
+ },
+ "x-ms-examples": {
+ "SearchIndexIndexDocuments": {
+ "$ref": "./examples/SearchIndexIndexDocuments.json"
+ }
+ },
+ "description": "Sends a batch of document write actions to the index.",
+ "parameters": [
+ {
+ "name": "batch",
+ "in": "body",
+ "description": "The batch of index actions.",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/IndexBatch"
+ }
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "Response containing the status of operations for all actions in the batch.",
+ "schema": {
+ "$ref": "#/definitions/DocumentIndexResult"
+ }
+ },
+ "207": {
+ "description": "Response containing the status of operations for all actions in the batch.",
+ "schema": {
+ "$ref": "#/definitions/DocumentIndexResult"
+ }
+ }
+ }
+ }
+ },
+ "/docs/search.autocomplete": {
+ "get": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_AutocompleteGet",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/autocomplete"
+ },
+ "x-ms-examples": {
+ "SearchIndexAutocompleteDocumentsGet": {
+ "$ref": "./examples/SearchIndexAutocompleteDocumentsGet.json"
+ }
+ },
+ "description": "Autocompletes incomplete query terms based on input text and matching terms in the index.",
+ "parameters": [
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "name": "search",
+ "in": "query",
+ "type": "string",
+ "required": true,
+ "description": "The incomplete term which should be auto-completed.",
+ "x-ms-client-name": "SearchText"
+ },
+ {
+ "name": "suggesterName",
+ "in": "query",
+ "type": "string",
+ "required": true,
+ "description": "The name of the suggester as specified in the suggesters collection that's part of the index definition."
+ },
+ {
+ "name": "autocompleteMode",
+ "in": "query",
+ "type": "string",
+ "x-nullable": false,
+ "enum": [
+ "oneTerm",
+ "twoTerms",
+ "oneTermWithContext"
+ ],
+ "x-ms-enum": {
+ "name": "AutocompleteMode",
+ "modelAsString": false
+ },
+ "description": "Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context while producing auto-completed terms.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "$filter",
+ "in": "query",
+ "type": "string",
+ "description": "An OData expression that filters the documents used to produce completed terms for the Autocomplete result.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "fuzzy",
+ "in": "query",
+ "type": "boolean",
+ "description": "A value indicating whether to use fuzzy matching for the autocomplete query. Default is false. When set to true, the query will find terms even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy autocomplete queries are slower and consume more resources.",
+ "x-ms-client-name": "UseFuzzyMatching",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "highlightPostTag",
+ "in": "query",
+ "type": "string",
+ "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting is disabled.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "highlightPreTag",
+ "in": "query",
+ "type": "string",
+ "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting is disabled.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "minimumCoverage",
+ "in": "query",
+ "type": "number",
+ "format": "double",
+ "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by an autocomplete query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "searchFields",
+ "in": "query",
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of field names to consider when querying for auto-completed terms. Target fields must be included in the specified suggester.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ },
+ {
+ "name": "$top",
+ "in": "query",
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of auto-completed terms to retrieve. This must be a value between 1 and 100. The default is 5.",
+ "x-ms-parameter-grouping": {
+ "name": "AutocompleteParameters"
+ }
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/AutocompleteResult",
+ "description": "The result of Autocomplete query."
+ }
+ }
+ }
+ }
+ },
+ "/docs/search.post.autocomplete": {
+ "post": {
+ "tags": [
+ "Documents"
+ ],
+ "operationId": "Documents_AutocompletePost",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/autocomplete"
+ },
+ "x-ms-examples": {
+ "SearchIndexAutocompleteDocumentsPost": {
+ "$ref": "./examples/SearchIndexAutocompleteDocumentsPost.json"
+ }
+ },
+ "description": "Autocompletes incomplete query terms based on input text and matching terms in the index.",
+ "parameters": [
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ },
+ {
+ "name": "autocompleteRequest",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/AutocompleteRequest"
+ },
+ "description": "The definition of the Autocomplete request."
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/AutocompleteResult",
+ "description": "The result of Autocomplete query."
+ }
+ }
+ }
+ }
+ }
+ },
+ "definitions": {
+ "DocumentSuggestResult": {
+ "properties": {
+ "value": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/SuggestResult"
+ },
+ "readOnly": true,
+ "x-ms-client-name": "Results",
+ "description": "The sequence of results returned by the query."
+ },
+ "@search.coverage": {
+ "type": "number",
+ "readOnly": true,
+ "format": "double",
+ "x-ms-client-name": "Coverage",
+ "description": "A value indicating the percentage of the index that was included in the query, or null if minimumCoverage was not set in the request."
+ }
+ },
+ "description": "Response containing suggestion query results from an index."
+ },
+ "SuggestResult": {
+ "properties": {
+ "@search.text": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The text of the suggestion result.",
+ "x-ms-client-name": "Text"
+ }
+ },
+ "additionalProperties": true,
+ "description": "A result containing a document found by a suggestion query, plus associated metadata."
+ },
+ "FacetResult": {
+ "properties": {
+ "count": {
+ "type": "integer",
+ "format": "int64",
+ "readOnly": true,
+ "description": "The approximate count of documents falling within the bucket described by this facet."
+ }
+ },
+ "additionalProperties": true,
+ "description": "A single bucket of a facet query result. Reports the number of documents with a field value falling within a particular range or having a particular value or interval."
+ },
+ "DocumentSearchResult": {
+ "properties": {
+ "@odata.count": {
+ "type": "integer",
+ "format": "int64",
+ "readOnly": true,
+ "x-ms-client-name": "Count",
+ "description": "The total count of results found by the search operation, or null if the count was not requested. If present, the count may be greater than the number of results in this response. This can happen if you use the $top or $skip parameters, or if Azure Cognitive Search can't return all the requested documents in a single Search response."
+ },
+ "@search.coverage": {
+ "type": "number",
+ "format": "double",
+ "readOnly": true,
+ "x-ms-client-name": "Coverage",
+ "description": "A value indicating the percentage of the index that was included in the query, or null if minimumCoverage was not specified in the request."
+ },
+ "@search.facets": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/FacetResult"
+ }
+ },
+ "readOnly": true,
+ "x-ms-client-name": "Facets",
+ "description": "The facet query results for the search operation, organized as a collection of buckets for each faceted field; null if the query did not include any facet expressions."
+ },
+ "@search.nextPageParameters": {
+ "$ref": "#/definitions/SearchRequest",
+ "readOnly": true,
+ "x-ms-client-name": "NextPageParameters",
+ "description": "Continuation JSON payload returned when Azure Cognitive Search can't return all the requested results in a single Search response. You can use this JSON along with @odata.nextLink to formulate another POST Search request to get the next part of the search response."
+ },
+ "value": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/SearchResult"
+ },
+ "readOnly": true,
+ "x-ms-client-name": "Results",
+ "description": "The sequence of results returned by the query."
+ },
+ "@odata.nextLink": {
+ "type": "string",
+ "readOnly": true,
+ "x-ms-client-name": "NextLink",
+ "description": "Continuation URL returned when Azure Cognitive Search can't return all the requested results in a single Search response. You can use this URL to formulate another GET or POST Search request to get the next part of the search response. Make sure to use the same verb (GET or POST) as the request that produced this response."
+ }
+ },
+ "description": "Response containing search results from an index."
+ },
+ "SearchResult": {
+ "properties": {
+ "@search.score": {
+ "type": "number",
+ "format": "double",
+ "readOnly": true,
+ "x-ms-client-name": "Score",
+ "x-nullable": false,
+ "description": "The relevance score of the document compared to other documents returned by the query."
+ },
+ "@search.highlights": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "readOnly": true,
+ "x-ms-client-name": "Highlights",
+ "description": "Text fragments from the document that indicate the matching search terms, organized by each applicable field; null if hit highlighting was not enabled for the query."
+ }
+ },
+ "additionalProperties": true,
+ "description": "Contains a document found by a search query, plus associated metadata."
+ },
+ "IndexBatch": {
+ "properties": {
+ "value": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/IndexAction"
+ },
+ "description": "The actions in the batch.",
+ "x-ms-client-name": "Actions"
+ }
+ },
+ "required": [
+ "value"
+ ],
+ "description": "Contains a batch of document write actions to send to the index."
+ },
+ "IndexAction": {
+ "properties": {
+ "@search.action": {
+ "type": "string",
+ "enum": [
+ "upload",
+ "merge",
+ "mergeOrUpload",
+ "delete"
+ ],
+ "x-ms-enum": {
+ "name": "IndexActionType"
+ },
+ "x-ms-client-name": "ActionType",
+ "x-nullable": false,
+ "description": "The operation to perform on a document in an indexing batch."
+ }
+ },
+ "additionalProperties": true,
+ "description": "Represents an index action that operates on a document."
+ },
+ "IndexingResult": {
+ "properties": {
+ "key": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The key of a document that was in the indexing request."
+ },
+ "errorMessage": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The error message explaining why the indexing operation failed for the document identified by the key; null if indexing succeeded."
+ },
+ "status": {
+ "x-ms-client-name": "Succeeded",
+ "type": "boolean",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "A value indicating whether the indexing operation succeeded for the document identified by the key."
+ },
+ "statusCode": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "The status code of the indexing operation. Possible values include: 200 for a successful update or delete, 201 for successful document creation, 400 for a malformed input document, 404 for document not found, 409 for a version conflict, 422 when the index is temporarily unavailable, or 503 for when the service is too busy."
+ }
+ },
+ "description": "Status of an indexing operation for a single document."
+ },
+ "DocumentIndexResult": {
+ "properties": {
+ "value": {
+ "x-ms-client-name": "Results",
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/IndexingResult"
+ },
+ "description": "The list of status information for each document in the indexing request."
+ }
+ },
+ "description": "Response containing the status of operations for all documents in the indexing request."
+ },
+ "SearchMode": {
+ "type": "string",
+ "enum": [
+ "any",
+ "all"
+ ],
+ "x-ms-enum": {
+ "name": "SearchMode",
+ "modelAsString": false
+ },
+ "description": "Specifies whether any or all of the search terms must be matched in order to count the document as a match."
+ },
+ "QueryType": {
+ "type": "string",
+ "enum": [
+ "simple",
+ "full"
+ ],
+ "x-ms-enum": {
+ "name": "QueryType",
+ "modelAsString": false
+ },
+ "description": "Specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax."
+ },
+ "AutocompleteMode": {
+ "type": "string",
+ "enum": [
+ "oneTerm",
+ "twoTerms",
+ "oneTermWithContext"
+ ],
+ "x-ms-enum": {
+ "name": "AutocompleteMode",
+ "modelAsString": false
+ },
+ "description": "Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context in producing autocomplete terms."
+ },
+ "SearchRequest": {
+ "properties": {
+ "count": {
+ "type": "boolean",
+ "description": "A value that specifies whether to fetch the total count of results. Default is false. Setting this value to true may have a performance impact. Note that the count returned is an approximation.",
+ "x-ms-client-name": "IncludeTotalResultCount"
+ },
+ "facets": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Search-Documents"
+ },
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of facet expressions to apply to the search query. Each facet expression contains a field name, optionally followed by a comma-separated list of name:value pairs."
+ },
+ "filter": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/OData-Expression-Syntax-for-Azure-Search"
+ },
+ "type": "string",
+ "description": "The OData $filter expression to apply to the search query."
+ },
+ "highlight": {
+ "type": "string",
+ "description": "The comma-separated list of field names to use for hit highlights. Only searchable fields can be used for hit highlighting.",
+ "x-ms-client-name": "HighlightFields"
+ },
+ "highlightPostTag": {
+ "type": "string",
+ "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. Default is </em>."
+ },
+ "highlightPreTag": {
+ "type": "string",
+ "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. Default is <em>."
+ },
+ "minimumCoverage": {
+ "type": "number",
+ "format": "double",
+ "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by a search query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 100."
+ },
+ "orderby": {
+ "x-ms-client-name": "OrderBy",
+ "type": "string",
+ "description": "The comma-separated list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, or desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no $orderby is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses."
+ },
+ "queryType": {
+ "$ref": "#/definitions/QueryType",
+ "description": "A value that specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax."
+ },
+ "scoringParameters": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of parameter values to be used in scoring functions (for example, referencePointParameter) using the format name-values. For example, if the scoring profile defines a function with a parameter called 'mylocation' the parameter string would be \"mylocation--122.2,44.8\" (without the quotes)."
+ },
+ "scoringProfile": {
+ "type": "string",
+ "description": "The name of a scoring profile to evaluate match scores for matching documents in order to sort the results."
+ },
+ "search": {
+ "type": "string",
+ "description": "A full-text search query expression; Use \"*\" or omit this parameter to match all documents.",
+ "x-ms-client-name": "SearchText"
+ },
+ "searchFields": {
+ "type": "string",
+ "description": "The comma-separated list of field names to which to scope the full-text search. When using fielded search (fieldName:searchExpression) in a full Lucene query, the field names of each fielded search expression take precedence over any field names listed in this parameter."
+ },
+ "searchMode": {
+ "$ref": "#/definitions/SearchMode",
+ "description": "A value that specifies whether any or all of the search terms must be matched in order to count the document as a match."
+ },
+ "select": {
+ "type": "string",
+ "description": "The comma-separated list of fields to retrieve. If unspecified, all fields marked as retrievable in the schema are included."
+ },
+ "skip": {
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of search results to skip. This value cannot be greater than 100,000. If you need to scan documents in sequence, but cannot use skip due to this limitation, consider using orderby on a totally-ordered key and filter with a range query instead."
+ },
+ "top": {
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of search results to retrieve. This can be used in conjunction with $skip to implement client-side paging of search results. If results are truncated due to server-side paging, the response will include a continuation token that can be used to issue another Search request for the next page of results."
+ }
+ },
+ "description": "Parameters for filtering, sorting, faceting, paging, and other search query behaviors."
+ },
+ "SuggestRequest": {
+ "properties": {
+ "filter": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/OData-Expression-Syntax-for-Azure-Search"
+ },
+ "type": "string",
+ "description": "An OData expression that filters the documents considered for suggestions."
+ },
+ "fuzzy": {
+ "type": "boolean",
+ "description": "A value indicating whether to use fuzzy matching for the suggestion query. Default is false. When set to true, the query will find suggestions even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy suggestion searches are slower and consume more resources.",
+ "x-ms-client-name": "UseFuzzyMatching"
+ },
+ "highlightPostTag": {
+ "type": "string",
+ "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting of suggestions is disabled."
+ },
+ "highlightPreTag": {
+ "type": "string",
+ "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting of suggestions is disabled."
+ },
+ "minimumCoverage": {
+ "type": "number",
+ "format": "double",
+ "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by a suggestion query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80."
+ },
+ "orderby": {
+ "x-ms-client-name": "OrderBy",
+ "type": "string",
+ "description": "The comma-separated list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, or desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no $orderby is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses."
+ },
+ "search": {
+ "type": "string",
+ "description": "The search text to use to suggest documents. Must be at least 1 character, and no more than 100 characters.",
+ "x-ms-client-name": "SearchText"
+ },
+ "searchFields": {
+ "type": "string",
+ "description": "The comma-separated list of field names to search for the specified search text. Target fields must be included in the specified suggester."
+ },
+ "select": {
+ "type": "string",
+ "description": "The comma-separated list of fields to retrieve. If unspecified, only the key field will be included in the results."
+ },
+ "suggesterName": {
+ "type": "string",
+ "description": "The name of the suggester as specified in the suggesters collection that's part of the index definition."
+ },
+ "top": {
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of suggestions to retrieve. This must be a value between 1 and 100. The default is 5."
+ }
+ },
+ "description": "Parameters for filtering, sorting, fuzzy matching, and other suggestions query behaviors."
+ },
+ "AutocompleteRequest": {
+ "properties": {
+ "search": {
+ "type": "string",
+ "description": "The search text on which to base autocomplete results.",
+ "x-ms-client-name": "SearchText"
+ },
+ "autocompleteMode": {
+ "$ref": "#/definitions/AutocompleteMode",
+ "description": "Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context while producing auto-completed terms."
+ },
+ "filter": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/OData-Expression-Syntax-for-Azure-Search"
+ },
+ "type": "string",
+ "description": "An OData expression that filters the documents used to produce completed terms for the Autocomplete result."
+ },
+ "fuzzy": {
+ "type": "boolean",
+ "description": "A value indicating whether to use fuzzy matching for the autocomplete query. Default is false. When set to true, the query will autocomplete terms even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy autocomplete queries are slower and consume more resources.",
+ "x-ms-client-name": "UseFuzzyMatching"
+ },
+ "highlightPostTag": {
+ "type": "string",
+ "description": "A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting is disabled."
+ },
+ "highlightPreTag": {
+ "type": "string",
+ "description": "A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting is disabled."
+ },
+ "minimumCoverage": {
+ "type": "number",
+ "format": "double",
+ "description": "A number between 0 and 100 indicating the percentage of the index that must be covered by an autocomplete query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80."
+ },
+ "searchFields": {
+ "type": "string",
+ "description": "The comma-separated list of field names to consider when querying for auto-completed terms. Target fields must be included in the specified suggester."
+ },
+ "suggesterName": {
+ "type": "string",
+ "description": "The name of the suggester as specified in the suggesters collection that's part of the index definition."
+ },
+ "top": {
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of auto-completed terms to retrieve. This must be a value between 1 and 100. The default is 5."
+ }
+ },
+ "description": "Parameters for fuzzy matching, and other autocomplete query behaviors."
+ },
+ "AutocompleteResult": {
+ "properties": {
+ "value": {
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/AutocompleteItem"
+ },
+ "description": "The list of returned Autocompleted items.",
+ "x-ms-client-name": "Results"
+ }
+ },
+ "description": "The result of Autocomplete query."
+ },
+ "AutocompleteItem": {
+ "properties": {
+ "text": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The completed term."
+ },
+ "queryPlusText": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The query along with the completed term."
+ }
+ },
+ "description": "The result of Autocomplete requests."
+ }
+ },
+ "parameters": {
+ "ApiVersionParameter": {
+ "name": "api-version",
+ "in": "query",
+ "required": true,
+ "type": "string",
+ "description": "Client Api Version."
+ },
+ "ClientRequestIdParameter": {
+ "name": "client-request-id",
+ "in": "header",
+ "required": false,
+ "type": "string",
+ "format": "uuid",
+ "description": "The tracking ID sent with the request to help with debugging.",
+ "x-ms-client-request-id": true,
+ "x-ms-parameter-grouping": {
+ "name": "search-request-options"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "SearchServiceNameParameter": {
+ "name": "searchServiceName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "x-ms-skip-url-encoding": true,
+ "description": "The name of the search service.",
+ "x-ms-parameter-location": "client"
+ },
+ "SearchDnsSuffixParameter": {
+ "name": "searchDnsSuffix",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "default": "search.windows.net",
+ "x-ms-skip-url-encoding": true,
+ "description": "The DNS suffix of the search service. The default is search.windows.net.",
+ "x-ms-parameter-location": "client"
+ },
+ "IndexNameParameter": {
+ "name": "indexName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "x-ms-skip-url-encoding": false,
+ "description": "The name of the index.",
+ "x-ms-parameter-location": "client"
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateDataSource.json
new file mode 100644
index 000000000000..b9e678d0d59b
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateDataSource.json
@@ -0,0 +1,53 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "api-version": "2019-05-06-Preview",
+ "dataSource": {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId"
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": null
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateIndex.json
new file mode 100644
index 000000000000..899a46d7e3a8
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateIndex.json
@@ -0,0 +1,364 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "api-version": "2019-05-06-Preview",
+ "index": {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "key": true,
+ "searchable": false
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double"
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "filterable": false,
+ "sortable": false,
+ "facetable": false
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "filterable": false,
+ "sortable": false,
+ "facetable": false,
+ "analyzer": "fr.lucene"
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String"
+ },
+ {
+ "name": "category",
+ "type": "Edm.String"
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "analyzer": "tagsAnalyzer"
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean"
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean"
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32"
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint"
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": {
+ "applicationId": "00000000-0000-0000-0000-000000000000",
+ "applicationSecret": "myapplicationsecret"
+ }
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": true,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "fr.lucene",
+ "synonymMaps": []
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "category",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "tagsAnalyzer",
+ "synonymMaps": []
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "tokenizers": [],
+ "tokenFilters": [],
+ "charFilters": [],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": {
+ "applicationId": "00000000-0000-0000-0000-000000000000",
+ "applicationSecret": null
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateIndexer.json
new file mode 100644
index 000000000000..a48caf1ae64e
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateIndexer.json
@@ -0,0 +1,41 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "api-version": "2019-05-06-Preview",
+ "indexer": {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ },
+ "fieldMappings": [],
+ "disabled": false
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateDataSource.json
new file mode 100644
index 000000000000..20632119f79b
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateDataSource.json
@@ -0,0 +1,78 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "dataSourceName": "mydatasource",
+ "api-version": "2019-05-06-Preview",
+ "Prefer": "return=representation",
+ "dataSource": {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId"
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": null
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ }
+ },
+ "201": {
+ "body": {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": null
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateIndex.json
new file mode 100644
index 000000000000..110718158428
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateIndex.json
@@ -0,0 +1,593 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "hotels",
+ "allowIndexDowntime": false,
+ "api-version": "2019-05-06-Preview",
+ "Prefer": "return=representation",
+ "index": {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "key": true,
+ "searchable": false
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double"
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "filterable": false,
+ "sortable": false,
+ "facetable": false
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "filterable": false,
+ "sortable": false,
+ "facetable": false,
+ "analyzer": "fr.lucene"
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String"
+ },
+ {
+ "name": "category",
+ "type": "Edm.String"
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "analyzer": "tagsAnalyzer"
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean"
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean"
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32"
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint"
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": true,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "fr.lucene",
+ "synonymMaps": []
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "category",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "tagsAnalyzer",
+ "synonymMaps": []
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "tokenizers": [],
+ "tokenFilters": [],
+ "charFilters": [],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ }
+ },
+ "201": {
+ "body": {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": true,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "fr.lucene",
+ "synonymMaps": []
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "category",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "tagsAnalyzer",
+ "synonymMaps": []
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "tokenizers": [],
+ "tokenFilters": [],
+ "charFilters": [],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateIndexer.json
new file mode 100644
index 000000000000..0d6be7478c9b
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateIndexer.json
@@ -0,0 +1,61 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexerName": "myindexer",
+ "api-version": "2019-05-06-Preview",
+ "Prefer": "return=representation",
+ "indexer": {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ },
+ "fieldMappings": [],
+ "disabled": false
+ }
+ },
+ "201": {
+ "body": {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ },
+ "fieldMappings": [],
+ "disabled": false
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateSkillset.json
new file mode 100644
index 000000000000..882002b21eb3
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateSkillset.json
@@ -0,0 +1,370 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "skillsetName": "demoskillset",
+ "api-version": "2019-05-06-Preview",
+ "Prefer": "return=representation",
+ "skillset": {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "name": "#1",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ],
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "name": "#2",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "name": "#3",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "name": "#4",
+ "description": null,
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "maxKeyPhraseCount": null
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "description": null,
+ "context": "/document",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "degreeOfParallelism": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ },
+ "201": {
+ "body": {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "name": "#1",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ],
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "name": "#2",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "name": "#3",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "name": "#4",
+ "description": null,
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "maxKeyPhraseCount": null
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "description": null,
+ "context": "/document",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "degreeOfParallelism": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json
new file mode 100644
index 000000000000..e03c3c7a3a81
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json
@@ -0,0 +1,48 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "synonymMapName": "mysynonymmap",
+ "api-version": "2019-5-06-Preview",
+ "Prefer": "return=representation",
+ "synonymMap": {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ }
+ },
+ "201": {
+ "body": {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateSkillset.json
new file mode 100644
index 000000000000..345d170d4e6f
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateSkillset.json
@@ -0,0 +1,244 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "skillsetName": "demoskillset",
+ "api-version": "2019-05-06-Preview",
+ "Prefer": "return=representation",
+ "skillset": {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "name": "#1",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ],
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "name": "#2",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "name": "#3",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "name": "#4",
+ "description": null,
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "maxKeyPhraseCount": null
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "description": null,
+ "context": "/document",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "degreeOfParallelism": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateSynonymMap.json
new file mode 100644
index 000000000000..9f8c35581736
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceCreateSynonymMap.json
@@ -0,0 +1,39 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "api-version": "2019-05-06-Preview",
+ "synonymMap": {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": {
+ "applicationId": "00000000-0000-0000-0000-000000000000",
+ "applicationSecret": "myApplicationSecret"
+ }
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": {
+ "applicationId": "00000000-0000-0000-0000-000000000000",
+ "applicationSecret": null
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteDataSource.json
new file mode 100644
index 000000000000..485998c3b399
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteDataSource.json
@@ -0,0 +1,12 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "dataSourceName": "mydatasource",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "204": {},
+ "404": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteIndex.json
new file mode 100644
index 000000000000..7e2a4ab24ebb
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteIndex.json
@@ -0,0 +1,12 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "204": {},
+ "404": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteIndexer.json
new file mode 100644
index 000000000000..2d8d47a4aba9
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteIndexer.json
@@ -0,0 +1,12 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexerName": "myindexer",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "204": {},
+ "404": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteSkillset.json
new file mode 100644
index 000000000000..a7ef21578409
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteSkillset.json
@@ -0,0 +1,12 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "skillsetName": "demoskillset",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "204": {},
+ "404": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteSynonymMap.json
new file mode 100644
index 000000000000..367a75c1fb2c
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceDeleteSynonymMap.json
@@ -0,0 +1,12 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "synonymMapName": "mysynonymmap",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "204": {},
+ "404": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetDataSource.json
new file mode 100644
index 000000000000..764a9c1f0bae
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetDataSource.json
@@ -0,0 +1,33 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "dataSourceName": "mydatasource",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": null
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetIndex.json
new file mode 100644
index 000000000000..b6eba6581225
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetIndex.json
@@ -0,0 +1,245 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "hotels",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": true,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "fr.lucene",
+ "synonymMaps": []
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "category",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "tagsAnalyzer",
+ "synonymMaps": []
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "tokenizers": [],
+ "tokenFilters": [],
+ "charFilters": [],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myKeyName",
+ "keyVaultKeyVersion": "myKeyVersion",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": {
+ "applicationId": "00000000-0000-0000-0000-000000000000",
+ "applicationSecret": null
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetIndexStatistics.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetIndexStatistics.json
new file mode 100644
index 000000000000..9392ddbbece6
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetIndexStatistics.json
@@ -0,0 +1,16 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "hotels",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "documentCount": 239572,
+ "storageSize": 72375920
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetIndexer.json
new file mode 100644
index 000000000000..83cfe1c5c9e5
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetIndexer.json
@@ -0,0 +1,28 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexerName": "myindexer",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ },
+ "fieldMappings": [],
+ "disabled": false
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetIndexerStatus.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetIndexerStatus.json
new file mode 100644
index 000000000000..1f0fb1785cf8
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetIndexerStatus.json
@@ -0,0 +1,90 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexerName": "myindexer",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "status": "running",
+ "lastResult": {
+ "status": "success",
+ "errorMessage": null,
+ "startTime": "2014-11-26T03:37:18.853Z",
+ "endTime": "2014-11-26T03:37:19.012Z",
+ "errors": [],
+ "warnings": [],
+ "itemsProcessed": 11,
+ "itemsFailed": 0,
+ "initialTrackingState": null,
+ "finalTrackingState": null
+ },
+ "executionHistory": [
+ {
+ "status": "success",
+ "errorMessage": null,
+ "startTime": "2014-11-26T03:37:18.853Z",
+ "endTime": "2014-11-26T03:37:19.012Z",
+ "errors": [],
+ "warnings": [],
+ "itemsProcessed": 11,
+ "itemsFailed": 0,
+ "initialTrackingState": null,
+ "finalTrackingState": null
+ },
+ {
+ "status": "transientFailure",
+ "errorMessage": null,
+ "startTime": "2014-11-26T03:28:10.125Z",
+ "endTime": "2014-11-26T03:28:12.007Z",
+ "errors": [
+ {
+ "key": "",
+ "errorMessage": "Document key cannot be missing or empty.",
+ "statusCode": 400,
+ "name": null,
+ "details": null,
+ "documentationLink": null
+ },
+ {
+ "key": "document id 1",
+ "errorMessage": "Could not read the value of column 'foo' at index '0'.",
+ "statusCode": 400,
+ "name": "DocumentExtraction.AzureBlob.MyDataSource",
+ "details": "The file could not be parsed.",
+ "documentationLink": "https://go.microsoft.com/fwlink/?linkid=2049388"
+ }
+ ],
+ "warnings": [
+ {
+ "key": "document id",
+ "message": "A warning doesn't stop indexing, and is intended to inform you of certain interesting situations, like when a blob indexer truncates the amount of text extracted from a blob.",
+ "name": null,
+ "details": null,
+ "documentationLink": null
+ },
+ {
+ "key": "document id 2",
+ "message": "Document was truncated to 50000 characters.",
+ "name": "Enrichment.LanguageDetectionSkill.#4",
+ "details": "The skill did something that didn't break anything, nonetheless something we didn't expect happened, so it might be worth double checking.",
+ "documentationLink": "https://go.microsoft.com/fwlink/?linkid=2099692"
+ }
+ ],
+ "itemsProcessed": 1,
+ "itemsFailed": 2,
+ "initialTrackingState": null,
+ "finalTrackingState": null
+ }
+ ],
+ "limits": {
+ "maxRunTime": "22:00:00",
+ "maxDocumentExtractionSize": 256000000,
+ "maxDocumentContentCharactersToExtract": 4000000
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetServiceStatistics.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetServiceStatistics.json
new file mode 100644
index 000000000000..ef57c6530a12
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetServiceStatistics.json
@@ -0,0 +1,45 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "counters": {
+ "documentCount": {
+ "usage": 7093,
+ "quota": 10000
+ },
+ "indexesCount": {
+ "usage": 3,
+ "quota": 3
+ },
+ "indexersCount": {
+ "usage": 3,
+ "quota": 3
+ },
+ "dataSourcesCount": {
+ "usage": 1,
+ "quota": 3
+ },
+ "storageSize": {
+ "usage": 914529,
+ "quota": 52428800
+ },
+ "synonymMaps": {
+ "usage": 2,
+ "quota": 3
+ }
+ },
+ "limits": {
+ "maxFieldsPerIndex": 1000,
+ "maxFieldNestingDepthPerIndex": 10,
+ "maxComplexCollectionFieldsPerIndex": 100,
+ "maxComplexObjectsInCollectionsPerDocument": 3000
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetSkillset.json
new file mode 100644
index 000000000000..10e742ea9eee
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetSkillset.json
@@ -0,0 +1,136 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "skillsetName": "demoskillset",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "name": "#1",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ],
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "name": "#2",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "name": "#3",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "name": "#4",
+ "description": null,
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "maxKeyPhraseCount": null
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "description": null,
+ "context": "/document",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "degreeOfParallelism": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetSynonymMap.json
new file mode 100644
index 000000000000..44c620c21af7
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceGetSynonymMap.json
@@ -0,0 +1,26 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "synonymMapName": "mysynonymmap",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myKeyName",
+ "keyVaultKeyVersion": "myKeyVersion",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": {
+ "applicationId": "00000000-0000-0000-0000-000000000000",
+ "applicationSecret": null
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceIndexAnalyze.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceIndexAnalyze.json
new file mode 100644
index 000000000000..671beb130f40
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceIndexAnalyze.json
@@ -0,0 +1,38 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "hotels",
+ "api-version": "2019-05-06-Preview",
+ "request": {
+ "text": "Text to analyze",
+ "analyzer": "standard.lucene"
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "tokens": [
+ {
+ "token": "text",
+ "startOffset": 0,
+ "endOffset": 4,
+ "position": 0
+ },
+ {
+ "token": "to",
+ "startOffset": 5,
+ "endOffset": 7,
+ "position": 1
+ },
+ {
+ "token": "analyze",
+ "startOffset": 8,
+ "endOffset": 15,
+ "position": 2
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListDataSources.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListDataSources.json
new file mode 100644
index 000000000000..64f8ecb6a22d
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListDataSources.json
@@ -0,0 +1,50 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "$select": "*",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": null
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ },
+ {
+ "name": "myblobdatasource",
+ "description": "My Azure Blob data source.",
+ "type": "azureblob",
+ "credentials": {
+ "connectionString": null
+ },
+ "container": {
+ "name": "mycontainer"
+ },
+ "dataChangeDetectionPolicy": null,
+ "dataDeletionDetectionPolicy": null
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListIndexers.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListIndexers.json
new file mode 100644
index 000000000000..6cade8adafd9
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListIndexers.json
@@ -0,0 +1,68 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "$select": "*",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydocdbdatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ },
+ "fieldMappings": [],
+ "disabled": false
+ },
+ {
+ "name": "myotherindexer",
+ "description": "another cool indexer",
+ "dataSourceName": "myblobdatasource",
+ "targetIndexName": "orders",
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5,
+ "batchSize": 15
+ },
+ "fieldMappings": [
+ {
+ "sourceFieldName": "PersonName",
+ "targetFieldName": "FirstName",
+ "mappingFunction": {
+ "name": "extractTokenAtPosition",
+ "parameters": {
+ "delimiter": " ",
+ "position": 0
+ }
+ }
+ },
+ {
+ "sourceFieldName": "PersonName",
+ "targetFieldName": "LastName",
+ "mappingFunction": {
+ "name": "extractTokenAtPosition",
+ "parameters": {
+ "delimiter": " ",
+ "position": 1
+ }
+ }
+ }
+ ],
+ "disabled": false
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListIndexes.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListIndexes.json
new file mode 100644
index 000000000000..40cad9454d59
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListIndexes.json
@@ -0,0 +1,288 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "$select": "*",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": true,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "fr.lucene",
+ "synonymMaps": []
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "category",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "tagsAnalyzer",
+ "synonymMaps": []
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "tokenizers": [],
+ "tokenFilters": [],
+ "charFilters": [],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myKeyName",
+ "keyVaultKeyVersion": "myKeyVersion",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ },
+ {
+ "name": "testindex",
+ "fields": [
+ {
+ "name": "id",
+ "type": "Edm.String",
+ "searchable": false,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": true,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "hidden",
+ "type": "Edm.Double",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": false,
+ "sortable": true,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ }
+ ],
+ "scoringProfiles": [],
+ "defaultScoringProfile": null,
+ "suggesters": [],
+ "analyzers": [],
+ "tokenizers": [],
+ "tokenFilters": [],
+ "charFilters": [],
+ "corsOptions": null,
+ "encryptionKey": null
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListSkillsets.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListSkillsets.json
new file mode 100644
index 000000000000..51d26b811db3
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListSkillsets.json
@@ -0,0 +1,140 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "$select": "*",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "name": "#1",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ],
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "name": "#2",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "name": "#3",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "name": "#4",
+ "description": null,
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "maxKeyPhraseCount": null
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "description": null,
+ "context": "/document",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "degreeOfParallelism": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListSynonymMaps.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListSynonymMaps.json
new file mode 100644
index 000000000000..9fe7c633b7f1
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceListSynonymMaps.json
@@ -0,0 +1,32 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myKeyName",
+ "keyVaultKeyVersion": "myKeyVersion",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ },
+ {
+ "name": "myothersynonymmap",
+ "format": "solr",
+ "synonyms": "couch, sofa, chesterfield\npop, soda\ntoque, hat",
+ "encryptionKey": null
+ }
+ ]
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceResetIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceResetIndexer.json
new file mode 100644
index 000000000000..6f3c5ec8ed27
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceResetIndexer.json
@@ -0,0 +1,11 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexerName": "myindexer",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "204": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceRunIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceRunIndexer.json
new file mode 100644
index 000000000000..0a59b91741a2
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/examples/SearchServiceRunIndexer.json
@@ -0,0 +1,11 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexerName": "myindexer",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "202": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/searchservice.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/searchservice.json
new file mode 100644
index 000000000000..da4cbe1887e1
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/preview/2019-05-06-preview/searchservice.json
@@ -0,0 +1,5640 @@
+{
+ "swagger": "2.0",
+ "info": {
+ "title": "SearchServiceClient",
+ "description": "Client that can be used to manage and query indexes and documents, as well as manage other resources, on a search service.",
+ "version": "2019-05-06-Preview",
+ "x-ms-code-generation-settings": {
+ "useDateTimeOffset": true
+ }
+ },
+ "x-ms-parameterized-host": {
+ "hostTemplate": "https://{searchServiceName}.{searchDnsSuffix}",
+ "useSchemePrefix": false,
+ "parameters": [
+ {
+ "$ref": "#/parameters/SearchServiceNameParameter"
+ },
+ {
+ "$ref": "#/parameters/SearchDnsSuffixParameter"
+ }
+ ]
+ },
+ "consumes": [
+ "application/json"
+ ],
+ "produces": [
+ "application/json"
+ ],
+ "paths": {
+ "/datasources('{dataSourceName}')": {
+ "put": {
+ "tags": [
+ "DataSources"
+ ],
+ "operationId": "DataSources_CreateOrUpdate",
+ "x-ms-examples": {
+ "SearchServiceCreateOrUpdateDataSource": {
+ "$ref": "./examples/SearchServiceCreateOrUpdateDataSource.json"
+ }
+ },
+ "description": "Creates a new datasource or updates a datasource if it already exists.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Update-Data-Source"
+ },
+ "parameters": [
+ {
+ "name": "dataSourceName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the datasource to create or update."
+ },
+ {
+ "name": "dataSource",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/DataSource"
+ },
+ "description": "The definition of the datasource to create or update."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/PreferHeaderParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/DataSource"
+ }
+ },
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/DataSource"
+ }
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "DataSources"
+ ],
+ "operationId": "DataSources_Delete",
+ "x-ms-examples": {
+ "SearchServiceDeleteDataSource": {
+ "$ref": "./examples/SearchServiceDeleteDataSource.json"
+ }
+ },
+ "description": "Deletes a datasource.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Delete-Data-Source"
+ },
+ "parameters": [
+ {
+ "name": "dataSourceName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the datasource to delete."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "204": {
+ "description": ""
+ },
+ "404": {
+ "description": ""
+ }
+ }
+ },
+ "get": {
+ "tags": [
+ "DataSources"
+ ],
+ "operationId": "DataSources_Get",
+ "x-ms-examples": {
+ "SearchServiceGetDataSource": {
+ "$ref": "./examples/SearchServiceGetDataSource.json"
+ }
+ },
+ "description": "Retrieves a datasource definition.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Data-Source"
+ },
+ "parameters": [
+ {
+ "name": "dataSourceName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the datasource to retrieve."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/DataSource"
+ }
+ }
+ }
+ }
+ },
+ "/datasources": {
+ "get": {
+ "tags": [
+ "DataSources"
+ ],
+ "operationId": "DataSources_List",
+ "x-ms-examples": {
+ "SearchServiceListDataSources": {
+ "$ref": "./examples/SearchServiceListDataSources.json"
+ }
+ },
+ "description": "Lists all datasources available for a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/List-Data-Sources"
+ },
+ "parameters": [
+ {
+ "name": "$select",
+ "in": "query",
+ "required": false,
+ "type": "string",
+ "description": "Selects which top-level properties of the data sources to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/DataSourceListResult"
+ }
+ }
+ }
+ },
+ "post": {
+ "tags": [
+ "DataSources"
+ ],
+ "operationId": "DataSources_Create",
+ "x-ms-examples": {
+ "SearchServiceCreateDataSource": {
+ "$ref": "./examples/SearchServiceCreateDataSource.json"
+ }
+ },
+ "description": "Creates a new datasource.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Data-Source"
+ },
+ "parameters": [
+ {
+ "name": "dataSource",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/DataSource"
+ },
+ "description": "The definition of the datasource to create."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/DataSource"
+ }
+ }
+ }
+ }
+ },
+ "/indexers('{indexerName}')/search.reset": {
+ "post": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_Reset",
+ "x-ms-examples": {
+ "SearchServiceResetIndexer": {
+ "$ref": "./examples/SearchServiceResetIndexer.json"
+ }
+ },
+ "description": "Resets the change tracking state associated with an indexer.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Reset-Indexer"
+ },
+ "parameters": [
+ {
+ "name": "indexerName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the indexer to reset."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "204": {
+ "description": ""
+ }
+ }
+ }
+ },
+ "/indexers('{indexerName}')/search.run": {
+ "post": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_Run",
+ "x-ms-examples": {
+ "SearchServiceRunIndexer": {
+ "$ref": "./examples/SearchServiceRunIndexer.json"
+ }
+ },
+ "description": "Runs an indexer on-demand.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Run-Indexer"
+ },
+ "parameters": [
+ {
+ "name": "indexerName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the indexer to run."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "202": {
+ "description": ""
+ }
+ }
+ }
+ },
+ "/indexers('{indexerName}')": {
+ "put": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_CreateOrUpdate",
+ "x-ms-examples": {
+ "SearchServiceCreateOrUpdateIndexer": {
+ "$ref": "./examples/SearchServiceCreateOrUpdateIndexer.json"
+ }
+ },
+ "description": "Creates a new indexer or updates an indexer if it already exists.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Indexer"
+ },
+ "parameters": [
+ {
+ "name": "indexerName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the indexer to create or update."
+ },
+ {
+ "name": "indexer",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/Indexer"
+ },
+ "description": "The definition of the indexer to create or update."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/PreferHeaderParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Indexer"
+ }
+ },
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Indexer"
+ }
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_Delete",
+ "x-ms-examples": {
+ "SearchServiceDeleteIndexer": {
+ "$ref": "./examples/SearchServiceDeleteIndexer.json"
+ }
+ },
+ "description": "Deletes an indexer.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Delete-Indexer"
+ },
+ "parameters": [
+ {
+ "name": "indexerName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the indexer to delete."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "404": {
+ "description": ""
+ },
+ "204": {
+ "description": ""
+ }
+ }
+ },
+ "get": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_Get",
+ "x-ms-examples": {
+ "SearchServiceGetIndexer": {
+ "$ref": "./examples/SearchServiceGetIndexer.json"
+ }
+ },
+ "description": "Retrieves an indexer definition.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Indexer"
+ },
+ "parameters": [
+ {
+ "name": "indexerName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the indexer to retrieve."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Indexer"
+ }
+ }
+ }
+ }
+ },
+ "/indexers": {
+ "get": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_List",
+ "x-ms-examples": {
+ "SearchServiceListIndexers": {
+ "$ref": "./examples/SearchServiceListIndexers.json"
+ }
+ },
+ "description": "Lists all indexers available for a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/List-Indexers"
+ },
+ "parameters": [
+ {
+ "name": "$select",
+ "in": "query",
+ "required": false,
+ "type": "string",
+ "description": "Selects which top-level properties of the indexers to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/IndexerListResult"
+ }
+ }
+ }
+ },
+ "post": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_Create",
+ "x-ms-examples": {
+ "SearchServiceCreateIndexer": {
+ "$ref": "./examples/SearchServiceCreateIndexer.json"
+ }
+ },
+ "description": "Creates a new indexer.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Indexer"
+ },
+ "parameters": [
+ {
+ "name": "indexer",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/Indexer"
+ },
+ "description": "The definition of the indexer to create."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Indexer"
+ }
+ }
+ }
+ }
+ },
+ "/indexers('{indexerName}')/search.status": {
+ "get": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_GetStatus",
+ "x-ms-examples": {
+ "SearchServiceGetIndexerStatus": {
+ "$ref": "./examples/SearchServiceGetIndexerStatus.json"
+ }
+ },
+ "description": "Returns the current status and execution history of an indexer.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Indexer-Status"
+ },
+ "parameters": [
+ {
+ "name": "indexerName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the indexer for which to retrieve status."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/IndexerExecutionInfo"
+ }
+ }
+ }
+ }
+ },
+ "/skillsets('{skillsetName}')": {
+ "put": {
+ "tags": [
+ "Skillsets"
+ ],
+ "operationId": "Skillsets_CreateOrUpdate",
+ "x-ms-examples": {
+ "SearchServiceCreateOrUpdateSkillset": {
+ "$ref": "./examples/SearchServiceCreateOrUpdateSkillset.json"
+ }
+ },
+ "description": "Creates a new skillset in a search service or updates the skillset if it already exists.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/update-skillset"
+ },
+ "parameters": [
+ {
+ "name": "skillsetName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the skillset to create or update."
+ },
+ {
+ "name": "skillset",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/Skillset"
+ },
+ "description": "The skillset containing one or more skills to create or update in a search service."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/PreferHeaderParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "The skillset is successfully updated.",
+ "schema": {
+ "$ref": "#/definitions/Skillset"
+ }
+ },
+ "201": {
+ "description": "The skillset is successfully created.",
+ "schema": {
+ "$ref": "#/definitions/Skillset"
+ }
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "Skillsets"
+ ],
+ "operationId": "Skillsets_Delete",
+ "x-ms-examples": {
+ "SearchServiceDeleteSkillset": {
+ "$ref": "./examples/SearchServiceDeleteSkillset.json"
+ }
+ },
+ "description": "Deletes a skillset in a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/delete-skillset"
+ },
+ "parameters": [
+ {
+ "name": "skillsetName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the skillset to delete."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "204": {
+ "description": "The skillset is successfully deleted."
+ },
+ "404": {
+ "description": "The provided skillset name is not found."
+ }
+ }
+ },
+ "get": {
+ "tags": [
+ "Skillsets"
+ ],
+ "operationId": "Skillsets_Get",
+ "x-ms-examples": {
+ "SearchServiceGetSkillset": {
+ "$ref": "./examples/SearchServiceGetSkillset.json"
+ }
+ },
+ "description": "Retrieves a skillset in a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/get-skillset"
+ },
+ "parameters": [
+ {
+ "name": "skillsetName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the skillset to retrieve."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "The skillset is successfully returned.",
+ "schema": {
+ "$ref": "#/definitions/Skillset"
+ }
+ }
+ }
+ }
+ },
+ "/skillsets": {
+ "get": {
+ "tags": [
+ "Skillsets"
+ ],
+ "operationId": "Skillsets_List",
+ "x-ms-examples": {
+ "SearchServiceListSkillsets": {
+ "$ref": "./examples/SearchServiceListSkillsets.json"
+ }
+ },
+ "description": "List all skillsets in a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/list-skillset"
+ },
+ "parameters": [
+ {
+ "name": "$select",
+ "in": "query",
+ "required": false,
+ "type": "string",
+ "description": "Selects which top-level properties of the skillsets to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "The list is successfully returned.",
+ "schema": {
+ "$ref": "#/definitions/SkillsetListResult"
+ }
+ }
+ }
+ },
+ "post": {
+ "tags": [
+ "Skillsets"
+ ],
+ "operationId": "Skillsets_Create",
+ "x-ms-examples": {
+ "SearchServiceCreateSkillset": {
+ "$ref": "./examples/SearchServiceCreateSkillset.json"
+ }
+ },
+ "description": "Creates a new skillset in a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/create-skillset"
+ },
+ "parameters": [
+ {
+ "name": "skillset",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/Skillset"
+ },
+ "description": "The skillset containing one or more skills to create in a search service."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "201": {
+ "description": "The skillset is successfully created.",
+ "schema": {
+ "$ref": "#/definitions/Skillset"
+ }
+ }
+ }
+ }
+ },
+ "/synonymmaps('{synonymMapName}')": {
+ "put": {
+ "tags": [
+ "SynonymMaps"
+ ],
+ "operationId": "SynonymMaps_CreateOrUpdate",
+ "x-ms-examples": {
+ "SearchServiceCreateOrUpdateSynonymMap": {
+ "$ref": "./examples/SearchServiceCreateOrUpdateSynonymMap.json"
+ }
+ },
+ "description": "Creates a new synonym map or updates a synonym map if it already exists.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Update-Synonym-Map"
+ },
+ "parameters": [
+ {
+ "name": "synonymMapName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the synonym map to create or update."
+ },
+ {
+ "name": "synonymMap",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/SynonymMap"
+ },
+ "description": "The definition of the synonym map to create or update."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/PreferHeaderParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/SynonymMap"
+ }
+ },
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/SynonymMap"
+ }
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "SynonymMaps"
+ ],
+ "operationId": "SynonymMaps_Delete",
+ "x-ms-examples": {
+ "SearchServiceDeleteSynonymMap": {
+ "$ref": "./examples/SearchServiceDeleteSynonymMap.json"
+ }
+ },
+ "description": "Deletes a synonym map.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Delete-Synonym-Map"
+ },
+ "parameters": [
+ {
+ "name": "synonymMapName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the synonym map to delete."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "204": {
+ "description": ""
+ },
+ "404": {
+ "description": ""
+ }
+ }
+ },
+ "get": {
+ "tags": [
+ "SynonymMaps"
+ ],
+ "operationId": "SynonymMaps_Get",
+ "x-ms-examples": {
+ "SearchServiceGetSynonymMap": {
+ "$ref": "./examples/SearchServiceGetSynonymMap.json"
+ }
+ },
+ "description": "Retrieves a synonym map definition.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Synonym-Map"
+ },
+ "parameters": [
+ {
+ "name": "synonymMapName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the synonym map to retrieve."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/SynonymMap"
+ }
+ }
+ }
+ }
+ },
+ "/synonymmaps": {
+ "get": {
+ "tags": [
+ "SynonymMaps"
+ ],
+ "operationId": "SynonymMaps_List",
+ "x-ms-examples": {
+ "SearchServiceListSynonymMaps": {
+ "$ref": "./examples/SearchServiceListSynonymMaps.json"
+ }
+ },
+ "description": "Lists all synonym maps available for a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/List-Synonym-Maps"
+ },
+ "parameters": [
+ {
+ "name": "$select",
+ "in": "query",
+ "required": false,
+ "type": "string",
+ "description": "Selects which top-level properties of the synonym maps to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/SynonymMapListResult"
+ }
+ }
+ }
+ },
+ "post": {
+ "tags": [
+ "SynonymMaps"
+ ],
+ "operationId": "SynonymMaps_Create",
+ "x-ms-examples": {
+ "SearchServiceCreateSynonymMap": {
+ "$ref": "./examples/SearchServiceCreateSynonymMap.json"
+ }
+ },
+ "description": "Creates a new synonym map.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Synonym-Map"
+ },
+ "parameters": [
+ {
+ "name": "synonymMap",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/SynonymMap"
+ },
+ "description": "The definition of the synonym map to create."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/SynonymMap"
+ }
+ }
+ }
+ }
+ },
+ "/indexes": {
+ "post": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_Create",
+ "x-ms-examples": {
+ "SearchServiceCreateIndex": {
+ "$ref": "./examples/SearchServiceCreateIndex.json"
+ }
+ },
+ "description": "Creates a new search index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Index"
+ },
+ "parameters": [
+ {
+ "name": "index",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/Index"
+ },
+ "description": "The definition of the index to create."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Index"
+ }
+ }
+ }
+ },
+ "get": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_List",
+ "x-ms-examples": {
+ "SearchServiceListIndexes": {
+ "$ref": "./examples/SearchServiceListIndexes.json"
+ }
+ },
+ "description": "Lists all indexes available for a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/List-Indexes"
+ },
+ "parameters": [
+ {
+ "name": "$select",
+ "in": "query",
+ "required": false,
+ "type": "string",
+ "description": "Selects which top-level properties of the index definitions to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/IndexListResult"
+ }
+ }
+ }
+ }
+ },
+ "/indexes('{indexName}')": {
+ "put": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_CreateOrUpdate",
+ "x-ms-examples": {
+ "SearchServiceCreateOrUpdateIndex": {
+ "$ref": "./examples/SearchServiceCreateOrUpdateIndex.json"
+ }
+ },
+ "description": "Creates a new search index or updates an index if it already exists.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Update-Index"
+ },
+ "parameters": [
+ {
+ "name": "indexName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The definition of the index to create or update."
+ },
+ {
+ "name": "index",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/Index"
+ },
+ "description": "The definition of the index to create or update."
+ },
+ {
+ "name": "allowIndexDowntime",
+ "in": "query",
+ "required": false,
+ "type": "boolean",
+ "description": "Allows new analyzers, tokenizers, token filters, or char filters to be added to an index by taking the index offline for at least a few seconds. This temporarily causes indexing and query requests to fail. Performance and write availability of the index can be impaired for several minutes after the index is updated, or longer for very large indexes."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/PreferHeaderParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Index"
+ }
+ },
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Index"
+ }
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_Delete",
+ "x-ms-examples": {
+ "SearchServiceDeleteIndex": {
+ "$ref": "./examples/SearchServiceDeleteIndex.json"
+ }
+ },
+ "description": "Deletes a search index and all the documents it contains.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Delete-Index"
+ },
+ "parameters": [
+ {
+ "name": "indexName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the index to delete."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "204": {
+ "description": ""
+ },
+ "404": {
+ "description": ""
+ }
+ }
+ },
+ "get": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_Get",
+ "x-ms-examples": {
+ "SearchServiceGetIndex": {
+ "$ref": "./examples/SearchServiceGetIndex.json"
+ }
+ },
+ "description": "Retrieves an index definition.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Index"
+ },
+ "parameters": [
+ {
+ "name": "indexName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the index to retrieve."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Index"
+ }
+ }
+ }
+ }
+ },
+ "/indexes('{indexName}')/search.stats": {
+ "get": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_GetStatistics",
+ "x-ms-examples": {
+ "SearchServiceGetIndexStatistics": {
+ "$ref": "./examples/SearchServiceGetIndexStatistics.json"
+ }
+ },
+ "description": "Returns statistics for the given index, including a document count and storage usage.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Index-Statistics"
+ },
+ "parameters": [
+ {
+ "name": "indexName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the index for which to retrieve statistics."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/IndexGetStatisticsResult"
+ }
+ }
+ }
+ }
+ },
+ "/indexes('{indexName}')/search.analyze": {
+ "post": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_Analyze",
+ "x-ms-examples": {
+ "SearchServiceIndexAnalyze": {
+ "$ref": "./examples/SearchServiceIndexAnalyze.json"
+ }
+ },
+ "description": "Shows how an analyzer breaks text into tokens.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/test-analyzer"
+ },
+ "parameters": [
+ {
+ "name": "indexName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the index for which to test an analyzer."
+ },
+ {
+ "name": "request",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/AnalyzeRequest"
+ },
+ "description": "The text and analyzer or analysis components to test."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/AnalyzeResult"
+ }
+ }
+ }
+ }
+ },
+ "/servicestats": {
+ "get": {
+ "tags": [
+ "Service"
+ ],
+ "operationId": "GetServiceStatistics",
+ "x-ms-examples": {
+ "SearchServiceGetServiceStatistics": {
+ "$ref": "./examples/SearchServiceGetServiceStatistics.json"
+ }
+ },
+ "description": "Gets service level statistics for a search service.",
+ "parameters": [
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/ServiceStatistics"
+ }
+ }
+ }
+ }
+ }
+ },
+ "definitions": {
+ "AnalyzeRequest": {
+ "properties": {
+ "text": {
+ "type": "string",
+ "description": "The text to break into tokens."
+ },
+ "analyzer": {
+ "$ref": "#/definitions/AnalyzerName",
+ "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."
+ },
+ "tokenizer": {
+ "$ref": "#/definitions/TokenizerName",
+ "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."
+ },
+ "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."
+ },
+ "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."
+ }
+ },
+ "required": [
+ "text"
+ ],
+ "description": "Specifies some text and analysis components used to break that text into tokens."
+ },
+ "AnalyzeResult": {
+ "properties": {
+ "tokens": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/TokenInfo"
+ },
+ "description": "The list of tokens returned by the analyzer specified in the request."
+ }
+ },
+ "description": "The result of testing an analyzer on text."
+ },
+ "TokenInfo": {
+ "properties": {
+ "token": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The token returned by the analyzer."
+ },
+ "startOffset": {
+ "type": "integer",
+ "format": "int32",
+ "readOnly": true,
+ "description": "The index of the first character of the token in the input text."
+ },
+ "endOffset": {
+ "type": "integer",
+ "format": "int32",
+ "readOnly": true,
+ "description": "The index of the last character of the token in the input text."
+ },
+ "position": {
+ "type": "integer",
+ "format": "int32",
+ "readOnly": true,
+ "description": "The position of the token in the input text relative to other tokens. The first token in the input text has position 0, the next has position 1, and so on. Depending on the analyzer used, some tokens might have the same position, for example if they are synonyms of each other."
+ }
+ },
+ "description": "Information about a token returned by an analyzer."
+ },
+ "AnalyzerName": {
+ "type": "string",
+ "enum": [
+ "ar.microsoft",
+ "ar.lucene",
+ "hy.lucene",
+ "bn.microsoft",
+ "eu.lucene",
+ "bg.microsoft",
+ "bg.lucene",
+ "ca.microsoft",
+ "ca.lucene",
+ "zh-Hans.microsoft",
+ "zh-Hans.lucene",
+ "zh-Hant.microsoft",
+ "zh-Hant.lucene",
+ "hr.microsoft",
+ "cs.microsoft",
+ "cs.lucene",
+ "da.microsoft",
+ "da.lucene",
+ "nl.microsoft",
+ "nl.lucene",
+ "en.microsoft",
+ "en.lucene",
+ "et.microsoft",
+ "fi.microsoft",
+ "fi.lucene",
+ "fr.microsoft",
+ "fr.lucene",
+ "gl.lucene",
+ "de.microsoft",
+ "de.lucene",
+ "el.microsoft",
+ "el.lucene",
+ "gu.microsoft",
+ "he.microsoft",
+ "hi.microsoft",
+ "hi.lucene",
+ "hu.microsoft",
+ "hu.lucene",
+ "is.microsoft",
+ "id.microsoft",
+ "id.lucene",
+ "ga.lucene",
+ "it.microsoft",
+ "it.lucene",
+ "ja.microsoft",
+ "ja.lucene",
+ "kn.microsoft",
+ "ko.microsoft",
+ "ko.lucene",
+ "lv.microsoft",
+ "lv.lucene",
+ "lt.microsoft",
+ "ml.microsoft",
+ "ms.microsoft",
+ "mr.microsoft",
+ "nb.microsoft",
+ "no.lucene",
+ "fa.lucene",
+ "pl.microsoft",
+ "pl.lucene",
+ "pt-BR.microsoft",
+ "pt-BR.lucene",
+ "pt-PT.microsoft",
+ "pt-PT.lucene",
+ "pa.microsoft",
+ "ro.microsoft",
+ "ro.lucene",
+ "ru.microsoft",
+ "ru.lucene",
+ "sr-cyrillic.microsoft",
+ "sr-latin.microsoft",
+ "sk.microsoft",
+ "sl.microsoft",
+ "es.microsoft",
+ "es.lucene",
+ "sv.microsoft",
+ "sv.lucene",
+ "ta.microsoft",
+ "te.microsoft",
+ "th.microsoft",
+ "th.lucene",
+ "tr.microsoft",
+ "tr.lucene",
+ "uk.microsoft",
+ "ur.microsoft",
+ "vi.microsoft",
+ "standard.lucene",
+ "standardasciifolding.lucene",
+ "keyword",
+ "pattern",
+ "simple",
+ "stop",
+ "whitespace"
+ ],
+ "x-ms-enum": {
+ "name": "AnalyzerName",
+ "modelAsString": false
+ },
+ "description": "Defines the names of all text analyzers supported by Azure Cognitive Search.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Language-support"
+ }
+ },
+ "TokenizerName": {
+ "type": "string",
+ "enum": [
+ "classic",
+ "edgeNGram",
+ "keyword_v2",
+ "letter",
+ "lowercase",
+ "microsoft_language_tokenizer",
+ "microsoft_language_stemming_tokenizer",
+ "nGram",
+ "path_hierarchy_v2",
+ "pattern",
+ "standard_v2",
+ "uax_url_email",
+ "whitespace"
+ ],
+ "x-ms-enum": {
+ "name": "TokenizerName",
+ "modelAsString": false
+ },
+ "description": "Defines the names of all tokenizers supported by Azure Cognitive Search.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "TokenFilterName": {
+ "type": "string",
+ "enum": [
+ "arabic_normalization",
+ "apostrophe",
+ "asciifolding",
+ "cjk_bigram",
+ "cjk_width",
+ "classic",
+ "common_grams",
+ "edgeNGram_v2",
+ "elision",
+ "german_normalization",
+ "hindi_normalization",
+ "indic_normalization",
+ "keyword_repeat",
+ "kstem",
+ "length",
+ "limit",
+ "lowercase",
+ "nGram_v2",
+ "persian_normalization",
+ "phonetic",
+ "porter_stem",
+ "reverse",
+ "scandinavian_normalization",
+ "scandinavian_folding",
+ "shingle",
+ "snowball",
+ "sorani_normalization",
+ "stemmer",
+ "stopwords",
+ "trim",
+ "truncate",
+ "unique",
+ "uppercase",
+ "word_delimiter"
+ ],
+ "x-ms-enum": {
+ "name": "TokenFilterName",
+ "modelAsString": false
+ },
+ "description": "Defines the names of all token filters supported by Azure Cognitive Search.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "CharFilterName": {
+ "type": "string",
+ "enum": [
+ "html_strip"
+ ],
+ "x-ms-enum": {
+ "name": "CharFilterName",
+ "modelAsString": false
+ },
+ "description": "Defines the names of all character filters supported by Azure Cognitive Search.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "RegexFlags": {
+ "type": "string",
+ "enum": [
+ "CANON_EQ",
+ "CASE_INSENSITIVE",
+ "COMMENTS",
+ "DOTALL",
+ "LITERAL",
+ "MULTILINE",
+ "UNICODE_CASE",
+ "UNIX_LINES"
+ ],
+ "x-ms-enum": {
+ "name": "RegexFlags",
+ "modelAsString": false
+ },
+ "description": "Defines flags that can be combined to control how regular expressions are used in the pattern analyzer and pattern tokenizer.",
+ "externalDocs": {
+ "url": "http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html#field_summary"
+ }
+ },
+ "DataType": {
+ "type": "string",
+ "enum": [
+ "Edm.String",
+ "Edm.Int32",
+ "Edm.Int64",
+ "Edm.Double",
+ "Edm.Boolean",
+ "Edm.DateTimeOffset",
+ "Edm.GeographyPoint",
+ "Edm.ComplexType"
+ ],
+ "x-ms-enum": {
+ "name": "DataType",
+ "modelAsString": false
+ },
+ "description": "Defines the data type of a field in a search index."
+ },
+ "Analyzer": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference"
+ },
+ "description": "The name of the analyzer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters."
+ }
+ },
+ "required": [
+ "@odata.type",
+ "name"
+ ],
+ "description": "Abstract base class for analyzers."
+ },
+ "CustomAnalyzer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Analyzer"
+ }
+ ],
+ "properties": {
+ "tokenizer": {
+ "$ref": "#/definitions/TokenizerName",
+ "description": "The name of the tokenizer to use to divide continuous text into a sequence of tokens, such as breaking a sentence into words."
+ },
+ "tokenFilters": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/TokenFilterName",
+ "x-nullable": false
+ },
+ "description": "A list of token filters used to filter out or modify the tokens generated by a tokenizer. For example, you can specify a lowercase filter that converts all characters to lowercase. The filters are run in the order in which they are listed."
+ },
+ "charFilters": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/CharFilterName",
+ "x-nullable": false
+ },
+ "description": "A list of character filters used to prepare input text before it is processed by the tokenizer. For instance, they can replace certain characters or symbols. The filters are run in the order in which they are listed."
+ }
+ },
+ "required": [
+ "tokenizer"
+ ],
+ "description": "Allows you to take control over the process of converting text into indexable/searchable tokens. It's a user-defined configuration consisting of a single predefined tokenizer and one or more filters. The tokenizer is responsible for breaking text into tokens, and the filters for modifying tokens emitted by the tokenizer."
+ },
+ "PatternAnalyzer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternAnalyzer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Analyzer"
+ }
+ ],
+ "properties": {
+ "lowercase": {
+ "x-ms-client-name": "LowerCaseTerms",
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether terms should be lower-cased. Default is true."
+ },
+ "pattern": {
+ "type": "string",
+ "default": "\\W+",
+ "description": "A regular expression pattern to match token separators. Default is an expression that matches one or more whitespace characters."
+ },
+ "flags": {
+ "$ref": "#/definitions/RegexFlags",
+ "description": "Regular expression flags."
+ },
+ "stopwords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of stopwords."
+ }
+ },
+ "description": "Flexibly separates text into terms via a regular expression pattern. This analyzer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/PatternAnalyzer.html"
+ }
+ },
+ "StandardAnalyzer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StandardAnalyzer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Analyzer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "maximum": 300,
+ "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters."
+ },
+ "stopwords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of stopwords."
+ }
+ },
+ "description": "Standard Apache Lucene analyzer; Composed of the standard tokenizer, lowercase filter and stop filter.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/StandardAnalyzer.html"
+ }
+ },
+ "StopAnalyzer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StopAnalyzer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Analyzer"
+ }
+ ],
+ "properties": {
+ "stopwords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of stopwords."
+ }
+ },
+ "description": "Divides text at non-letters; Applies the lowercase and stopword token filters. This analyzer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/StopAnalyzer.html"
+ }
+ },
+ "Tokenizer": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference"
+ },
+ "description": "The name of the tokenizer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters."
+ }
+ },
+ "required": [
+ "@odata.type",
+ "name"
+ ],
+ "description": "Abstract base class for tokenizers.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "ClassicTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.ClassicTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "maximum": 300,
+ "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters."
+ }
+ },
+ "description": "Grammar-based tokenizer that is suitable for processing most European-language documents. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/ClassicTokenizer.html"
+ }
+ },
+ "TokenCharacterKind": {
+ "type": "string",
+ "enum": [
+ "letter",
+ "digit",
+ "whitespace",
+ "punctuation",
+ "symbol"
+ ],
+ "x-ms-enum": {
+ "name": "TokenCharacterKind",
+ "modelAsString": false
+ },
+ "description": "Represents classes of characters on which a token filter can operate."
+ },
+ "EdgeNGramTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.EdgeNGramTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "minGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "maximum": 300,
+ "description": "The minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram."
+ },
+ "maxGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "maximum": 300,
+ "description": "The maximum n-gram length. Default is 2. Maximum is 300."
+ },
+ "tokenChars": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/TokenCharacterKind",
+ "x-nullable": false
+ },
+ "description": "Character classes to keep in the tokens."
+ }
+ },
+ "description": "Tokenizes the input from an edge into n-grams of the given size(s). This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "https://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramTokenizer.html"
+ }
+ },
+ "KeywordTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeywordTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "bufferSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 256,
+ "description": "The read buffer size in bytes. Default is 256."
+ }
+ },
+ "description": "Emits the entire input as a single token. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/KeywordTokenizer.html"
+ },
+ "x-ms-external": true
+ },
+ "KeywordTokenizerV2": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeywordTokenizerV2",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 256,
+ "maximum": 300,
+ "description": "The maximum token length. Default is 256. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters."
+ }
+ },
+ "description": "Emits the entire input as a single token. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/KeywordTokenizer.html"
+ }
+ },
+ "MicrosoftTokenizerLanguage": {
+ "type": "string",
+ "enum": [
+ "bangla",
+ "bulgarian",
+ "catalan",
+ "chineseSimplified",
+ "chineseTraditional",
+ "croatian",
+ "czech",
+ "danish",
+ "dutch",
+ "english",
+ "french",
+ "german",
+ "greek",
+ "gujarati",
+ "hindi",
+ "icelandic",
+ "indonesian",
+ "italian",
+ "japanese",
+ "kannada",
+ "korean",
+ "malay",
+ "malayalam",
+ "marathi",
+ "norwegianBokmaal",
+ "polish",
+ "portuguese",
+ "portugueseBrazilian",
+ "punjabi",
+ "romanian",
+ "russian",
+ "serbianCyrillic",
+ "serbianLatin",
+ "slovenian",
+ "spanish",
+ "swedish",
+ "tamil",
+ "telugu",
+ "thai",
+ "ukrainian",
+ "urdu",
+ "vietnamese"
+ ],
+ "x-ms-enum": {
+ "name": "MicrosoftTokenizerLanguage",
+ "modelAsString": false
+ },
+ "description": "Lists the languages supported by the Microsoft language tokenizer."
+ },
+ "MicrosoftLanguageTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.MicrosoftLanguageTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "maximum": 300,
+ "description": "The maximum token length. Tokens longer than the maximum length are split. Maximum token length that can be used is 300 characters. Tokens longer than 300 characters are first split into tokens of length 300 and then each of those tokens is split based on the max token length set. Default is 255."
+ },
+ "isSearchTokenizer": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating how the tokenizer is used. Set to true if used as the search tokenizer, set to false if used as the indexing tokenizer. Default is false."
+ },
+ "language": {
+ "$ref": "#/definitions/MicrosoftTokenizerLanguage",
+ "description": "The language to use. The default is English."
+ }
+ },
+ "description": "Divides text using language-specific rules."
+ },
+ "MicrosoftStemmingTokenizerLanguage": {
+ "type": "string",
+ "enum": [
+ "arabic",
+ "bangla",
+ "bulgarian",
+ "catalan",
+ "croatian",
+ "czech",
+ "danish",
+ "dutch",
+ "english",
+ "estonian",
+ "finnish",
+ "french",
+ "german",
+ "greek",
+ "gujarati",
+ "hebrew",
+ "hindi",
+ "hungarian",
+ "icelandic",
+ "indonesian",
+ "italian",
+ "kannada",
+ "latvian",
+ "lithuanian",
+ "malay",
+ "malayalam",
+ "marathi",
+ "norwegianBokmaal",
+ "polish",
+ "portuguese",
+ "portugueseBrazilian",
+ "punjabi",
+ "romanian",
+ "russian",
+ "serbianCyrillic",
+ "serbianLatin",
+ "slovak",
+ "slovenian",
+ "spanish",
+ "swedish",
+ "tamil",
+ "telugu",
+ "turkish",
+ "ukrainian",
+ "urdu"
+ ],
+ "x-ms-enum": {
+ "name": "MicrosoftStemmingTokenizerLanguage",
+ "modelAsString": false
+ },
+ "description": "Lists the languages supported by the Microsoft language stemming tokenizer."
+ },
+ "MicrosoftLanguageStemmingTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "maximum": 300,
+ "description": "The maximum token length. Tokens longer than the maximum length are split. Maximum token length that can be used is 300 characters. Tokens longer than 300 characters are first split into tokens of length 300 and then each of those tokens is split based on the max token length set. Default is 255."
+ },
+ "isSearchTokenizer": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating how the tokenizer is used. Set to true if used as the search tokenizer, set to false if used as the indexing tokenizer. Default is false."
+ },
+ "language": {
+ "$ref": "#/definitions/MicrosoftStemmingTokenizerLanguage",
+ "description": "The language to use. The default is English."
+ }
+ },
+ "description": "Divides text using language-specific rules and reduces words to their base forms."
+ },
+ "NGramTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.NGramTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "minGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "maximum": 300,
+ "description": "The minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram."
+ },
+ "maxGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "maximum": 300,
+ "description": "The maximum n-gram length. Default is 2. Maximum is 300."
+ },
+ "tokenChars": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/TokenCharacterKind",
+ "x-nullable": false
+ },
+ "description": "Character classes to keep in the tokens."
+ }
+ },
+ "description": "Tokenizes the input into n-grams of the given size(s). This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenizer.html"
+ }
+ },
+ "PathHierarchyTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PathHierarchyTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "delimiter": {
+ "type": "string",
+ "format": "char",
+ "default": "/",
+ "description": "The delimiter character to use. Default is \"/\"."
+ },
+ "replacement": {
+ "type": "string",
+ "format": "char",
+ "default": "/",
+ "description": "A value that, if set, replaces the delimiter character. Default is \"/\"."
+ },
+ "bufferSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1024,
+ "description": "The buffer size. Default is 1024."
+ },
+ "reverse": {
+ "x-ms-client-name": "ReverseTokenOrder",
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to generate tokens in reverse order. Default is false."
+ },
+ "skip": {
+ "x-ms-client-name": "NumberOfTokensToSkip",
+ "type": "integer",
+ "format": "int32",
+ "default": 0,
+ "description": "The number of initial tokens to skip. Default is 0."
+ }
+ },
+ "description": "Tokenizer for path-like hierarchies. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/path/PathHierarchyTokenizer.html"
+ },
+ "x-ms-external": true
+ },
+ "PathHierarchyTokenizerV2": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PathHierarchyTokenizerV2",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "delimiter": {
+ "type": "string",
+ "format": "char",
+ "default": "/",
+ "description": "The delimiter character to use. Default is \"/\"."
+ },
+ "replacement": {
+ "type": "string",
+ "format": "char",
+ "default": "/",
+ "description": "A value that, if set, replaces the delimiter character. Default is \"/\"."
+ },
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 300,
+ "maximum": 300,
+ "description": "The maximum token length. Default and maximum is 300."
+ },
+ "reverse": {
+ "x-ms-client-name": "ReverseTokenOrder",
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to generate tokens in reverse order. Default is false."
+ },
+ "skip": {
+ "x-ms-client-name": "NumberOfTokensToSkip",
+ "type": "integer",
+ "format": "int32",
+ "default": 0,
+ "description": "The number of initial tokens to skip. Default is 0."
+ }
+ },
+ "description": "Tokenizer for path-like hierarchies. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/path/PathHierarchyTokenizer.html"
+ }
+ },
+ "PatternTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "pattern": {
+ "type": "string",
+ "default": "\\W+",
+ "description": "A regular expression pattern to match token separators. Default is an expression that matches one or more whitespace characters."
+ },
+ "flags": {
+ "$ref": "#/definitions/RegexFlags",
+ "description": "Regular expression flags."
+ },
+ "group": {
+ "type": "integer",
+ "format": "int32",
+ "default": -1,
+ "description": "The zero-based ordinal of the matching group in the regular expression pattern to extract into tokens. Use -1 if you want to use the entire pattern to split the input into tokens, irrespective of matching groups. Default is -1."
+ }
+ },
+ "description": "Tokenizer that uses regex pattern matching to construct distinct tokens. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternTokenizer.html"
+ }
+ },
+ "StandardTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StandardTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split."
+ }
+ },
+ "description": "Breaks text following the Unicode Text Segmentation rules. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/StandardTokenizer.html"
+ },
+ "x-ms-external": true
+ },
+ "StandardTokenizerV2": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StandardTokenizerV2",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "maximum": 300,
+ "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters."
+ }
+ },
+ "description": "Breaks text following the Unicode Text Segmentation rules. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/StandardTokenizer.html"
+ }
+ },
+ "UaxUrlEmailTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.UaxUrlEmailTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "maximum": 300,
+ "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters."
+ }
+ },
+ "description": "Tokenizes urls and emails as one token. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/UAX29URLEmailTokenizer.html"
+ }
+ },
+ "TokenFilter": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference"
+ },
+ "description": "The name of the token filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters."
+ }
+ },
+ "required": [
+ "@odata.type",
+ "name"
+ ],
+ "description": "Abstract base class for token filters.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "AsciiFoldingTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.AsciiFoldingTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "preserveOriginal": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether the original token will be kept. Default is false."
+ }
+ },
+ "description": "Converts alphabetic, numeric, and symbolic Unicode characters which are not in the first 127 ASCII characters (the \"Basic Latin\" Unicode block) into their ASCII equivalents, if such equivalents exist. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/ASCIIFoldingFilter.html"
+ }
+ },
+ "CjkBigramTokenFilterScripts": {
+ "type": "string",
+ "enum": [
+ "han",
+ "hiragana",
+ "katakana",
+ "hangul"
+ ],
+ "x-ms-enum": {
+ "name": "CjkBigramTokenFilterScripts",
+ "modelAsString": false
+ },
+ "description": "Scripts that can be ignored by CjkBigramTokenFilter."
+ },
+ "CjkBigramTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.CjkBigramTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "ignoreScripts": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/CjkBigramTokenFilterScripts",
+ "x-nullable": false
+ },
+ "description": "The scripts to ignore."
+ },
+ "outputUnigrams": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to output both unigrams and bigrams (if true), or just bigrams (if false). Default is false."
+ }
+ },
+ "description": "Forms bigrams of CJK terms that are generated from StandardTokenizer. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/cjk/CJKBigramFilter.html"
+ }
+ },
+ "CommonGramTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.CommonGramTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "commonWords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The set of common words."
+ },
+ "ignoreCase": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether common words matching will be case insensitive. Default is false."
+ },
+ "queryMode": {
+ "x-ms-client-name": "UseQueryMode",
+ "type": "boolean",
+ "default": false,
+ "description": "A value that indicates whether the token filter is in query mode. When in query mode, the token filter generates bigrams and then removes common words and single terms followed by a common word. Default is false."
+ }
+ },
+ "required": [
+ "commonWords"
+ ],
+ "description": "Construct bigrams for frequently occurring terms while indexing. Single terms are still indexed too, with bigrams overlaid. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/commongrams/CommonGramsFilter.html"
+ }
+ },
+ "DictionaryDecompounderTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.DictionaryDecompounderTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "wordList": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of words to match against."
+ },
+ "minWordSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 5,
+ "maximum": 300,
+ "description": "The minimum word size. Only words longer than this get processed. Default is 5. Maximum is 300."
+ },
+ "minSubwordSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "maximum": 300,
+ "description": "The minimum subword size. Only subwords longer than this are outputted. Default is 2. Maximum is 300."
+ },
+ "maxSubwordSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 15,
+ "maximum": 300,
+ "description": "The maximum subword size. Only subwords shorter than this are outputted. Default is 15. Maximum is 300."
+ },
+ "onlyLongestMatch": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to add only the longest matching subword to the output. Default is false."
+ }
+ },
+ "required": [
+ "wordList"
+ ],
+ "description": "Decomposes compound words found in many Germanic languages. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/compound/DictionaryCompoundWordTokenFilter.html"
+ }
+ },
+ "EdgeNGramTokenFilterSide": {
+ "type": "string",
+ "enum": [
+ "front",
+ "back"
+ ],
+ "x-ms-enum": {
+ "name": "EdgeNGramTokenFilterSide",
+ "modelAsString": false
+ },
+ "description": "Specifies which side of the input an n-gram should be generated from."
+ },
+ "EdgeNGramTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.EdgeNGramTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "minGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "description": "The minimum n-gram length. Default is 1. Must be less than the value of maxGram."
+ },
+ "maxGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "description": "The maximum n-gram length. Default is 2."
+ },
+ "side": {
+ "$ref": "#/definitions/EdgeNGramTokenFilterSide",
+ "default": "front",
+ "description": "Specifies which side of the input the n-gram should be generated from. Default is \"front\"."
+ }
+ },
+ "description": "Generates n-grams of the given size(s) starting from the front or the back of an input token. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramTokenFilter.html"
+ },
+ "x-ms-external": true
+ },
+ "EdgeNGramTokenFilterV2": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.EdgeNGramTokenFilterV2",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "minGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "maximum": 300,
+ "description": "The minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram."
+ },
+ "maxGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "maximum": 300,
+ "description": "The maximum n-gram length. Default is 2. Maximum is 300."
+ },
+ "side": {
+ "$ref": "#/definitions/EdgeNGramTokenFilterSide",
+ "default": "front",
+ "description": "Specifies which side of the input the n-gram should be generated from. Default is \"front\"."
+ }
+ },
+ "description": "Generates n-grams of the given size(s) starting from the front or the back of an input token. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramTokenFilter.html"
+ }
+ },
+ "ElisionTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.ElisionTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "articles": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The set of articles to remove."
+ }
+ },
+ "description": "Removes elisions. For example, \"l'avion\" (the plane) will be converted to \"avion\" (plane). This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/util/ElisionFilter.html"
+ }
+ },
+ "KeepTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeepTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "keepWords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of words to keep."
+ },
+ "keepWordsCase": {
+ "x-ms-client-name": "LowerCaseKeepWords",
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to lower case all words first. Default is false."
+ }
+ },
+ "required": [
+ "keepWords"
+ ],
+ "description": "A token filter that only keeps tokens with text contained in a specified list of words. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/KeepWordFilter.html"
+ }
+ },
+ "KeywordMarkerTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeywordMarkerTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "keywords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of words to mark as keywords."
+ },
+ "ignoreCase": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to ignore case. If true, all words are converted to lower case first. Default is false."
+ }
+ },
+ "required": [
+ "keywords"
+ ],
+ "description": "Marks terms as keywords. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/KeywordMarkerFilter.html"
+ }
+ },
+ "LengthTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.LengthTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "min": {
+ "type": "integer",
+ "format": "int32",
+ "default": 0,
+ "maximum": 300,
+ "description": "The minimum length in characters. Default is 0. Maximum is 300. Must be less than the value of max."
+ },
+ "max": {
+ "type": "integer",
+ "format": "int32",
+ "default": 300,
+ "maximum": 300,
+ "description": "The maximum length in characters. Default and maximum is 300."
+ }
+ },
+ "description": "Removes words that are too long or too short. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/LengthFilter.html"
+ }
+ },
+ "LimitTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.LimitTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "maxTokenCount": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "description": "The maximum number of tokens to produce. Default is 1."
+ },
+ "consumeAllTokens": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether all tokens from the input must be consumed even if maxTokenCount is reached. Default is false."
+ }
+ },
+ "description": "Limits the number of tokens while indexing. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/LimitTokenCountFilter.html"
+ }
+ },
+ "NGramTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.NGramTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "minGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "description": "The minimum n-gram length. Default is 1. Must be less than the value of maxGram."
+ },
+ "maxGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "description": "The maximum n-gram length. Default is 2."
+ }
+ },
+ "description": "Generates n-grams of the given size(s). This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenFilter.html"
+ },
+ "x-ms-external": true
+ },
+ "NGramTokenFilterV2": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.NGramTokenFilterV2",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "minGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "maximum": 300,
+ "description": "The minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram."
+ },
+ "maxGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "maximum": 300,
+ "description": "The maximum n-gram length. Default is 2. Maximum is 300."
+ }
+ },
+ "description": "Generates n-grams of the given size(s). This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenFilter.html"
+ }
+ },
+ "PatternCaptureTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternCaptureTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "patterns": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of patterns to match against each token."
+ },
+ "preserveOriginal": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to return the original token even if one of the patterns matches. Default is true."
+ }
+ },
+ "required": [
+ "patterns"
+ ],
+ "description": "Uses Java regexes to emit multiple tokens - one for each capture group in one or more patterns. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternCaptureGroupTokenFilter.html"
+ }
+ },
+ "PatternReplaceTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternReplaceTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "pattern": {
+ "type": "string",
+ "description": "A regular expression pattern."
+ },
+ "replacement": {
+ "type": "string",
+ "description": "The replacement text."
+ }
+ },
+ "required": [
+ "pattern",
+ "replacement"
+ ],
+ "description": "A character filter that replaces characters in the input string. It uses a regular expression to identify character sequences to preserve and a replacement pattern to identify characters to replace. For example, given the input text \"aa bb aa bb\", pattern \"(aa)\\s+(bb)\", and replacement \"$1#$2\", the result would be \"aa#bb aa#bb\". This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternReplaceFilter.html"
+ }
+ },
+ "PhoneticEncoder": {
+ "type": "string",
+ "enum": [
+ "metaphone",
+ "doubleMetaphone",
+ "soundex",
+ "refinedSoundex",
+ "caverphone1",
+ "caverphone2",
+ "cologne",
+ "nysiis",
+ "koelnerPhonetik",
+ "haasePhonetik",
+ "beiderMorse"
+ ],
+ "x-ms-enum": {
+ "name": "PhoneticEncoder",
+ "modelAsString": false
+ },
+ "description": "Identifies the type of phonetic encoder to use with a PhoneticTokenFilter."
+ },
+ "PhoneticTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PhoneticTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "encoder": {
+ "$ref": "#/definitions/PhoneticEncoder",
+ "default": "metaphone",
+ "description": "The phonetic encoder to use. Default is \"metaphone\"."
+ },
+ "replace": {
+ "x-ms-client-name": "ReplaceOriginalTokens",
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether encoded tokens should replace original tokens. If false, encoded tokens are added as synonyms. Default is true."
+ }
+ },
+ "description": "Create tokens for phonetic matches. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "https://lucene.apache.org/core/4_10_3/analyzers-phonetic/org/apache/lucene/analysis/phonetic/package-tree.html"
+ }
+ },
+ "ShingleTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.ShingleTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "maxShingleSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "minimum": 2,
+ "description": "The maximum shingle size. Default and minimum value is 2."
+ },
+ "minShingleSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "minimum": 2,
+ "description": "The minimum shingle size. Default and minimum value is 2. Must be less than the value of maxShingleSize."
+ },
+ "outputUnigrams": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether the output stream will contain the input tokens (unigrams) as well as shingles. Default is true."
+ },
+ "outputUnigramsIfNoShingles": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to output unigrams for those times when no shingles are available. This property takes precedence when outputUnigrams is set to false. Default is false."
+ },
+ "tokenSeparator": {
+ "type": "string",
+ "default": " ",
+ "description": "The string to use when joining adjacent tokens to form a shingle. Default is a single space (\" \")."
+ },
+ "filterToken": {
+ "type": "string",
+ "default": "_",
+ "description": "The string to insert for each position at which there is no token. Default is an underscore (\"_\")."
+ }
+ },
+ "description": "Creates combinations of tokens as a single token. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/shingle/ShingleFilter.html"
+ }
+ },
+ "SnowballTokenFilterLanguage": {
+ "type": "string",
+ "enum": [
+ "armenian",
+ "basque",
+ "catalan",
+ "danish",
+ "dutch",
+ "english",
+ "finnish",
+ "french",
+ "german",
+ "german2",
+ "hungarian",
+ "italian",
+ "kp",
+ "lovins",
+ "norwegian",
+ "porter",
+ "portuguese",
+ "romanian",
+ "russian",
+ "spanish",
+ "swedish",
+ "turkish"
+ ],
+ "x-ms-enum": {
+ "name": "SnowballTokenFilterLanguage",
+ "modelAsString": false
+ },
+ "description": "The language to use for a Snowball token filter."
+ },
+ "SnowballTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.SnowballTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "language": {
+ "$ref": "#/definitions/SnowballTokenFilterLanguage",
+ "description": "The language to use."
+ }
+ },
+ "required": [
+ "language"
+ ],
+ "description": "A filter that stems words using a Snowball-generated stemmer. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/snowball/SnowballFilter.html"
+ }
+ },
+ "StemmerTokenFilterLanguage": {
+ "type": "string",
+ "enum": [
+ "arabic",
+ "armenian",
+ "basque",
+ "brazilian",
+ "bulgarian",
+ "catalan",
+ "czech",
+ "danish",
+ "dutch",
+ "dutchKp",
+ "english",
+ "lightEnglish",
+ "minimalEnglish",
+ "possessiveEnglish",
+ "porter2",
+ "lovins",
+ "finnish",
+ "lightFinnish",
+ "french",
+ "lightFrench",
+ "minimalFrench",
+ "galician",
+ "minimalGalician",
+ "german",
+ "german2",
+ "lightGerman",
+ "minimalGerman",
+ "greek",
+ "hindi",
+ "hungarian",
+ "lightHungarian",
+ "indonesian",
+ "irish",
+ "italian",
+ "lightItalian",
+ "sorani",
+ "latvian",
+ "norwegian",
+ "lightNorwegian",
+ "minimalNorwegian",
+ "lightNynorsk",
+ "minimalNynorsk",
+ "portuguese",
+ "lightPortuguese",
+ "minimalPortuguese",
+ "portugueseRslp",
+ "romanian",
+ "russian",
+ "lightRussian",
+ "spanish",
+ "lightSpanish",
+ "swedish",
+ "lightSwedish",
+ "turkish"
+ ],
+ "x-ms-enum": {
+ "name": "StemmerTokenFilterLanguage",
+ "modelAsString": false
+ },
+ "description": "The language to use for a stemmer token filter."
+ },
+ "StemmerTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StemmerTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "language": {
+ "$ref": "#/definitions/StemmerTokenFilterLanguage",
+ "description": "The language to use."
+ }
+ },
+ "required": [
+ "language"
+ ],
+ "description": "Language specific stemming filter. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search#TokenFilters"
+ }
+ },
+ "StemmerOverrideTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StemmerOverrideTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "rules": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of stemming rules in the following format: \"word => stem\", for example: \"ran => run\"."
+ }
+ },
+ "required": [
+ "rules"
+ ],
+ "description": "Provides the ability to override other stemming filters with custom dictionary-based stemming. Any dictionary-stemmed terms will be marked as keywords so that they will not be stemmed with stemmers down the chain. Must be placed before any stemming filters. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/StemmerOverrideFilter.html"
+ }
+ },
+ "StopwordsList": {
+ "type": "string",
+ "enum": [
+ "arabic",
+ "armenian",
+ "basque",
+ "brazilian",
+ "bulgarian",
+ "catalan",
+ "czech",
+ "danish",
+ "dutch",
+ "english",
+ "finnish",
+ "french",
+ "galician",
+ "german",
+ "greek",
+ "hindi",
+ "hungarian",
+ "indonesian",
+ "irish",
+ "italian",
+ "latvian",
+ "norwegian",
+ "persian",
+ "portuguese",
+ "romanian",
+ "russian",
+ "sorani",
+ "spanish",
+ "swedish",
+ "thai",
+ "turkish"
+ ],
+ "x-ms-enum": {
+ "name": "StopwordsList",
+ "modelAsString": false
+ },
+ "description": "Identifies a predefined list of language-specific stopwords."
+ },
+ "StopwordsTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StopwordsTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "stopwords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of stopwords. This property and the stopwords list property cannot both be set."
+ },
+ "stopwordsList": {
+ "$ref": "#/definitions/StopwordsList",
+ "default": "english",
+ "description": "A predefined list of stopwords to use. This property and the stopwords property cannot both be set. Default is English."
+ },
+ "ignoreCase": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to ignore case. If true, all words are converted to lower case first. Default is false."
+ },
+ "removeTrailing": {
+ "x-ms-client-name": "RemoveTrailingStopWords",
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to ignore the last search term if it's a stop word. Default is true."
+ }
+ },
+ "description": "Removes stop words from a token stream. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/StopFilter.html"
+ }
+ },
+ "SynonymTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.SynonymTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "synonyms": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of synonyms in following one of two formats: 1. incredible, unbelievable, fabulous => amazing - all terms on the left side of => symbol will be replaced with all terms on its right side; 2. incredible, unbelievable, fabulous, amazing - comma separated list of equivalent words. Set the expand option to change how this list is interpreted."
+ },
+ "ignoreCase": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to case-fold input for matching. Default is false."
+ },
+ "expand": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether all words in the list of synonyms (if => notation is not used) will map to one another. If true, all words in the list of synonyms (if => notation is not used) will map to one another. The following list: incredible, unbelievable, fabulous, amazing is equivalent to: incredible, unbelievable, fabulous, amazing => incredible, unbelievable, fabulous, amazing. If false, the following list: incredible, unbelievable, fabulous, amazing will be equivalent to: incredible, unbelievable, fabulous, amazing => incredible. Default is true."
+ }
+ },
+ "required": [
+ "synonyms"
+ ],
+ "description": "Matches single or multi-word synonyms in a token stream. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/synonym/SynonymFilter.html"
+ }
+ },
+ "TruncateTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.TruncateTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "length": {
+ "type": "integer",
+ "format": "int32",
+ "default": 300,
+ "maximum": 300,
+ "description": "The length at which terms will be truncated. Default and maximum is 300."
+ }
+ },
+ "description": "Truncates the terms to a specific length. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/TruncateTokenFilter.html"
+ }
+ },
+ "UniqueTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.UniqueTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "onlyOnSamePosition": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to remove duplicates only at the same position. Default is false."
+ }
+ },
+ "description": "Filters out tokens with same text as the previous token. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/RemoveDuplicatesTokenFilter.html"
+ }
+ },
+ "WordDelimiterTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.WordDelimiterTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "generateWordParts": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to generate part words. If set, causes parts of words to be generated; for example \"AzureSearch\" becomes \"Azure\" \"Search\". Default is true."
+ },
+ "generateNumberParts": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to generate number subwords. Default is true."
+ },
+ "catenateWords": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether maximum runs of word parts will be catenated. For example, if this is set to true, \"Azure-Search\" becomes \"AzureSearch\". Default is false."
+ },
+ "catenateNumbers": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether maximum runs of number parts will be catenated. For example, if this is set to true, \"1-2\" becomes \"12\". Default is false."
+ },
+ "catenateAll": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether all subword parts will be catenated. For example, if this is set to true, \"Azure-Search-1\" becomes \"AzureSearch1\". Default is false."
+ },
+ "splitOnCaseChange": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to split words on caseChange. For example, if this is set to true, \"AzureSearch\" becomes \"Azure\" \"Search\". Default is true."
+ },
+ "preserveOriginal": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether original words will be preserved and added to the subword list. Default is false."
+ },
+ "splitOnNumerics": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to split on numbers. For example, if this is set to true, \"Azure1Search\" becomes \"Azure\" \"1\" \"Search\". Default is true."
+ },
+ "stemEnglishPossessive": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to remove trailing \"'s\" for each subword. Default is true."
+ },
+ "protectedWords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of tokens to protect from being delimited."
+ }
+ },
+ "description": "Splits words into subwords and performs optional transformations on subword groups. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/WordDelimiterFilter.html"
+ }
+ },
+ "CharFilter": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference"
+ },
+ "description": "The name of the char filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters."
+ }
+ },
+ "required": [
+ "@odata.type",
+ "name"
+ ],
+ "description": "Abstract base class for character filters.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "MappingCharFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.MappingCharFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/CharFilter"
+ }
+ ],
+ "properties": {
+ "mappings": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of mappings of the following format: \"a=>b\" (all occurrences of the character \"a\" will be replaced with character \"b\")."
+ }
+ },
+ "required": [
+ "mappings"
+ ],
+ "description": "A character filter that applies mappings defined with the mappings option. Matching is greedy (longest pattern matching at a given point wins). Replacement is allowed to be the empty string. This character filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "https://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/charfilter/MappingCharFilter.html"
+ }
+ },
+ "PatternReplaceCharFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternReplaceCharFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/CharFilter"
+ }
+ ],
+ "properties": {
+ "pattern": {
+ "type": "string",
+ "description": "A regular expression pattern."
+ },
+ "replacement": {
+ "type": "string",
+ "description": "The replacement text."
+ }
+ },
+ "required": [
+ "pattern",
+ "replacement"
+ ],
+ "description": "A character filter that replaces characters in the input string. It uses a regular expression to identify character sequences to preserve and a replacement pattern to identify characters to replace. For example, given the input text \"aa bb aa bb\", pattern \"(aa)\\s+(bb)\", and replacement \"$1#$2\", the result would be \"aa#bb aa#bb\". This character filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "https://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternReplaceCharFilter.html"
+ }
+ },
+ "DataSourceCredentials": {
+ "properties": {
+ "connectionString": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Data-Source"
+ },
+ "type": "string",
+ "description": "The connection string for the datasource."
+ }
+ },
+ "description": "Represents credentials that can be used to connect to a datasource."
+ },
+ "DataContainer": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the table or view (for Azure SQL data source) or collection (for DocumentDB data source) that will be indexed."
+ },
+ "query": {
+ "type": "string",
+ "description": "A query that is applied to this data container. The syntax and meaning of this parameter is datasource-specific. Not supported by Azure SQL datasources."
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "description": "Represents information about the entity (such as Azure SQL table or DocumentDb collection) that will be indexed."
+ },
+ "DataChangeDetectionPolicy": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "@odata.type"
+ ],
+ "description": "Abstract base class for data change detection policies."
+ },
+ "HighWaterMarkChangeDetectionPolicy": {
+ "description": "Defines a data change detection policy that captures changes based on the value of a high water mark column.",
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "allOf": [
+ {
+ "$ref": "#/definitions/DataChangeDetectionPolicy"
+ }
+ ],
+ "properties": {
+ "highWaterMarkColumnName": {
+ "type": "string",
+ "description": "The name of the high water mark column."
+ }
+ },
+ "required": [
+ "highWaterMarkColumnName"
+ ]
+ },
+ "SqlIntegratedChangeTrackingPolicy": {
+ "description": "Defines a data change detection policy that captures changes using the Integrated Change Tracking feature of Azure SQL Database.",
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.SqlIntegratedChangeTrackingPolicy",
+ "allOf": [
+ {
+ "$ref": "#/definitions/DataChangeDetectionPolicy"
+ }
+ ]
+ },
+ "DataDeletionDetectionPolicy": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "@odata.type"
+ ],
+ "description": "Abstract base class for data deletion detection policies."
+ },
+ "SoftDeleteColumnDeletionDetectionPolicy": {
+ "description": "Defines a data deletion detection policy that implements a soft-deletion strategy. It determines whether an item should be deleted based on the value of a designated 'soft delete' column.",
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "allOf": [
+ {
+ "$ref": "#/definitions/DataDeletionDetectionPolicy"
+ }
+ ],
+ "properties": {
+ "softDeleteColumnName": {
+ "type": "string",
+ "description": "The name of the column to use for soft-deletion detection."
+ },
+ "softDeleteMarkerValue": {
+ "type": "string",
+ "description": "The marker value that identifies an item as deleted."
+ }
+ }
+ },
+ "DataSourceType": {
+ "type": "string",
+ "enum": [
+ "azuresql",
+ "cosmosdb",
+ "azureblob",
+ "azuretable"
+ ],
+ "x-ms-enum": {
+ "name": "DataSourceType",
+ "modelAsString": false
+ },
+ "description": "Defines the type of a datasource."
+ },
+ "DataSource": {
+ "properties": {
+ "name": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules"
+ },
+ "type": "string",
+ "description": "The name of the datasource."
+ },
+ "description": {
+ "type": "string",
+ "description": "The description of the datasource."
+ },
+ "type": {
+ "$ref": "#/definitions/DataSourceType",
+ "description": "The type of the datasource."
+ },
+ "credentials": {
+ "$ref": "#/definitions/DataSourceCredentials",
+ "description": "Credentials for the datasource."
+ },
+ "container": {
+ "$ref": "#/definitions/DataContainer",
+ "description": "The data container for the datasource."
+ },
+ "dataChangeDetectionPolicy": {
+ "$ref": "#/definitions/DataChangeDetectionPolicy",
+ "description": "The data change detection policy for the datasource."
+ },
+ "dataDeletionDetectionPolicy": {
+ "$ref": "#/definitions/DataDeletionDetectionPolicy",
+ "description": "The data deletion detection policy for the datasource."
+ },
+ "@odata.etag": {
+ "x-ms-client-name": "ETag",
+ "type": "string",
+ "description": "The ETag of the DataSource."
+ }
+ },
+ "required": [
+ "name",
+ "type",
+ "credentials",
+ "container"
+ ],
+ "description": "Represents a datasource definition, which can be used to configure an indexer."
+ },
+ "DataSourceListResult": {
+ "properties": {
+ "value": {
+ "x-ms-client-name": "DataSources",
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/DataSource"
+ },
+ "description": "The datasources in the Search service."
+ }
+ },
+ "description": "Response from a List Datasources request. If successful, it includes the full definitions of all datasources."
+ },
+ "IndexingSchedule": {
+ "properties": {
+ "interval": {
+ "type": "string",
+ "format": "duration",
+ "description": "The interval of time between indexer executions."
+ },
+ "startTime": {
+ "type": "string",
+ "format": "date-time",
+ "description": "The time when an indexer should start running."
+ }
+ },
+ "required": [
+ "interval"
+ ],
+ "description": "Represents a schedule for indexer execution."
+ },
+ "IndexingParameters": {
+ "properties": {
+ "batchSize": {
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of items that are read from the data source and indexed as a single batch in order to improve performance. The default depends on the data source type."
+ },
+ "maxFailedItems": {
+ "type": "integer",
+ "format": "int32",
+ "default": 0,
+ "description": "The maximum number of items that can fail indexing for indexer execution to still be considered successful. -1 means no limit. Default is 0."
+ },
+ "maxFailedItemsPerBatch": {
+ "type": "integer",
+ "format": "int32",
+ "default": 0,
+ "description": "The maximum number of items in a single batch that can fail indexing for the batch to still be considered successful. -1 means no limit. Default is 0."
+ },
+ "base64EncodeKeys": {
+ "type": "boolean",
+ "default": false,
+ "description": "Whether indexer will base64-encode all values that are inserted into key field of the target index. This is needed if keys can contain characters that are invalid in keys (such as dot '.'). Default is false."
+ },
+ "configuration": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "object"
+ },
+ "description": "A dictionary of indexer-specific configuration properties. Each name is the name of a specific property. Each value must be of a primitive type."
+ }
+ },
+ "description": "Represents parameters for indexer execution.",
+ "x-ms-external": true
+ },
+ "FieldMappingFunction": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the field mapping function."
+ },
+ "parameters": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "object"
+ },
+ "description": "A dictionary of parameter name/value pairs to pass to the function. Each value must be of a primitive type."
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "description": "Represents a function that transforms a value from a data source before indexing.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/search-indexer-field-mappings"
+ }
+ },
+ "FieldMapping": {
+ "properties": {
+ "sourceFieldName": {
+ "type": "string",
+ "description": "The name of the field in the data source."
+ },
+ "targetFieldName": {
+ "type": "string",
+ "description": "The name of the target field in the index. Same as the source field name by default."
+ },
+ "mappingFunction": {
+ "$ref": "#/definitions/FieldMappingFunction",
+ "description": "A function to apply to each source field value before indexing."
+ }
+ },
+ "required": [
+ "sourceFieldName"
+ ],
+ "description": "Defines a mapping between a field in a data source and a target field in an index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/search-indexer-field-mappings"
+ }
+ },
+ "Indexer": {
+ "properties": {
+ "name": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules"
+ },
+ "type": "string",
+ "description": "The name of the indexer."
+ },
+ "description": {
+ "type": "string",
+ "description": "The description of the indexer."
+ },
+ "dataSourceName": {
+ "type": "string",
+ "description": "The name of the datasource from which this indexer reads data."
+ },
+ "skillsetName": {
+ "type": "string",
+ "description": "The name of the skillset executing with this indexer."
+ },
+ "targetIndexName": {
+ "type": "string",
+ "description": "The name of the index to which this indexer writes data."
+ },
+ "schedule": {
+ "$ref": "#/definitions/IndexingSchedule",
+ "description": "The schedule for this indexer."
+ },
+ "parameters": {
+ "$ref": "#/definitions/IndexingParameters",
+ "description": "Parameters for indexer execution."
+ },
+ "fieldMappings": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/FieldMapping"
+ },
+ "description": "Defines mappings between fields in the data source and corresponding target fields in the index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/search-indexer-field-mappings"
+ }
+ },
+ "outputFieldMappings": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/FieldMapping"
+ },
+ "description": "Output field mappings are applied after enrichment and immediately before indexing.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/search-indexer-field-mappings"
+ }
+ },
+ "disabled": {
+ "x-ms-client-name": "IsDisabled",
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether the indexer is disabled. Default is false."
+ },
+ "@odata.etag": {
+ "x-ms-client-name": "ETag",
+ "type": "string",
+ "description": "The ETag of the Indexer."
+ }
+ },
+ "required": [
+ "name",
+ "dataSourceName",
+ "targetIndexName"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Indexer-operations"
+ },
+ "description": "Represents an indexer."
+ },
+ "IndexerListResult": {
+ "properties": {
+ "value": {
+ "x-ms-client-name": "Indexers",
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/Indexer"
+ },
+ "description": "The indexers in the Search service."
+ }
+ },
+ "description": "Response from a List Indexers request. If successful, it includes the full definitions of all indexers."
+ },
+ "ItemError": {
+ "properties": {
+ "key": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The key of the item for which indexing failed."
+ },
+ "errorMessage": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The message describing the error that occurred while processing the item."
+ },
+ "statusCode": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "The status code indicating why the indexing operation failed. Possible values include: 400 for a malformed input document, 404 for document not found, 409 for a version conflict, 422 when the index is temporarily unavailable, or 503 for when the service is too busy."
+ },
+ "name": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The name of the source at which the error originated. For example, this could refer to a particular skill in the attached skillset. This may not be always available."
+ },
+ "details": {
+ "type": "string",
+ "readOnly": true,
+ "description": "Additional, verbose details about the error to assist in debugging the indexer. This may not be always available."
+ },
+ "documentationLink": {
+ "type": "string",
+ "readOnly": true,
+ "description": "A link to a troubleshooting guide for these classes of errors. This may not be always available."
+ }
+ },
+ "description": "Represents an item- or document-level indexing error."
+ },
+ "ItemWarning": {
+ "properties": {
+ "key": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The key of the item which generated a warning."
+ },
+ "message": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The message describing the warning that occurred while processing the item."
+ },
+ "name": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The name of the source at which the warning originated. For example, this could refer to a particular skill in the attached skillset. This may not be always available."
+ },
+ "details": {
+ "type": "string",
+ "readOnly": true,
+ "description": "Additional, verbose details about the warning to assist in debugging the indexer. This may not be always available."
+ },
+ "documentationLink": {
+ "type": "string",
+ "readOnly": true,
+ "description": "A link to a troubleshooting guide for these classes of warnings. This may not be always available."
+ }
+ },
+ "description": "Represents an item-level warning."
+ },
+ "IndexerExecutionResult": {
+ "properties": {
+ "status": {
+ "$ref": "#/definitions/IndexerExecutionStatus",
+ "readOnly": true,
+ "description": "The outcome of this indexer execution."
+ },
+ "errorMessage": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The error message indicating the top-level error, if any."
+ },
+ "startTime": {
+ "type": "string",
+ "format": "date-time",
+ "readOnly": true,
+ "description": "The start time of this indexer execution."
+ },
+ "endTime": {
+ "type": "string",
+ "format": "date-time",
+ "readOnly": true,
+ "description": "The end time of this indexer execution, if the execution has already completed."
+ },
+ "errors": {
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/ItemError"
+ },
+ "description": "The item-level indexing errors."
+ },
+ "warnings": {
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/ItemWarning"
+ },
+ "description": "The item-level indexing warnings."
+ },
+ "itemsProcessed": {
+ "x-ms-client-name": "ItemCount",
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "The number of items that were processed during this indexer execution. This includes both successfully processed items and items where indexing was attempted but failed."
+ },
+ "itemsFailed": {
+ "x-ms-client-name": "FailedItemCount",
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "The number of items that failed to be indexed during this indexer execution."
+ },
+ "initialTrackingState": {
+ "type": "string",
+ "readOnly": true,
+ "description": "Change tracking state with which an indexer execution started."
+ },
+ "finalTrackingState": {
+ "type": "string",
+ "readOnly": true,
+ "description": "Change tracking state with which an indexer execution finished."
+ }
+ },
+ "description": "Represents the result of an individual indexer execution."
+ },
+ "IndexerExecutionStatus": {
+ "type": "string",
+ "enum": [
+ "transientFailure",
+ "success",
+ "inProgress",
+ "reset"
+ ],
+ "x-ms-enum": {
+ "name": "IndexerExecutionStatus"
+ },
+ "x-nullable": false,
+ "description": "Represents the status of an individual indexer execution."
+ },
+ "IndexerExecutionInfo": {
+ "properties": {
+ "status": {
+ "$ref": "#/definitions/IndexerStatus",
+ "readOnly": true,
+ "description": "Overall indexer status."
+ },
+ "lastResult": {
+ "$ref": "#/definitions/IndexerExecutionResult",
+ "readOnly": true,
+ "description": "The result of the most recent or an in-progress indexer execution."
+ },
+ "executionHistory": {
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/IndexerExecutionResult"
+ },
+ "description": "History of the recent indexer executions, sorted in reverse chronological order."
+ },
+ "limits": {
+ "$ref": "#/definitions/IndexerLimits",
+ "readOnly": true,
+ "description": "The execution limits for the indexer."
+ }
+ },
+ "description": "Represents the current status and execution history of an indexer."
+ },
+ "IndexerStatus": {
+ "type": "string",
+ "enum": [
+ "unknown",
+ "error",
+ "running"
+ ],
+ "x-ms-enum": {
+ "name": "IndexerStatus"
+ },
+ "x-nullable": false,
+ "description": "Represents the overall indexer status."
+ },
+ "IndexerLimits": {
+ "properties": {
+ "maxRunTime": {
+ "type": "string",
+ "format": "duration",
+ "readOnly": true,
+ "description": "The maximum duration that the indexer is permitted to run for one execution."
+ },
+ "maxDocumentExtractionSize": {
+ "type": "number",
+ "format": "int64",
+ "readOnly": true,
+ "description": "The maximum size of a document, in bytes, which will be considered valid for indexing."
+ },
+ "maxDocumentContentCharactersToExtract": {
+ "type": "number",
+ "format": "int64",
+ "readOnly": true,
+ "description": "The maximum number of characters that will be extracted from a document picked up for indexing."
+ }
+ }
+ },
+ "Field": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the field, which must be unique within the fields collection of the index or parent field.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules"
+ }
+ },
+ "type": {
+ "$ref": "#/definitions/DataType",
+ "description": "The data type of the field.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/supported-data-types"
+ }
+ },
+ "key": {
+ "type": "boolean",
+ "description": "A value indicating whether the field uniquely identifies documents in the index. Exactly one top-level field in each index must be chosen as the key field and it must be of type Edm.String. Key fields can be used to look up documents directly and update or delete specific documents. Default is false for simple fields and null for complex fields."
+ },
+ "retrievable": {
+ "type": "boolean",
+ "description": "A value indicating whether the field can be returned in a search result. You can disable this option if you want to use a field (for example, margin) as a filter, sorting, or scoring mechanism but do not want the field to be visible to the end user. This property must be true for key fields, and it must be null for complex fields. This property can be changed on existing fields. Enabling this property does not cause any increase in index storage requirements. Default is true for simple fields and null for complex fields."
+ },
+ "searchable": {
+ "type": "boolean",
+ "description": "A value indicating whether the field is full-text searchable. This means it will undergo analysis such as word-breaking during indexing. If you set a searchable field to a value like \"sunny day\", internally it will be split into the individual tokens \"sunny\" and \"day\". This enables full-text searches for these terms. Fields of type Edm.String or Collection(Edm.String) are searchable by default. This property must be false for simple fields of other non-string data types, and it must be null for complex fields. Note: searchable fields consume extra space in your index since Azure Cognitive Search will store an additional tokenized version of the field value for full-text searches. If you want to save space in your index and you don't need a field to be included in searches, set searchable to false."
+ },
+ "filterable": {
+ "type": "boolean",
+ "description": "A value indicating whether to enable the field to be referenced in $filter queries. filterable differs from searchable in how strings are handled. Fields of type Edm.String or Collection(Edm.String) that are filterable do not undergo word-breaking, so comparisons are for exact matches only. For example, if you set such a field f to \"sunny day\", $filter=f eq 'sunny' will find no matches, but $filter=f eq 'sunny day' will. This property must be null for complex fields. Default is true for simple fields and null for complex fields."
+ },
+ "sortable": {
+ "type": "boolean",
+ "description": "A value indicating whether to enable the field to be referenced in $orderby expressions. By default Azure Cognitive Search sorts results by score, but in many experiences users will want to sort by fields in the documents. A simple field can be sortable only if it is single-valued (it has a single value in the scope of the parent document). Simple collection fields cannot be sortable, since they are multi-valued. Simple sub-fields of complex collections are also multi-valued, and therefore cannot be sortable. This is true whether it's an immediate parent field, or an ancestor field, that's the complex collection. Complex fields cannot be sortable and the sortable property must be null for such fields. The default for sortable is true for single-valued simple fields, false for multi-valued simple fields, and null for complex fields."
+ },
+ "facetable": {
+ "type": "boolean",
+ "description": "A value indicating whether to enable the field to be referenced in facet queries. Typically used in a presentation of search results that includes hit count by category (for example, search for digital cameras and see hits by brand, by megapixels, by price, and so on). This property must be null for complex fields. Fields of type Edm.GeographyPoint or Collection(Edm.GeographyPoint) cannot be facetable. Default is true for all other simple fields."
+ },
+ "analyzer": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Language-support"
+ },
+ "$ref": "#/definitions/AnalyzerName",
+ "description": "The name of the language analyzer to use for the field. 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. Must be null for complex fields."
+ },
+ "searchAnalyzer": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Language-support"
+ },
+ "$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. Must be null for complex fields."
+ },
+ "indexAnalyzer": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Language-support"
+ },
+ "$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. Must be null for complex fields."
+ },
+ "synonymMaps": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Synonym-Map-operations"
+ },
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of the names of synonym maps to associate with this field. This option can be used only with searchable fields. Currently only one synonym map per field is supported. Assigning a synonym map to a field ensures that query terms targeting that field are expanded at query-time using the rules in the synonym map. This attribute can be changed on existing fields. Must be null or an empty collection for complex fields."
+ },
+ "fields": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Field"
+ },
+ "description": "A list of sub-fields if this is a field of type Edm.ComplexType or Collection(Edm.ComplexType). Must be null or empty for simple fields."
+ }
+ },
+ "required": [
+ "name",
+ "type"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Index"
+ },
+ "description": "Represents a field in an index definition, which describes the name, data type, and search behavior of a field."
+ },
+ "TextWeights": {
+ "properties": {
+ "weights": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "number",
+ "format": "double",
+ "x-nullable": false
+ },
+ "description": "The dictionary of per-field weights to boost document scoring. The keys are field names and the values are the weights for each field."
+ }
+ },
+ "required": [
+ "weights"
+ ],
+ "description": "Defines weights on index fields for which matches should boost scoring in search queries."
+ },
+ "ScoringFunction": {
+ "discriminator": "type",
+ "properties": {
+ "type": {
+ "type": "string"
+ },
+ "fieldName": {
+ "type": "string",
+ "description": "The name of the field used as input to the scoring function."
+ },
+ "boost": {
+ "type": "number",
+ "format": "double",
+ "description": "A multiplier for the raw score. Must be a positive number not equal to 1.0."
+ },
+ "interpolation": {
+ "$ref": "#/definitions/ScoringFunctionInterpolation",
+ "description": "A value indicating how boosting will be interpolated across document scores; defaults to \"Linear\"."
+ }
+ },
+ "required": [
+ "type",
+ "fieldName",
+ "boost"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index"
+ },
+ "description": "Abstract base class for functions that can modify document scores during ranking."
+ },
+ "DistanceScoringFunction": {
+ "x-ms-discriminator-value": "distance",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ScoringFunction"
+ }
+ ],
+ "properties": {
+ "distance": {
+ "x-ms-client-name": "Parameters",
+ "$ref": "#/definitions/DistanceScoringParameters",
+ "description": "Parameter values for the distance scoring function."
+ }
+ },
+ "required": [
+ "distance"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index"
+ },
+ "description": "Defines a function that boosts scores based on distance from a geographic location."
+ },
+ "DistanceScoringParameters": {
+ "properties": {
+ "referencePointParameter": {
+ "type": "string",
+ "description": "The name of the parameter passed in search queries to specify the reference location."
+ },
+ "boostingDistance": {
+ "type": "number",
+ "format": "double",
+ "description": "The distance in kilometers from the reference location where the boosting range ends."
+ }
+ },
+ "required": [
+ "referencePointParameter",
+ "boostingDistance"
+ ],
+ "description": "Provides parameter values to a distance scoring function."
+ },
+ "FreshnessScoringFunction": {
+ "x-ms-discriminator-value": "freshness",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ScoringFunction"
+ }
+ ],
+ "properties": {
+ "freshness": {
+ "x-ms-client-name": "Parameters",
+ "$ref": "#/definitions/FreshnessScoringParameters",
+ "description": "Parameter values for the freshness scoring function."
+ }
+ },
+ "required": [
+ "freshness"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index"
+ },
+ "description": "Defines a function that boosts scores based on the value of a date-time field."
+ },
+ "FreshnessScoringParameters": {
+ "properties": {
+ "boostingDuration": {
+ "type": "string",
+ "format": "duration",
+ "description": "The expiration period after which boosting will stop for a particular document."
+ }
+ },
+ "required": [
+ "boostingDuration"
+ ],
+ "description": "Provides parameter values to a freshness scoring function."
+ },
+ "MagnitudeScoringFunction": {
+ "x-ms-discriminator-value": "magnitude",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ScoringFunction"
+ }
+ ],
+ "properties": {
+ "magnitude": {
+ "x-ms-client-name": "Parameters",
+ "$ref": "#/definitions/MagnitudeScoringParameters",
+ "description": "Parameter values for the magnitude scoring function."
+ }
+ },
+ "required": [
+ "magnitude"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index"
+ },
+ "description": "Defines a function that boosts scores based on the magnitude of a numeric field."
+ },
+ "MagnitudeScoringParameters": {
+ "properties": {
+ "boostingRangeStart": {
+ "type": "number",
+ "format": "double",
+ "description": "The field value at which boosting starts."
+ },
+ "boostingRangeEnd": {
+ "type": "number",
+ "format": "double",
+ "description": "The field value at which boosting ends."
+ },
+ "constantBoostBeyondRange": {
+ "x-ms-client-name": "ShouldBoostBeyondRangeByConstant",
+ "type": "boolean",
+ "description": "A value indicating whether to apply a constant boost for field values beyond the range end value; default is false."
+ }
+ },
+ "required": [
+ "boostingRangeStart",
+ "boostingRangeEnd"
+ ],
+ "description": "Provides parameter values to a magnitude scoring function."
+ },
+ "TagScoringFunction": {
+ "x-ms-discriminator-value": "tag",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ScoringFunction"
+ }
+ ],
+ "properties": {
+ "tag": {
+ "x-ms-client-name": "Parameters",
+ "$ref": "#/definitions/TagScoringParameters",
+ "description": "Parameter values for the tag scoring function."
+ }
+ },
+ "required": [
+ "tag"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index"
+ },
+ "description": "Defines a function that boosts scores of documents with string values matching a given list of tags."
+ },
+ "TagScoringParameters": {
+ "properties": {
+ "tagsParameter": {
+ "type": "string",
+ "description": "The name of the parameter passed in search queries to specify the list of tags to compare against the target field."
+ }
+ },
+ "required": [
+ "tagsParameter"
+ ],
+ "description": "Provides parameter values to a tag scoring function."
+ },
+ "ScoringFunctionInterpolation": {
+ "type": "string",
+ "enum": [
+ "linear",
+ "constant",
+ "quadratic",
+ "logarithmic"
+ ],
+ "x-ms-enum": {
+ "name": "ScoringFunctionInterpolation"
+ },
+ "description": "Defines the function used to interpolate score boosting across a range of documents."
+ },
+ "ScoringProfile": {
+ "properties": {
+ "name": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules"
+ },
+ "type": "string",
+ "description": "The name of the scoring profile."
+ },
+ "text": {
+ "x-ms-client-name": "TextWeights",
+ "$ref": "#/definitions/TextWeights",
+ "description": "Parameters that boost scoring based on text matches in certain index fields."
+ },
+ "functions": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ScoringFunction"
+ },
+ "description": "The collection of functions that influence the scoring of documents."
+ },
+ "functionAggregation": {
+ "$ref": "#/definitions/ScoringFunctionAggregation",
+ "description": "A value indicating how the results of individual scoring functions should be combined. Defaults to \"Sum\". Ignored if there are no scoring functions."
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index"
+ },
+ "description": "Defines parameters for a search index that influence scoring in search queries."
+ },
+ "ScoringFunctionAggregation": {
+ "type": "string",
+ "enum": [
+ "sum",
+ "average",
+ "minimum",
+ "maximum",
+ "firstMatching"
+ ],
+ "x-ms-enum": {
+ "name": "ScoringFunctionAggregation"
+ },
+ "description": "Defines the aggregation function used to combine the results of all the scoring functions in a scoring profile."
+ },
+ "CorsOptions": {
+ "properties": {
+ "allowedOrigins": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of origins from which JavaScript code will be granted access to your index. Can contain a list of hosts of the form {protocol}://{fully-qualified-domain-name}[:{port#}], or a single '*' to allow all origins (not recommended)."
+ },
+ "maxAgeInSeconds": {
+ "type": "integer",
+ "format": "int64",
+ "description": "The duration for which browsers should cache CORS preflight responses. Defaults to 5 minutes."
+ }
+ },
+ "required": [
+ "allowedOrigins"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Index"
+ },
+ "description": "Defines options to control Cross-Origin Resource Sharing (CORS) for an index."
+ },
+ "Suggester": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the suggester."
+ },
+ "searchMode": {
+ "type": "string",
+ "enum": [
+ "analyzingInfixMatching"
+ ],
+ "x-ms-enum": {
+ "name": "searchMode",
+ "modelAsString": false
+ },
+ "description": "A value indicating the capabilities of the suggester."
+ },
+ "sourceFields": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of field names to which the suggester applies. Each field must be searchable."
+ }
+ },
+ "required": [
+ "name",
+ "searchMode",
+ "sourceFields"
+ ],
+ "description": "Defines how the Suggest API should apply to a group of fields in the index."
+ },
+ "Index": {
+ "properties": {
+ "name": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules"
+ },
+ "type": "string",
+ "description": "The name of the index."
+ },
+ "fields": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Field"
+ },
+ "description": "The fields of the index."
+ },
+ "scoringProfiles": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ScoringProfile"
+ },
+ "description": "The scoring profiles for the index."
+ },
+ "defaultScoringProfile": {
+ "type": "string",
+ "description": "The name of the scoring profile to use if none is specified in the query. If this property is not set and no scoring profile is specified in the query, then default scoring (tf-idf) will be used."
+ },
+ "corsOptions": {
+ "$ref": "#/definitions/CorsOptions",
+ "description": "Options to control Cross-Origin Resource Sharing (CORS) for the index."
+ },
+ "suggesters": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Suggester"
+ },
+ "description": "The suggesters for the index."
+ },
+ "analyzers": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Analyzer"
+ },
+ "description": "The analyzers for the index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "tokenizers": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Tokenizer"
+ },
+ "description": "The tokenizers for the index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "tokenFilters": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/TokenFilter"
+ },
+ "description": "The token filters for the index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "charFilters": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/CharFilter"
+ },
+ "description": "The character filters for the index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "encryptionKey": {
+ "$ref": "#/definitions/EncryptionKey",
+ "description": "A description of an encryption key that you create in Azure Key Vault. This key is used to provide an additional level of encryption-at-rest for your data when you want full assurance that no one, not even Microsoft, can decrypt your data in Azure Cognitive Search. Once you have encrypted your data, it will always remain encrypted. Azure Cognitive Search will ignore attempts to set this property to null. You can change this property as needed if you want to rotate your encryption key; Your data will be unaffected. Encryption with customer-managed keys is not available for free search services, and is only available for paid services created on or after January 1, 2019.",
+ "externalDocs": {
+ "url": "https://aka.ms/azure-search-encryption-with-cmk"
+ }
+ },
+ "@odata.etag": {
+ "x-ms-client-name": "ETag",
+ "type": "string",
+ "description": "The ETag of the index."
+ }
+ },
+ "required": [
+ "name",
+ "fields"
+ ],
+ "description": "Represents a search index definition, which describes the fields and search behavior of an index."
+ },
+ "IndexGetStatisticsResult": {
+ "properties": {
+ "documentCount": {
+ "type": "integer",
+ "format": "int64",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "The number of documents in the index."
+ },
+ "storageSize": {
+ "type": "integer",
+ "format": "int64",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "The amount of storage in bytes consumed by the index."
+ }
+ },
+ "description": "Statistics for a given index. Statistics are collected periodically and are not guaranteed to always be up-to-date."
+ },
+ "IndexListResult": {
+ "properties": {
+ "value": {
+ "x-ms-client-name": "Indexes",
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/Index"
+ },
+ "description": "The indexes in the Search service."
+ }
+ },
+ "description": "Response from a List Indexes request. If successful, it includes the full definitions of all indexes."
+ },
+ "Skillset": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the skillset."
+ },
+ "description": {
+ "type": "string",
+ "description": "The description of the skillset."
+ },
+ "skills": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Skill"
+ },
+ "description": "A list of skills in the skillset."
+ },
+ "cognitiveServices": {
+ "$ref": "#/definitions/CognitiveServices",
+ "description": "Details about cognitive services to be used when running skills."
+ },
+ "@odata.etag": {
+ "x-ms-client-name": "ETag",
+ "type": "string",
+ "description": "The ETag of the skillset."
+ }
+ },
+ "required": [
+ "name",
+ "description",
+ "skills"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-tutorial-blob"
+ },
+ "description": "A list of skills."
+ },
+ "CognitiveServices": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "@odata.type"
+ ],
+ "description": "Abstract base class for describing any cognitive service resource attached to the skillset."
+ },
+ "DefaultCognitiveServices": {
+ "description": "An empty object that represents the default cognitive service resource for a skillset.",
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.DefaultCognitiveServices",
+ "allOf": [
+ {
+ "$ref": "#/definitions/CognitiveServices"
+ }
+ ]
+ },
+ "CognitiveServicesByKey": {
+ "description": "A cognitive service resource provisioned with a key that is attached to a skillset.",
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.CognitiveServicesByKey",
+ "allOf": [
+ {
+ "$ref": "#/definitions/CognitiveServices"
+ }
+ ],
+ "properties": {
+ "key": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "key"
+ ]
+ },
+ "Skill": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string",
+ "description": "The name of the skill which uniquely identifies it within the skillset. A skill with no name defined will be given a default name of its 1-based index in the skills array, prefixed with the character '#'."
+ },
+ "description": {
+ "type": "string",
+ "description": "The description of the skill which describes the inputs, outputs, and usage of the skill."
+ },
+ "context": {
+ "type": "string",
+ "description": "Represents the level at which operations take place, such as the document root or document content (for example, /document or /document/content). The default is /document."
+ },
+ "inputs": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/InputFieldMappingEntry"
+ },
+ "description": "Inputs of the skills could be a column in the source data set, or the output of an upstream skill."
+ },
+ "outputs": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/OutputFieldMappingEntry"
+ },
+ "description": "The output of a skill is either a field in a search index, or a value that can be consumed as an input by another skill."
+ }
+ },
+ "required": [
+ "@odata.type",
+ "inputs",
+ "outputs"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-predefined-skills"
+ },
+ "description": "Abstract base class for skills."
+ },
+ "InputFieldMappingEntry": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the input."
+ },
+ "source": {
+ "type": "string",
+ "description": "The source of the input."
+ },
+ "sourceContext": {
+ "type": "string",
+ "description": "The source context used for selecting recursive inputs."
+ },
+ "inputs": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/InputFieldMappingEntry"
+ },
+ "description": "The recursive inputs used when creating a complex type."
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "description": "Input field mapping for a skill."
+ },
+ "OutputFieldMappingEntry": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the output defined by the skill."
+ },
+ "targetName": {
+ "type": "string",
+ "description": "The target name of the output. It is optional and default to name."
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/naming-rules"
+ },
+ "description": "Output field mapping for a skill."
+ },
+ "ConditionalSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Util.ConditionalSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-conditional"
+ },
+ "description": "A skill that enables scenarios that require a Boolean operation to determine the data to assign to an output."
+ },
+ "KeyPhraseExtractionSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/KeyPhraseExtractionSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ },
+ "maxKeyPhraseCount": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "A number indicating how many key phrases to return. If absent, all identified key phrases will be returned."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-keyphrases"
+ },
+ "description": "A skill that uses text analytics for key phrase extraction."
+ },
+ "OcrSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Vision.OcrSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "textExtractionAlgorithm": {
+ "$ref": "#/definitions/TextExtractionAlgorithm",
+ "description": "A value indicating which algorithm to use for extracting text. Default is printed."
+ },
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/OcrSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ },
+ "detectOrientation": {
+ "x-ms-client-name": "ShouldDetectOrientation",
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating to turn orientation detection on or not. Default is false."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-ocr"
+ },
+ "description": "A skill that extracts text from image files."
+ },
+ "ImageAnalysisSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Vision.ImageAnalysisSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/ImageAnalysisSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ },
+ "visualFeatures": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/VisualFeature",
+ "x-nullable": false
+ },
+ "description": "A list of visual features."
+ },
+ "details": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ImageDetail",
+ "x-nullable": false
+ },
+ "description": "A string indicating which domain-specific details to return."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-image-analysis"
+ },
+ "description": "A skill that analyzes image files. It extracts a rich set of visual features based on the image content."
+ },
+ "LanguageDetectionSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-language-detection"
+ },
+ "description": "A skill that detects the language of input text and reports a single language code for every document submitted on the request. The language code is paired with a score indicating the confidence of the analysis."
+ },
+ "ShaperSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Util.ShaperSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-shaper"
+ },
+ "description": "A skill for reshaping the outputs. It creates a complex type to support composite fields (also known as multipart fields)."
+ },
+ "MergeSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.MergeSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "insertPreTag": {
+ "type": "string",
+ "default": " ",
+ "description": "The tag indicates the start of the merged text. By default, the tag is an empty space."
+ },
+ "insertPostTag": {
+ "type": "string",
+ "default": " ",
+ "description": "The tag indicates the end of the merged text. By default, the tag is an empty space."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-textmerger"
+ },
+ "description": "A skill for merging two or more strings into a single unified string, with an optional user-defined delimiter separating each component part."
+ },
+ "EntityRecognitionSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "categories": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/EntityCategory",
+ "x-nullable": false
+ },
+ "description": "A list of entity categories that should be extracted."
+ },
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/EntityRecognitionSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ },
+ "includeTypelessEntities": {
+ "type": "boolean",
+ "x-nullable": true,
+ "description": "Determines whether or not to include entities which are well known but don't conform to a pre-defined type. If this configuration is not set (default), set to null or set to false, entities which don't conform to one of the pre-defined types will not be surfaced."
+ },
+ "minimumPrecision": {
+ "type": "number",
+ "format": "double",
+ "x-nullable": true,
+ "description": "A value between 0 and 1 that be used to only include entities whose confidence score is greater than the value specified. If not set (default), or if explicitly set to null, all entities will be included."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-entity-recognition"
+ },
+ "description": "Text analytics entity recognition."
+ },
+ "NamedEntityRecognitionSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.NamedEntityRecognitionSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "categories": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/NamedEntityCategory",
+ "x-nullable": false
+ },
+ "description": "A list of named entity categories."
+ },
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/NamedEntityRecognitionSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ },
+ "minimumPrecision": {
+ "type": "number",
+ "format": "double",
+ "x-nullable": true,
+ "description": "A value between 0 and 1 to indicate the confidence of the results."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-named-entity-recognition"
+ },
+ "description": "Text analytics named entity recognition. This skill is deprecated in favor of EntityRecognitionSkill.",
+ "x-ms-external": true
+ },
+ "SentimentSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.SentimentSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/SentimentSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-sentiment"
+ },
+ "description": "Text analytics positive-negative sentiment analysis, scored as a floating point value in a range of zero to 1."
+ },
+ "SplitSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.SplitSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/SplitSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ },
+ "textSplitMode": {
+ "$ref": "#/definitions/TextSplitMode",
+ "x-nullable": false,
+ "description": "A value indicating which split mode to perform."
+ },
+ "maximumPageLength": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "The desired maximum page length. Default is 10000."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-textsplit"
+ },
+ "description": "A skill to split a string into chunks of text."
+ },
+ "TextTranslationSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.TranslationSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "defaultToLanguageCode": {
+ "$ref": "#/definitions/TextTranslationSkillLanguage",
+ "description": "The language code to translate documents into for documents that don't specify the to language explicitly. "
+ },
+ "defaultFromLanguageCode": {
+ "$ref": "#/definitions/TextTranslationSkillLanguage",
+ "description": "The language code to translate documents from for documents that don't specify the from language explicitly."
+ },
+ "suggestedFrom": {
+ "$ref": "#/definitions/TextTranslationSkillLanguage",
+ "description": "The language code to translate documents from when neither the fromLanguageCode input nor the defaultFromLanguageCode parameter are provided, and the automatic language detection is unsuccessful. Default is en."
+ }
+ },
+ "required": [
+ "defaultToLanguageCode"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-text-translation"
+ },
+ "description": "A skill to translate text from one language to another."
+ },
+ "WebApiSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Custom.WebApiSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "uri": {
+ "type": "string",
+ "description": "The url for the Web API."
+ },
+ "httpHeaders": {
+ "$ref": "#/definitions/WebApiHttpHeaders",
+ "description": "The headers required to make the http request."
+ },
+ "httpMethod": {
+ "type": "string",
+ "description": "The method for the http request."
+ },
+ "timeout": {
+ "type": "string",
+ "format": "duration",
+ "description": "The desired timeout for the request. Default is 30 seconds."
+ },
+ "batchSize": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "The desired batch size which indicates number of documents."
+ },
+ "degreeOfParallelism": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "If set, the number of parallel calls that can be made to the Web API."
+ }
+ },
+ "required": [
+ "uri"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-custom-skill-web-api"
+ },
+ "description": "A skill that can call a Web API endpoint, allowing you to extend a skillset by having it call your custom code."
+ },
+ "WebApiHttpHeaders": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "A dictionary of http request headers."
+ },
+ "SkillsetListResult": {
+ "properties": {
+ "value": {
+ "x-ms-client-name": "Skillsets",
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/Skillset"
+ },
+ "description": "The skillsets defined in the Search service."
+ }
+ },
+ "description": "Response from a list Skillset request. If successful, it includes the full definitions of all skillsets."
+ },
+ "TextExtractionAlgorithm": {
+ "type": "string",
+ "enum": [
+ "printed",
+ "handwritten"
+ ],
+ "x-ms-enum": {
+ "name": "TextExtractionAlgorithm",
+ "modelAsString": false
+ },
+ "description": "A value indicating which algorithm to use. Default is printed."
+ },
+ "TextSplitMode": {
+ "type": "string",
+ "enum": [
+ "pages",
+ "sentences"
+ ],
+ "x-ms-enum": {
+ "name": "TextSplitMode",
+ "modelAsString": false
+ },
+ "description": "A value indicating which split mode to perform."
+ },
+ "VisualFeature": {
+ "type": "string",
+ "enum": [
+ "categories",
+ "tags",
+ "description",
+ "faces",
+ "imageType",
+ "color"
+ ],
+ "x-ms-enum": {
+ "name": "VisualFeature",
+ "modelAsString": false
+ },
+ "description": "The strings indicating what visual feature types to return."
+ },
+ "ImageDetail": {
+ "type": "string",
+ "enum": [
+ "celebrities",
+ "landmarks"
+ ],
+ "x-ms-enum": {
+ "name": "ImageDetail",
+ "modelAsString": false
+ },
+ "description": "A string indicating which domain-specific details to return."
+ },
+ "EntityCategory": {
+ "type": "string",
+ "enum": [
+ "location",
+ "organization",
+ "person",
+ "quantity",
+ "datetime",
+ "url",
+ "email"
+ ],
+ "x-ms-enum": {
+ "name": "EntityCategory",
+ "modelAsString": false
+ },
+ "description": "A string indicating what entity categories to return."
+ },
+ "NamedEntityCategory": {
+ "type": "string",
+ "enum": [
+ "location",
+ "organization",
+ "person"
+ ],
+ "description": "A string indicating which named entity categories to return.",
+ "x-ms-external": true
+ },
+ "SentimentSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "da",
+ "nl",
+ "en",
+ "fi",
+ "fr",
+ "de",
+ "el",
+ "it",
+ "no",
+ "pl",
+ "pt-PT",
+ "ru",
+ "es",
+ "sv",
+ "tr"
+ ],
+ "x-ms-enum": {
+ "name": "SentimentSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input text by SentimentSkill."
+ },
+ "KeyPhraseExtractionSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "da",
+ "nl",
+ "en",
+ "fi",
+ "fr",
+ "de",
+ "it",
+ "ja",
+ "ko",
+ "no",
+ "pl",
+ "pt-PT",
+ "pt-BR",
+ "ru",
+ "es",
+ "sv"
+ ],
+ "x-ms-enum": {
+ "name": "KeyPhraseExtractionSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input text by KeyPhraseExtractionSkill."
+ },
+ "OcrSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "zh-Hans",
+ "zh-Hant",
+ "cs",
+ "da",
+ "nl",
+ "en",
+ "fi",
+ "fr",
+ "de",
+ "el",
+ "hu",
+ "it",
+ "ja",
+ "ko",
+ "nb",
+ "pl",
+ "pt",
+ "ru",
+ "es",
+ "sv",
+ "tr",
+ "ar",
+ "ro",
+ "sr-Cyrl",
+ "sr-Latn",
+ "sk"
+ ],
+ "x-ms-enum": {
+ "name": "OcrSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input by OcrSkill."
+ },
+ "SplitSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "da",
+ "de",
+ "en",
+ "es",
+ "fi",
+ "fr",
+ "it",
+ "ko",
+ "pt"
+ ],
+ "x-ms-enum": {
+ "name": "SplitSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input text by SplitSkill."
+ },
+ "EntityRecognitionSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "de",
+ "en",
+ "es",
+ "fr",
+ "it"
+ ],
+ "x-ms-enum": {
+ "name": "EntityRecognitionSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input text by EntityRecognitionSkill."
+ },
+ "NamedEntityRecognitionSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "ar",
+ "cs",
+ "da",
+ "de",
+ "en",
+ "es",
+ "fi",
+ "fr",
+ "he",
+ "hu",
+ "it",
+ "ko",
+ "pt-br",
+ "pt"
+ ],
+ "x-ms-enum": {
+ "name": "NamedEntityRecognitionSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input text by NamedEntityRecognitionSkill."
+ },
+ "TextTranslationSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "af",
+ "ar",
+ "bn",
+ "bs",
+ "bg",
+ "yue",
+ "ca",
+ "zh-Hans",
+ "zh-Hant",
+ "hr",
+ "cs",
+ "da",
+ "nl",
+ "en",
+ "et",
+ "fj",
+ "fil",
+ "fi",
+ "fr",
+ "de",
+ "el",
+ "ht",
+ "he",
+ "hi",
+ "mww",
+ "hu",
+ "is",
+ "id",
+ "it",
+ "ja",
+ "sw",
+ "tlh",
+ "ko",
+ "lv",
+ "lt",
+ "mg",
+ "ms",
+ "mt",
+ "nb",
+ "fa",
+ "pl",
+ "pt",
+ "otq",
+ "ro",
+ "ru",
+ "sm",
+ "sr-Cyrl",
+ "sr-Latn",
+ "sk",
+ "sl",
+ "es",
+ "sv",
+ "ty",
+ "ta",
+ "te",
+ "th",
+ "to",
+ "tr",
+ "uk",
+ "ur",
+ "vi",
+ "cy",
+ "yua"
+ ],
+ "x-ms-enum": {
+ "name": "TextTranslationSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input text by TextTranslationSkill."
+ },
+ "ImageAnalysisSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "en",
+ "zh"
+ ],
+ "x-ms-enum": {
+ "name": "ImageAnalysisSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input by ImageAnalysisSkill."
+ },
+ "SynonymMap": {
+ "properties": {
+ "name": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules"
+ },
+ "type": "string",
+ "description": "The name of the synonym map."
+ },
+ "format": {
+ "type": "string",
+ "enum": [
+ "solr"
+ ],
+ "x-ms-enum": {
+ "name": "SynonymMapFormat",
+ "modelAsString": false
+ },
+ "description": "The format of the synonym map. Only the 'solr' format is currently supported."
+ },
+ "synonyms": {
+ "type": "string",
+ "description": "A series of synonym rules in the specified synonym map format. The rules must be separated by newlines.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Synonym-Map#SynonymMapFormat"
+ }
+ },
+ "encryptionKey": {
+ "$ref": "#/definitions/EncryptionKey",
+ "description": "A description of an encryption key that you create in Azure Key Vault. This key is used to provide an additional level of encryption-at-rest for your data when you want full assurance that no one, not even Microsoft, can decrypt your data in Azure Cognitive Search. Once you have encrypted your data, it will always remain encrypted. Azure Cognitive Search will ignore attempts to set this property to null. You can change this property as needed if you want to rotate your encryption key; Your data will be unaffected. Encryption with customer-managed keys is not available for free search services, and is only available for paid services created on or after January 1, 2019.",
+ "externalDocs": {
+ "url": "https://aka.ms/azure-search-encryption-with-cmk"
+ }
+ },
+ "@odata.etag": {
+ "x-ms-client-name": "ETag",
+ "type": "string",
+ "description": "The ETag of the synonym map."
+ }
+ },
+ "required": [
+ "name",
+ "format",
+ "synonyms"
+ ],
+ "description": "Represents a synonym map definition."
+ },
+ "SynonymMapListResult": {
+ "properties": {
+ "value": {
+ "x-ms-client-name": "SynonymMaps",
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/SynonymMap"
+ },
+ "description": "The synonym maps in the Search service."
+ }
+ },
+ "description": "Response from a List SynonymMaps request. If successful, it includes the full definitions of all synonym maps."
+ },
+ "EncryptionKey": {
+ "properties": {
+ "keyVaultKeyName": {
+ "type": "string",
+ "description": "The name of your Azure Key Vault key to be used to encrypt your data at rest."
+ },
+ "keyVaultKeyVersion": {
+ "type": "string",
+ "description": "The version of your Azure Key Vault key to be used to encrypt your data at rest."
+ },
+ "keyVaultUri": {
+ "type": "string",
+ "description": "The URI of your Azure Key Vault, also referred to as DNS name, that contains the key to be used to encrypt your data at rest. An example URI might be https://my-keyvault-name.vault.azure.net."
+ },
+ "accessCredentials": {
+ "$ref": "#/definitions/AzureActiveDirectoryApplicationCredentials",
+ "description": "Optional Azure Active Directory credentials used for accessing your Azure Key Vault. Not required if using managed identity instead.",
+ "externalDocs": {
+ "url": "https://aka.ms/azure-search-msi"
+ }
+ }
+ },
+ "required": [
+ "keyVaultKeyName",
+ "keyVaultKeyVersion",
+ "keyVaultUri"
+ ],
+ "description": "A customer-managed encryption key in Azure Key Vault. Keys that you create and manage can be used to encrypt or decrypt data-at-rest in Azure Cognitive Search, such as indexes and synonym maps."
+ },
+ "AzureActiveDirectoryApplicationCredentials": {
+ "properties": {
+ "applicationId": {
+ "type": "string",
+ "description": "An AAD Application ID that was granted the required access permissions to the Azure Key Vault that is to be used when encrypting your data at rest. The Application ID should not be confused with the Object ID for your AAD Application."
+ },
+ "applicationSecret": {
+ "type": "string",
+ "description": "The authentication key of the specified AAD application."
+ }
+ },
+ "required": [
+ "applicationId"
+ ],
+ "description": "Credentials of a registered application created for your search service, used for authenticated access to the encryption keys stored in Azure Key Vault."
+ },
+ "ServiceStatistics": {
+ "properties": {
+ "counters": {
+ "$ref": "#/definitions/ServiceCounters",
+ "description": "Service level resource counters."
+ },
+ "limits": {
+ "$ref": "#/definitions/ServiceLimits",
+ "description": "Service level general limits."
+ }
+ },
+ "description": "Response from a get service statistics request. If successful, it includes service level counters and limits."
+ },
+ "ServiceCounters": {
+ "properties": {
+ "documentCount": {
+ "x-ms-client-name": "documentCounter",
+ "$ref": "#/definitions/ResourceCounter",
+ "description": "Total number of documents across all indexes in the service."
+ },
+ "indexesCount": {
+ "x-ms-client-name": "indexCounter",
+ "$ref": "#/definitions/ResourceCounter",
+ "description": "Total number of indexes."
+ },
+ "indexersCount": {
+ "x-ms-client-name": "indexerCounter",
+ "$ref": "#/definitions/ResourceCounter",
+ "description": "Total number of indexers."
+ },
+ "dataSourcesCount": {
+ "x-ms-client-name": "dataSourceCounter",
+ "$ref": "#/definitions/ResourceCounter",
+ "description": "Total number of data sources."
+ },
+ "storageSize": {
+ "x-ms-client-name": "storageSizeCounter",
+ "$ref": "#/definitions/ResourceCounter",
+ "description": "Total size of used storage in bytes."
+ },
+ "synonymMaps": {
+ "x-ms-client-name": "synonymMapCounter",
+ "$ref": "#/definitions/ResourceCounter",
+ "description": "Total number of synonym maps."
+ }
+ },
+ "description": "Represents service-level resource counters and quotas."
+ },
+ "ServiceLimits": {
+ "properties": {
+ "maxFieldsPerIndex": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "The maximum allowed fields per index."
+ },
+ "maxFieldNestingDepthPerIndex": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "The maximum depth which you can nest sub-fields in an index, including the top-level complex field. For example, a/b/c has a nesting depth of 3."
+ },
+ "maxComplexCollectionFieldsPerIndex": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "The maximum number of fields of type Collection(Edm.ComplexType) allowed in an index."
+ },
+ "maxComplexObjectsInCollectionsPerDocument": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "The maximum number of objects in complex collections allowed per document."
+ }
+ },
+ "description": "Represents various service level limits."
+ },
+ "ResourceCounter": {
+ "properties": {
+ "usage": {
+ "type": "integer",
+ "format": "int64",
+ "x-nullable": false,
+ "description": "The resource usage amount."
+ },
+ "quota": {
+ "type": "integer",
+ "format": "int64",
+ "x-nullable": true,
+ "description": "The resource amount quota."
+ }
+ },
+ "description": "Represents a resource's usage and quota."
+ }
+ },
+ "parameters": {
+ "ApiVersionParameter": {
+ "name": "api-version",
+ "in": "query",
+ "required": true,
+ "type": "string",
+ "description": "Client Api Version."
+ },
+ "ClientRequestIdParameter": {
+ "name": "client-request-id",
+ "in": "header",
+ "required": false,
+ "type": "string",
+ "format": "uuid",
+ "description": "The tracking ID sent with the request to help with debugging.",
+ "x-ms-client-request-id": true,
+ "x-ms-parameter-grouping": {
+ "name": "search-request-options"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "IfMatchParameter": {
+ "name": "If-Match",
+ "in": "header",
+ "required": false,
+ "type": "string",
+ "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.",
+ "x-ms-parameter-grouping": {
+ "name": "access-condition"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "IfNoneMatchParameter": {
+ "name": "If-None-Match",
+ "in": "header",
+ "required": false,
+ "type": "string",
+ "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.",
+ "x-ms-parameter-grouping": {
+ "name": "access-condition"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "PreferHeaderParameter": {
+ "name": "Prefer",
+ "in": "header",
+ "required": true,
+ "type": "string",
+ "enum": [
+ "return=representation"
+ ],
+ "description": "For HTTP PUT requests, instructs the service to return the created/updated resource on success.",
+ "x-ms-parameter-location": "method"
+ },
+ "SearchServiceNameParameter": {
+ "name": "searchServiceName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "x-ms-skip-url-encoding": true,
+ "description": "The name of the search service.",
+ "x-ms-parameter-location": "client"
+ },
+ "SearchDnsSuffixParameter": {
+ "name": "searchDnsSuffix",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "default": "search.windows.net",
+ "x-ms-skip-url-encoding": true,
+ "description": "The DNS suffix of the search service. The default is search.windows.net.",
+ "x-ms-parameter-location": "client"
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/readme.md b/specification/search/data-plane/Microsoft.Azure.Search.Service/readme.md
index fde7e9de2b43..ed8ca3c096a3 100644
--- a/specification/search/data-plane/Microsoft.Azure.Search.Service/readme.md
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/readme.md
@@ -27,6 +27,15 @@ openapi-type: data-plane
tag: package-2019-05
```
+### Tag: package-2019-05-preview
+
+These settings apply only when `--tag=package-2019-05-preview` is specified on the command line.
+
+``` yaml $(tag) == 'package-2019-05-preview'
+input-file:
+- preview/2019-05-06-preview/searchservice.json
+```
+
### Tag: package-2019-05
These settings apply only when `--tag=package-2019-05` is specified on the command line.
@@ -90,6 +99,16 @@ input-file:
- preview/2015-02-28/searchservice.json
```
+### Tag: track1-package-2019-05-preview
+
+These settings apply only when `--tag=track1-package-2019-05-preview` is specified on the command line.
+It is meant to be used for generating Track 1 .NET SDK only!
+
+``` yaml $(tag) == 'track1-package-2019-05-preview'
+input-file:
+- track1/preview/2019-05-06-preview/searchservice.json
+```
+
### Tag: track1-package-2019-05
These settings apply only when `--tag=track1-package-2019-05` is specified on the command line.
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateDataSource.json
new file mode 100644
index 000000000000..b9e678d0d59b
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateDataSource.json
@@ -0,0 +1,53 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "api-version": "2019-05-06-Preview",
+ "dataSource": {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId"
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": null
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateIndex.json
new file mode 100644
index 000000000000..899a46d7e3a8
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateIndex.json
@@ -0,0 +1,364 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "api-version": "2019-05-06-Preview",
+ "index": {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "key": true,
+ "searchable": false
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double"
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "filterable": false,
+ "sortable": false,
+ "facetable": false
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "filterable": false,
+ "sortable": false,
+ "facetable": false,
+ "analyzer": "fr.lucene"
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String"
+ },
+ {
+ "name": "category",
+ "type": "Edm.String"
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "analyzer": "tagsAnalyzer"
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean"
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean"
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32"
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint"
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": {
+ "applicationId": "00000000-0000-0000-0000-000000000000",
+ "applicationSecret": "myapplicationsecret"
+ }
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": true,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "fr.lucene",
+ "synonymMaps": []
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "category",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "tagsAnalyzer",
+ "synonymMaps": []
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "tokenizers": [],
+ "tokenFilters": [],
+ "charFilters": [],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": {
+ "applicationId": "00000000-0000-0000-0000-000000000000",
+ "applicationSecret": null
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateIndexer.json
new file mode 100644
index 000000000000..a48caf1ae64e
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateIndexer.json
@@ -0,0 +1,41 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "api-version": "2019-05-06-Preview",
+ "indexer": {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ },
+ "fieldMappings": [],
+ "disabled": false
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateDataSource.json
new file mode 100644
index 000000000000..20632119f79b
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateDataSource.json
@@ -0,0 +1,78 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "dataSourceName": "mydatasource",
+ "api-version": "2019-05-06-Preview",
+ "Prefer": "return=representation",
+ "dataSource": {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": "AccountEndpoint=https://myDocDbEndpoint.documents.azure.com;AccountKey=myDocDbAuthKey;Database=myDocDbDatabaseId"
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": null
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ }
+ },
+ "201": {
+ "body": {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": null
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateIndex.json
new file mode 100644
index 000000000000..110718158428
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateIndex.json
@@ -0,0 +1,593 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "hotels",
+ "allowIndexDowntime": false,
+ "api-version": "2019-05-06-Preview",
+ "Prefer": "return=representation",
+ "index": {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "key": true,
+ "searchable": false
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double"
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "filterable": false,
+ "sortable": false,
+ "facetable": false
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "filterable": false,
+ "sortable": false,
+ "facetable": false,
+ "analyzer": "fr.lucene"
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String"
+ },
+ {
+ "name": "category",
+ "type": "Edm.String"
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "analyzer": "tagsAnalyzer"
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean"
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean"
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset"
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32"
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint"
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": true,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "fr.lucene",
+ "synonymMaps": []
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "category",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "tagsAnalyzer",
+ "synonymMaps": []
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "tokenizers": [],
+ "tokenFilters": [],
+ "charFilters": [],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ }
+ },
+ "201": {
+ "body": {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": true,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "fr.lucene",
+ "synonymMaps": []
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "category",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "tagsAnalyzer",
+ "synonymMaps": []
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "tokenizers": [],
+ "tokenFilters": [],
+ "charFilters": [],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateIndexer.json
new file mode 100644
index 000000000000..0d6be7478c9b
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateIndexer.json
@@ -0,0 +1,61 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexerName": "myindexer",
+ "api-version": "2019-05-06-Preview",
+ "Prefer": "return=representation",
+ "indexer": {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ },
+ "fieldMappings": [],
+ "disabled": false
+ }
+ },
+ "201": {
+ "body": {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ },
+ "fieldMappings": [],
+ "disabled": false
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateSkillset.json
new file mode 100644
index 000000000000..882002b21eb3
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateSkillset.json
@@ -0,0 +1,370 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "skillsetName": "demoskillset",
+ "api-version": "2019-05-06-Preview",
+ "Prefer": "return=representation",
+ "skillset": {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "name": "#1",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ],
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "name": "#2",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "name": "#3",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "name": "#4",
+ "description": null,
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "maxKeyPhraseCount": null
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "description": null,
+ "context": "/document",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "degreeOfParallelism": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ },
+ "201": {
+ "body": {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "name": "#1",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ],
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "name": "#2",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "name": "#3",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "name": "#4",
+ "description": null,
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "maxKeyPhraseCount": null
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "description": null,
+ "context": "/document",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "degreeOfParallelism": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json
new file mode 100644
index 000000000000..e03c3c7a3a81
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateOrUpdateSynonymMap.json
@@ -0,0 +1,48 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "synonymMapName": "mysynonymmap",
+ "api-version": "2019-5-06-Preview",
+ "Prefer": "return=representation",
+ "synonymMap": {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ }
+ },
+ "201": {
+ "body": {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateSkillset.json
new file mode 100644
index 000000000000..345d170d4e6f
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateSkillset.json
@@ -0,0 +1,244 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "skillsetName": "demoskillset",
+ "api-version": "2019-05-06-Preview",
+ "Prefer": "return=representation",
+ "skillset": {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "name": "#1",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ],
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "name": "#2",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "name": "#3",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "name": "#4",
+ "description": null,
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "maxKeyPhraseCount": null
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "description": null,
+ "context": "/document",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "degreeOfParallelism": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateSynonymMap.json
new file mode 100644
index 000000000000..9f8c35581736
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceCreateSynonymMap.json
@@ -0,0 +1,39 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "api-version": "2019-05-06-Preview",
+ "synonymMap": {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": {
+ "applicationId": "00000000-0000-0000-0000-000000000000",
+ "applicationSecret": "myApplicationSecret"
+ }
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "body": {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myUserManagedEncryptionKey-createdinAzureKeyVault",
+ "keyVaultKeyVersion": "myKeyVersion-32charAlphaNumericString",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": {
+ "applicationId": "00000000-0000-0000-0000-000000000000",
+ "applicationSecret": null
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteDataSource.json
new file mode 100644
index 000000000000..485998c3b399
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteDataSource.json
@@ -0,0 +1,12 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "dataSourceName": "mydatasource",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "204": {},
+ "404": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteIndex.json
new file mode 100644
index 000000000000..7e2a4ab24ebb
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteIndex.json
@@ -0,0 +1,12 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "myindex",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "204": {},
+ "404": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteIndexer.json
new file mode 100644
index 000000000000..2d8d47a4aba9
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteIndexer.json
@@ -0,0 +1,12 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexerName": "myindexer",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "204": {},
+ "404": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteSkillset.json
new file mode 100644
index 000000000000..a7ef21578409
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteSkillset.json
@@ -0,0 +1,12 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "skillsetName": "demoskillset",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "204": {},
+ "404": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteSynonymMap.json
new file mode 100644
index 000000000000..367a75c1fb2c
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceDeleteSynonymMap.json
@@ -0,0 +1,12 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "synonymMapName": "mysynonymmap",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "204": {},
+ "404": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetDataSource.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetDataSource.json
new file mode 100644
index 000000000000..764a9c1f0bae
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetDataSource.json
@@ -0,0 +1,33 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "dataSourceName": "mydatasource",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": null
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetIndex.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetIndex.json
new file mode 100644
index 000000000000..b6eba6581225
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetIndex.json
@@ -0,0 +1,245 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "hotels",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": true,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "fr.lucene",
+ "synonymMaps": []
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "category",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "tagsAnalyzer",
+ "synonymMaps": []
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "tokenizers": [],
+ "tokenFilters": [],
+ "charFilters": [],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myKeyName",
+ "keyVaultKeyVersion": "myKeyVersion",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": {
+ "applicationId": "00000000-0000-0000-0000-000000000000",
+ "applicationSecret": null
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetIndexStatistics.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetIndexStatistics.json
new file mode 100644
index 000000000000..9392ddbbece6
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetIndexStatistics.json
@@ -0,0 +1,16 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "hotels",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "documentCount": 239572,
+ "storageSize": 72375920
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetIndexer.json
new file mode 100644
index 000000000000..83cfe1c5c9e5
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetIndexer.json
@@ -0,0 +1,28 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexerName": "myindexer",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ },
+ "fieldMappings": [],
+ "disabled": false
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetIndexerStatus.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetIndexerStatus.json
new file mode 100644
index 000000000000..1f0fb1785cf8
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetIndexerStatus.json
@@ -0,0 +1,90 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexerName": "myindexer",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "status": "running",
+ "lastResult": {
+ "status": "success",
+ "errorMessage": null,
+ "startTime": "2014-11-26T03:37:18.853Z",
+ "endTime": "2014-11-26T03:37:19.012Z",
+ "errors": [],
+ "warnings": [],
+ "itemsProcessed": 11,
+ "itemsFailed": 0,
+ "initialTrackingState": null,
+ "finalTrackingState": null
+ },
+ "executionHistory": [
+ {
+ "status": "success",
+ "errorMessage": null,
+ "startTime": "2014-11-26T03:37:18.853Z",
+ "endTime": "2014-11-26T03:37:19.012Z",
+ "errors": [],
+ "warnings": [],
+ "itemsProcessed": 11,
+ "itemsFailed": 0,
+ "initialTrackingState": null,
+ "finalTrackingState": null
+ },
+ {
+ "status": "transientFailure",
+ "errorMessage": null,
+ "startTime": "2014-11-26T03:28:10.125Z",
+ "endTime": "2014-11-26T03:28:12.007Z",
+ "errors": [
+ {
+ "key": "",
+ "errorMessage": "Document key cannot be missing or empty.",
+ "statusCode": 400,
+ "name": null,
+ "details": null,
+ "documentationLink": null
+ },
+ {
+ "key": "document id 1",
+ "errorMessage": "Could not read the value of column 'foo' at index '0'.",
+ "statusCode": 400,
+ "name": "DocumentExtraction.AzureBlob.MyDataSource",
+ "details": "The file could not be parsed.",
+ "documentationLink": "https://go.microsoft.com/fwlink/?linkid=2049388"
+ }
+ ],
+ "warnings": [
+ {
+ "key": "document id",
+ "message": "A warning doesn't stop indexing, and is intended to inform you of certain interesting situations, like when a blob indexer truncates the amount of text extracted from a blob.",
+ "name": null,
+ "details": null,
+ "documentationLink": null
+ },
+ {
+ "key": "document id 2",
+ "message": "Document was truncated to 50000 characters.",
+ "name": "Enrichment.LanguageDetectionSkill.#4",
+ "details": "The skill did something that didn't break anything, nonetheless something we didn't expect happened, so it might be worth double checking.",
+ "documentationLink": "https://go.microsoft.com/fwlink/?linkid=2099692"
+ }
+ ],
+ "itemsProcessed": 1,
+ "itemsFailed": 2,
+ "initialTrackingState": null,
+ "finalTrackingState": null
+ }
+ ],
+ "limits": {
+ "maxRunTime": "22:00:00",
+ "maxDocumentExtractionSize": 256000000,
+ "maxDocumentContentCharactersToExtract": 4000000
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetServiceStatistics.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetServiceStatistics.json
new file mode 100644
index 000000000000..ef57c6530a12
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetServiceStatistics.json
@@ -0,0 +1,45 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "counters": {
+ "documentCount": {
+ "usage": 7093,
+ "quota": 10000
+ },
+ "indexesCount": {
+ "usage": 3,
+ "quota": 3
+ },
+ "indexersCount": {
+ "usage": 3,
+ "quota": 3
+ },
+ "dataSourcesCount": {
+ "usage": 1,
+ "quota": 3
+ },
+ "storageSize": {
+ "usage": 914529,
+ "quota": 52428800
+ },
+ "synonymMaps": {
+ "usage": 2,
+ "quota": 3
+ }
+ },
+ "limits": {
+ "maxFieldsPerIndex": 1000,
+ "maxFieldNestingDepthPerIndex": 10,
+ "maxComplexCollectionFieldsPerIndex": 100,
+ "maxComplexObjectsInCollectionsPerDocument": 3000
+ }
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetSkillset.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetSkillset.json
new file mode 100644
index 000000000000..10e742ea9eee
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetSkillset.json
@@ -0,0 +1,136 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "skillsetName": "demoskillset",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "name": "#1",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ],
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "name": "#2",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "name": "#3",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "name": "#4",
+ "description": null,
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "maxKeyPhraseCount": null
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "description": null,
+ "context": "/document",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "degreeOfParallelism": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetSynonymMap.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetSynonymMap.json
new file mode 100644
index 000000000000..44c620c21af7
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceGetSynonymMap.json
@@ -0,0 +1,26 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "synonymMapName": "mysynonymmap",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myKeyName",
+ "keyVaultKeyVersion": "myKeyVersion",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": {
+ "applicationId": "00000000-0000-0000-0000-000000000000",
+ "applicationSecret": null
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceIndexAnalyze.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceIndexAnalyze.json
new file mode 100644
index 000000000000..671beb130f40
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceIndexAnalyze.json
@@ -0,0 +1,38 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexName": "hotels",
+ "api-version": "2019-05-06-Preview",
+ "request": {
+ "text": "Text to analyze",
+ "analyzer": "standard.lucene"
+ }
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "tokens": [
+ {
+ "token": "text",
+ "startOffset": 0,
+ "endOffset": 4,
+ "position": 0
+ },
+ {
+ "token": "to",
+ "startOffset": 5,
+ "endOffset": 7,
+ "position": 1
+ },
+ {
+ "token": "analyze",
+ "startOffset": 8,
+ "endOffset": 15,
+ "position": 2
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListDataSources.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListDataSources.json
new file mode 100644
index 000000000000..64f8ecb6a22d
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListDataSources.json
@@ -0,0 +1,50 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "$select": "*",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "mydocdbdatasource",
+ "description": "My Cosmos DB data source.",
+ "type": "cosmosdb",
+ "credentials": {
+ "connectionString": null
+ },
+ "container": {
+ "name": "myDocDbCollectionId",
+ "query": "SELECT c.id, c.userId, tag, c._ts FROM c JOIN tag IN c.tags WHERE c._ts >= @HighWaterMark ORDER BY c._ts"
+ },
+ "dataChangeDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "highWaterMarkColumnName": "_ts"
+ },
+ "dataDeletionDetectionPolicy": {
+ "@odata.type": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "softDeleteColumnName": "isDeleted",
+ "softDeleteMarkerValue": "true"
+ }
+ },
+ {
+ "name": "myblobdatasource",
+ "description": "My Azure Blob data source.",
+ "type": "azureblob",
+ "credentials": {
+ "connectionString": null
+ },
+ "container": {
+ "name": "mycontainer"
+ },
+ "dataChangeDetectionPolicy": null,
+ "dataDeletionDetectionPolicy": null
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListIndexers.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListIndexers.json
new file mode 100644
index 000000000000..6cade8adafd9
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListIndexers.json
@@ -0,0 +1,68 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "$select": "*",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "myindexer",
+ "description": "a cool indexer",
+ "dataSourceName": "mydocdbdatasource",
+ "targetIndexName": "orders",
+ "schedule": {
+ "interval": "PT1H",
+ "startTime": "2015-01-01T00:00:00Z"
+ },
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5
+ },
+ "fieldMappings": [],
+ "disabled": false
+ },
+ {
+ "name": "myotherindexer",
+ "description": "another cool indexer",
+ "dataSourceName": "myblobdatasource",
+ "targetIndexName": "orders",
+ "parameters": {
+ "maxFailedItems": 10,
+ "maxFailedItemsPerBatch": 5,
+ "batchSize": 15
+ },
+ "fieldMappings": [
+ {
+ "sourceFieldName": "PersonName",
+ "targetFieldName": "FirstName",
+ "mappingFunction": {
+ "name": "extractTokenAtPosition",
+ "parameters": {
+ "delimiter": " ",
+ "position": 0
+ }
+ }
+ },
+ {
+ "sourceFieldName": "PersonName",
+ "targetFieldName": "LastName",
+ "mappingFunction": {
+ "name": "extractTokenAtPosition",
+ "parameters": {
+ "delimiter": " ",
+ "position": 1
+ }
+ }
+ }
+ ],
+ "disabled": false
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListIndexes.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListIndexes.json
new file mode 100644
index 000000000000..40cad9454d59
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListIndexes.json
@@ -0,0 +1,288 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "$select": "*",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "hotels",
+ "fields": [
+ {
+ "name": "hotelId",
+ "type": "Edm.String",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": true,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "baseRate",
+ "type": "Edm.Double",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "description_fr",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "fr.lucene",
+ "synonymMaps": []
+ },
+ {
+ "name": "hotelName",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "category",
+ "type": "Edm.String",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "tags",
+ "type": "Collection(Edm.String)",
+ "searchable": true,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": "tagsAnalyzer",
+ "synonymMaps": []
+ },
+ {
+ "name": "parkingIncluded",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "smokingAllowed",
+ "type": "Edm.Boolean",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "lastRenovationDate",
+ "type": "Edm.DateTimeOffset",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "rating",
+ "type": "Edm.Int32",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": true,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "location",
+ "type": "Edm.GeographyPoint",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": true,
+ "sortable": true,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ }
+ ],
+ "scoringProfiles": [
+ {
+ "name": "geo",
+ "text": {
+ "weights": {
+ "hotelName": 5
+ }
+ },
+ "functions": [
+ {
+ "type": "distance",
+ "boost": 5,
+ "fieldName": "location",
+ "interpolation": "logarithmic",
+ "distance": {
+ "referencePointParameter": "currentLocation",
+ "boostingDistance": 10
+ }
+ }
+ ]
+ }
+ ],
+ "defaultScoringProfile": "geo",
+ "suggesters": [
+ {
+ "name": "sg",
+ "searchMode": "analyzingInfixMatching",
+ "sourceFields": [
+ "hotelName"
+ ]
+ }
+ ],
+ "analyzers": [
+ {
+ "name": "tagsAnalyzer",
+ "@odata.type": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "charFilters": [
+ "html_strip"
+ ],
+ "tokenizer": "standard_v2"
+ }
+ ],
+ "tokenizers": [],
+ "tokenFilters": [],
+ "charFilters": [],
+ "corsOptions": {
+ "allowedOrigins": [
+ "tempuri.org"
+ ],
+ "maxAgeInSeconds": 60
+ },
+ "encryptionKey": {
+ "keyVaultKeyName": "myKeyName",
+ "keyVaultKeyVersion": "myKeyVersion",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ },
+ {
+ "name": "testindex",
+ "fields": [
+ {
+ "name": "id",
+ "type": "Edm.String",
+ "searchable": false,
+ "filterable": false,
+ "retrievable": true,
+ "sortable": false,
+ "facetable": false,
+ "key": true,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ },
+ {
+ "name": "hidden",
+ "type": "Edm.Double",
+ "searchable": false,
+ "filterable": true,
+ "retrievable": false,
+ "sortable": true,
+ "facetable": false,
+ "key": false,
+ "indexAnalyzer": null,
+ "searchAnalyzer": null,
+ "analyzer": null,
+ "synonymMaps": []
+ }
+ ],
+ "scoringProfiles": [],
+ "defaultScoringProfile": null,
+ "suggesters": [],
+ "analyzers": [],
+ "tokenizers": [],
+ "tokenFilters": [],
+ "charFilters": [],
+ "corsOptions": null,
+ "encryptionKey": null
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListSkillsets.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListSkillsets.json
new file mode 100644
index 000000000000..51d26b811db3
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListSkillsets.json
@@ -0,0 +1,140 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "$select": "*",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "demoskillset",
+ "description": "Extract entities, detect language and extract key-phrases",
+ "skills": [
+ {
+ "@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "name": "#1",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "organizations",
+ "targetName": "organizations"
+ }
+ ],
+ "categories": [
+ "organization"
+ ],
+ "defaultLanguageCode": "en",
+ "minimumPrecision": 0.7
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "name": "#2",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "languageCode",
+ "targetName": "languageCode"
+ }
+ ]
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.SplitSkill",
+ "name": "#3",
+ "description": null,
+ "context": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/content"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "textItems",
+ "targetName": "pages"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "textSplitMode": "pages",
+ "maximumPageLength": 4000
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "name": "#4",
+ "description": null,
+ "context": "/document/pages/*",
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "keyPhrases",
+ "targetName": "keyPhrases"
+ }
+ ],
+ "defaultLanguageCode": null,
+ "maxKeyPhraseCount": null
+ },
+ {
+ "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill",
+ "name": "MyCustomWebApiSkill",
+ "description": null,
+ "context": "/document",
+ "uri": "https://contoso.example.org",
+ "httpMethod": "POST",
+ "timeout": "PT30S",
+ "batchSize": 1,
+ "degreeOfParallelism": null,
+ "inputs": [
+ {
+ "name": "text",
+ "source": "/document/pages/*"
+ },
+ {
+ "name": "languageCode",
+ "source": "/document/languageCode"
+ }
+ ],
+ "outputs": [
+ {
+ "name": "customresult",
+ "targetName": "result"
+ }
+ ],
+ "httpHeaders": {}
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListSynonymMaps.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListSynonymMaps.json
new file mode 100644
index 000000000000..9fe7c633b7f1
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceListSynonymMaps.json
@@ -0,0 +1,32 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "200": {
+ "body": {
+ "value": [
+ {
+ "name": "mysynonymmap",
+ "format": "solr",
+ "synonyms": "United States, United States of America, USA\nWashington, Wash. => WA",
+ "encryptionKey": {
+ "keyVaultKeyName": "myKeyName",
+ "keyVaultKeyVersion": "myKeyVersion",
+ "keyVaultUri": "https://myKeyVault.vault.azure.net",
+ "accessCredentials": null
+ }
+ },
+ {
+ "name": "myothersynonymmap",
+ "format": "solr",
+ "synonyms": "couch, sofa, chesterfield\npop, soda\ntoque, hat",
+ "encryptionKey": null
+ }
+ ]
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceResetIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceResetIndexer.json
new file mode 100644
index 000000000000..6f3c5ec8ed27
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceResetIndexer.json
@@ -0,0 +1,11 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexerName": "myindexer",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "204": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceRunIndexer.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceRunIndexer.json
new file mode 100644
index 000000000000..0a59b91741a2
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/examples/SearchServiceRunIndexer.json
@@ -0,0 +1,11 @@
+{
+ "parameters": {
+ "searchServiceName": "myservice",
+ "searchDnsSuffix": "search.windows.net",
+ "indexerName": "myindexer",
+ "api-version": "2019-05-06-Preview"
+ },
+ "responses": {
+ "202": {}
+ }
+}
diff --git a/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/searchservice.json b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/searchservice.json
new file mode 100644
index 000000000000..da4cbe1887e1
--- /dev/null
+++ b/specification/search/data-plane/Microsoft.Azure.Search.Service/track1/preview/2019-05-06-preview/searchservice.json
@@ -0,0 +1,5640 @@
+{
+ "swagger": "2.0",
+ "info": {
+ "title": "SearchServiceClient",
+ "description": "Client that can be used to manage and query indexes and documents, as well as manage other resources, on a search service.",
+ "version": "2019-05-06-Preview",
+ "x-ms-code-generation-settings": {
+ "useDateTimeOffset": true
+ }
+ },
+ "x-ms-parameterized-host": {
+ "hostTemplate": "https://{searchServiceName}.{searchDnsSuffix}",
+ "useSchemePrefix": false,
+ "parameters": [
+ {
+ "$ref": "#/parameters/SearchServiceNameParameter"
+ },
+ {
+ "$ref": "#/parameters/SearchDnsSuffixParameter"
+ }
+ ]
+ },
+ "consumes": [
+ "application/json"
+ ],
+ "produces": [
+ "application/json"
+ ],
+ "paths": {
+ "/datasources('{dataSourceName}')": {
+ "put": {
+ "tags": [
+ "DataSources"
+ ],
+ "operationId": "DataSources_CreateOrUpdate",
+ "x-ms-examples": {
+ "SearchServiceCreateOrUpdateDataSource": {
+ "$ref": "./examples/SearchServiceCreateOrUpdateDataSource.json"
+ }
+ },
+ "description": "Creates a new datasource or updates a datasource if it already exists.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Update-Data-Source"
+ },
+ "parameters": [
+ {
+ "name": "dataSourceName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the datasource to create or update."
+ },
+ {
+ "name": "dataSource",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/DataSource"
+ },
+ "description": "The definition of the datasource to create or update."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/PreferHeaderParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/DataSource"
+ }
+ },
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/DataSource"
+ }
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "DataSources"
+ ],
+ "operationId": "DataSources_Delete",
+ "x-ms-examples": {
+ "SearchServiceDeleteDataSource": {
+ "$ref": "./examples/SearchServiceDeleteDataSource.json"
+ }
+ },
+ "description": "Deletes a datasource.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Delete-Data-Source"
+ },
+ "parameters": [
+ {
+ "name": "dataSourceName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the datasource to delete."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "204": {
+ "description": ""
+ },
+ "404": {
+ "description": ""
+ }
+ }
+ },
+ "get": {
+ "tags": [
+ "DataSources"
+ ],
+ "operationId": "DataSources_Get",
+ "x-ms-examples": {
+ "SearchServiceGetDataSource": {
+ "$ref": "./examples/SearchServiceGetDataSource.json"
+ }
+ },
+ "description": "Retrieves a datasource definition.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Data-Source"
+ },
+ "parameters": [
+ {
+ "name": "dataSourceName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the datasource to retrieve."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/DataSource"
+ }
+ }
+ }
+ }
+ },
+ "/datasources": {
+ "get": {
+ "tags": [
+ "DataSources"
+ ],
+ "operationId": "DataSources_List",
+ "x-ms-examples": {
+ "SearchServiceListDataSources": {
+ "$ref": "./examples/SearchServiceListDataSources.json"
+ }
+ },
+ "description": "Lists all datasources available for a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/List-Data-Sources"
+ },
+ "parameters": [
+ {
+ "name": "$select",
+ "in": "query",
+ "required": false,
+ "type": "string",
+ "description": "Selects which top-level properties of the data sources to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/DataSourceListResult"
+ }
+ }
+ }
+ },
+ "post": {
+ "tags": [
+ "DataSources"
+ ],
+ "operationId": "DataSources_Create",
+ "x-ms-examples": {
+ "SearchServiceCreateDataSource": {
+ "$ref": "./examples/SearchServiceCreateDataSource.json"
+ }
+ },
+ "description": "Creates a new datasource.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Data-Source"
+ },
+ "parameters": [
+ {
+ "name": "dataSource",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/DataSource"
+ },
+ "description": "The definition of the datasource to create."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/DataSource"
+ }
+ }
+ }
+ }
+ },
+ "/indexers('{indexerName}')/search.reset": {
+ "post": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_Reset",
+ "x-ms-examples": {
+ "SearchServiceResetIndexer": {
+ "$ref": "./examples/SearchServiceResetIndexer.json"
+ }
+ },
+ "description": "Resets the change tracking state associated with an indexer.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Reset-Indexer"
+ },
+ "parameters": [
+ {
+ "name": "indexerName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the indexer to reset."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "204": {
+ "description": ""
+ }
+ }
+ }
+ },
+ "/indexers('{indexerName}')/search.run": {
+ "post": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_Run",
+ "x-ms-examples": {
+ "SearchServiceRunIndexer": {
+ "$ref": "./examples/SearchServiceRunIndexer.json"
+ }
+ },
+ "description": "Runs an indexer on-demand.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Run-Indexer"
+ },
+ "parameters": [
+ {
+ "name": "indexerName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the indexer to run."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "202": {
+ "description": ""
+ }
+ }
+ }
+ },
+ "/indexers('{indexerName}')": {
+ "put": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_CreateOrUpdate",
+ "x-ms-examples": {
+ "SearchServiceCreateOrUpdateIndexer": {
+ "$ref": "./examples/SearchServiceCreateOrUpdateIndexer.json"
+ }
+ },
+ "description": "Creates a new indexer or updates an indexer if it already exists.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Indexer"
+ },
+ "parameters": [
+ {
+ "name": "indexerName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the indexer to create or update."
+ },
+ {
+ "name": "indexer",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/Indexer"
+ },
+ "description": "The definition of the indexer to create or update."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/PreferHeaderParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Indexer"
+ }
+ },
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Indexer"
+ }
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_Delete",
+ "x-ms-examples": {
+ "SearchServiceDeleteIndexer": {
+ "$ref": "./examples/SearchServiceDeleteIndexer.json"
+ }
+ },
+ "description": "Deletes an indexer.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Delete-Indexer"
+ },
+ "parameters": [
+ {
+ "name": "indexerName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the indexer to delete."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "404": {
+ "description": ""
+ },
+ "204": {
+ "description": ""
+ }
+ }
+ },
+ "get": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_Get",
+ "x-ms-examples": {
+ "SearchServiceGetIndexer": {
+ "$ref": "./examples/SearchServiceGetIndexer.json"
+ }
+ },
+ "description": "Retrieves an indexer definition.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Indexer"
+ },
+ "parameters": [
+ {
+ "name": "indexerName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the indexer to retrieve."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Indexer"
+ }
+ }
+ }
+ }
+ },
+ "/indexers": {
+ "get": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_List",
+ "x-ms-examples": {
+ "SearchServiceListIndexers": {
+ "$ref": "./examples/SearchServiceListIndexers.json"
+ }
+ },
+ "description": "Lists all indexers available for a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/List-Indexers"
+ },
+ "parameters": [
+ {
+ "name": "$select",
+ "in": "query",
+ "required": false,
+ "type": "string",
+ "description": "Selects which top-level properties of the indexers to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/IndexerListResult"
+ }
+ }
+ }
+ },
+ "post": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_Create",
+ "x-ms-examples": {
+ "SearchServiceCreateIndexer": {
+ "$ref": "./examples/SearchServiceCreateIndexer.json"
+ }
+ },
+ "description": "Creates a new indexer.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Indexer"
+ },
+ "parameters": [
+ {
+ "name": "indexer",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/Indexer"
+ },
+ "description": "The definition of the indexer to create."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Indexer"
+ }
+ }
+ }
+ }
+ },
+ "/indexers('{indexerName}')/search.status": {
+ "get": {
+ "tags": [
+ "Indexers"
+ ],
+ "operationId": "Indexers_GetStatus",
+ "x-ms-examples": {
+ "SearchServiceGetIndexerStatus": {
+ "$ref": "./examples/SearchServiceGetIndexerStatus.json"
+ }
+ },
+ "description": "Returns the current status and execution history of an indexer.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Indexer-Status"
+ },
+ "parameters": [
+ {
+ "name": "indexerName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the indexer for which to retrieve status."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/IndexerExecutionInfo"
+ }
+ }
+ }
+ }
+ },
+ "/skillsets('{skillsetName}')": {
+ "put": {
+ "tags": [
+ "Skillsets"
+ ],
+ "operationId": "Skillsets_CreateOrUpdate",
+ "x-ms-examples": {
+ "SearchServiceCreateOrUpdateSkillset": {
+ "$ref": "./examples/SearchServiceCreateOrUpdateSkillset.json"
+ }
+ },
+ "description": "Creates a new skillset in a search service or updates the skillset if it already exists.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/update-skillset"
+ },
+ "parameters": [
+ {
+ "name": "skillsetName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the skillset to create or update."
+ },
+ {
+ "name": "skillset",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/Skillset"
+ },
+ "description": "The skillset containing one or more skills to create or update in a search service."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/PreferHeaderParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "The skillset is successfully updated.",
+ "schema": {
+ "$ref": "#/definitions/Skillset"
+ }
+ },
+ "201": {
+ "description": "The skillset is successfully created.",
+ "schema": {
+ "$ref": "#/definitions/Skillset"
+ }
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "Skillsets"
+ ],
+ "operationId": "Skillsets_Delete",
+ "x-ms-examples": {
+ "SearchServiceDeleteSkillset": {
+ "$ref": "./examples/SearchServiceDeleteSkillset.json"
+ }
+ },
+ "description": "Deletes a skillset in a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/delete-skillset"
+ },
+ "parameters": [
+ {
+ "name": "skillsetName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the skillset to delete."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "204": {
+ "description": "The skillset is successfully deleted."
+ },
+ "404": {
+ "description": "The provided skillset name is not found."
+ }
+ }
+ },
+ "get": {
+ "tags": [
+ "Skillsets"
+ ],
+ "operationId": "Skillsets_Get",
+ "x-ms-examples": {
+ "SearchServiceGetSkillset": {
+ "$ref": "./examples/SearchServiceGetSkillset.json"
+ }
+ },
+ "description": "Retrieves a skillset in a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/get-skillset"
+ },
+ "parameters": [
+ {
+ "name": "skillsetName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the skillset to retrieve."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "The skillset is successfully returned.",
+ "schema": {
+ "$ref": "#/definitions/Skillset"
+ }
+ }
+ }
+ }
+ },
+ "/skillsets": {
+ "get": {
+ "tags": [
+ "Skillsets"
+ ],
+ "operationId": "Skillsets_List",
+ "x-ms-examples": {
+ "SearchServiceListSkillsets": {
+ "$ref": "./examples/SearchServiceListSkillsets.json"
+ }
+ },
+ "description": "List all skillsets in a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/list-skillset"
+ },
+ "parameters": [
+ {
+ "name": "$select",
+ "in": "query",
+ "required": false,
+ "type": "string",
+ "description": "Selects which top-level properties of the skillsets to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "The list is successfully returned.",
+ "schema": {
+ "$ref": "#/definitions/SkillsetListResult"
+ }
+ }
+ }
+ },
+ "post": {
+ "tags": [
+ "Skillsets"
+ ],
+ "operationId": "Skillsets_Create",
+ "x-ms-examples": {
+ "SearchServiceCreateSkillset": {
+ "$ref": "./examples/SearchServiceCreateSkillset.json"
+ }
+ },
+ "description": "Creates a new skillset in a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/create-skillset"
+ },
+ "parameters": [
+ {
+ "name": "skillset",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/Skillset"
+ },
+ "description": "The skillset containing one or more skills to create in a search service."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "201": {
+ "description": "The skillset is successfully created.",
+ "schema": {
+ "$ref": "#/definitions/Skillset"
+ }
+ }
+ }
+ }
+ },
+ "/synonymmaps('{synonymMapName}')": {
+ "put": {
+ "tags": [
+ "SynonymMaps"
+ ],
+ "operationId": "SynonymMaps_CreateOrUpdate",
+ "x-ms-examples": {
+ "SearchServiceCreateOrUpdateSynonymMap": {
+ "$ref": "./examples/SearchServiceCreateOrUpdateSynonymMap.json"
+ }
+ },
+ "description": "Creates a new synonym map or updates a synonym map if it already exists.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Update-Synonym-Map"
+ },
+ "parameters": [
+ {
+ "name": "synonymMapName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the synonym map to create or update."
+ },
+ {
+ "name": "synonymMap",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/SynonymMap"
+ },
+ "description": "The definition of the synonym map to create or update."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/PreferHeaderParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/SynonymMap"
+ }
+ },
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/SynonymMap"
+ }
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "SynonymMaps"
+ ],
+ "operationId": "SynonymMaps_Delete",
+ "x-ms-examples": {
+ "SearchServiceDeleteSynonymMap": {
+ "$ref": "./examples/SearchServiceDeleteSynonymMap.json"
+ }
+ },
+ "description": "Deletes a synonym map.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Delete-Synonym-Map"
+ },
+ "parameters": [
+ {
+ "name": "synonymMapName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the synonym map to delete."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "204": {
+ "description": ""
+ },
+ "404": {
+ "description": ""
+ }
+ }
+ },
+ "get": {
+ "tags": [
+ "SynonymMaps"
+ ],
+ "operationId": "SynonymMaps_Get",
+ "x-ms-examples": {
+ "SearchServiceGetSynonymMap": {
+ "$ref": "./examples/SearchServiceGetSynonymMap.json"
+ }
+ },
+ "description": "Retrieves a synonym map definition.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Synonym-Map"
+ },
+ "parameters": [
+ {
+ "name": "synonymMapName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the synonym map to retrieve."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/SynonymMap"
+ }
+ }
+ }
+ }
+ },
+ "/synonymmaps": {
+ "get": {
+ "tags": [
+ "SynonymMaps"
+ ],
+ "operationId": "SynonymMaps_List",
+ "x-ms-examples": {
+ "SearchServiceListSynonymMaps": {
+ "$ref": "./examples/SearchServiceListSynonymMaps.json"
+ }
+ },
+ "description": "Lists all synonym maps available for a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/List-Synonym-Maps"
+ },
+ "parameters": [
+ {
+ "name": "$select",
+ "in": "query",
+ "required": false,
+ "type": "string",
+ "description": "Selects which top-level properties of the synonym maps to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/SynonymMapListResult"
+ }
+ }
+ }
+ },
+ "post": {
+ "tags": [
+ "SynonymMaps"
+ ],
+ "operationId": "SynonymMaps_Create",
+ "x-ms-examples": {
+ "SearchServiceCreateSynonymMap": {
+ "$ref": "./examples/SearchServiceCreateSynonymMap.json"
+ }
+ },
+ "description": "Creates a new synonym map.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Synonym-Map"
+ },
+ "parameters": [
+ {
+ "name": "synonymMap",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/SynonymMap"
+ },
+ "description": "The definition of the synonym map to create."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/SynonymMap"
+ }
+ }
+ }
+ }
+ },
+ "/indexes": {
+ "post": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_Create",
+ "x-ms-examples": {
+ "SearchServiceCreateIndex": {
+ "$ref": "./examples/SearchServiceCreateIndex.json"
+ }
+ },
+ "description": "Creates a new search index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Index"
+ },
+ "parameters": [
+ {
+ "name": "index",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/Index"
+ },
+ "description": "The definition of the index to create."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Index"
+ }
+ }
+ }
+ },
+ "get": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_List",
+ "x-ms-examples": {
+ "SearchServiceListIndexes": {
+ "$ref": "./examples/SearchServiceListIndexes.json"
+ }
+ },
+ "description": "Lists all indexes available for a search service.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/List-Indexes"
+ },
+ "parameters": [
+ {
+ "name": "$select",
+ "in": "query",
+ "required": false,
+ "type": "string",
+ "description": "Selects which top-level properties of the index definitions to retrieve. Specified as a comma-separated list of JSON property names, or '*' for all properties. The default is all properties."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/IndexListResult"
+ }
+ }
+ }
+ }
+ },
+ "/indexes('{indexName}')": {
+ "put": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_CreateOrUpdate",
+ "x-ms-examples": {
+ "SearchServiceCreateOrUpdateIndex": {
+ "$ref": "./examples/SearchServiceCreateOrUpdateIndex.json"
+ }
+ },
+ "description": "Creates a new search index or updates an index if it already exists.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Update-Index"
+ },
+ "parameters": [
+ {
+ "name": "indexName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The definition of the index to create or update."
+ },
+ {
+ "name": "index",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/Index"
+ },
+ "description": "The definition of the index to create or update."
+ },
+ {
+ "name": "allowIndexDowntime",
+ "in": "query",
+ "required": false,
+ "type": "boolean",
+ "description": "Allows new analyzers, tokenizers, token filters, or char filters to be added to an index by taking the index offline for at least a few seconds. This temporarily causes indexing and query requests to fail. Performance and write availability of the index can be impaired for several minutes after the index is updated, or longer for very large indexes."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/PreferHeaderParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Index"
+ }
+ },
+ "201": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Index"
+ }
+ }
+ }
+ },
+ "delete": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_Delete",
+ "x-ms-examples": {
+ "SearchServiceDeleteIndex": {
+ "$ref": "./examples/SearchServiceDeleteIndex.json"
+ }
+ },
+ "description": "Deletes a search index and all the documents it contains.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Delete-Index"
+ },
+ "parameters": [
+ {
+ "name": "indexName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the index to delete."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/IfMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/IfNoneMatchParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "204": {
+ "description": ""
+ },
+ "404": {
+ "description": ""
+ }
+ }
+ },
+ "get": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_Get",
+ "x-ms-examples": {
+ "SearchServiceGetIndex": {
+ "$ref": "./examples/SearchServiceGetIndex.json"
+ }
+ },
+ "description": "Retrieves an index definition.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Index"
+ },
+ "parameters": [
+ {
+ "name": "indexName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the index to retrieve."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/Index"
+ }
+ }
+ }
+ }
+ },
+ "/indexes('{indexName}')/search.stats": {
+ "get": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_GetStatistics",
+ "x-ms-examples": {
+ "SearchServiceGetIndexStatistics": {
+ "$ref": "./examples/SearchServiceGetIndexStatistics.json"
+ }
+ },
+ "description": "Returns statistics for the given index, including a document count and storage usage.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Get-Index-Statistics"
+ },
+ "parameters": [
+ {
+ "name": "indexName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the index for which to retrieve statistics."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/IndexGetStatisticsResult"
+ }
+ }
+ }
+ }
+ },
+ "/indexes('{indexName}')/search.analyze": {
+ "post": {
+ "tags": [
+ "Indexes"
+ ],
+ "operationId": "Indexes_Analyze",
+ "x-ms-examples": {
+ "SearchServiceIndexAnalyze": {
+ "$ref": "./examples/SearchServiceIndexAnalyze.json"
+ }
+ },
+ "description": "Shows how an analyzer breaks text into tokens.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/test-analyzer"
+ },
+ "parameters": [
+ {
+ "name": "indexName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "description": "The name of the index for which to test an analyzer."
+ },
+ {
+ "name": "request",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/AnalyzeRequest"
+ },
+ "description": "The text and analyzer or analysis components to test."
+ },
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/AnalyzeResult"
+ }
+ }
+ }
+ }
+ },
+ "/servicestats": {
+ "get": {
+ "tags": [
+ "Service"
+ ],
+ "operationId": "GetServiceStatistics",
+ "x-ms-examples": {
+ "SearchServiceGetServiceStatistics": {
+ "$ref": "./examples/SearchServiceGetServiceStatistics.json"
+ }
+ },
+ "description": "Gets service level statistics for a search service.",
+ "parameters": [
+ {
+ "$ref": "#/parameters/ClientRequestIdParameter"
+ },
+ {
+ "$ref": "#/parameters/ApiVersionParameter"
+ }
+ ],
+ "x-ms-request-id": "request-id",
+ "responses": {
+ "200": {
+ "description": "",
+ "schema": {
+ "$ref": "#/definitions/ServiceStatistics"
+ }
+ }
+ }
+ }
+ }
+ },
+ "definitions": {
+ "AnalyzeRequest": {
+ "properties": {
+ "text": {
+ "type": "string",
+ "description": "The text to break into tokens."
+ },
+ "analyzer": {
+ "$ref": "#/definitions/AnalyzerName",
+ "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."
+ },
+ "tokenizer": {
+ "$ref": "#/definitions/TokenizerName",
+ "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."
+ },
+ "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."
+ },
+ "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."
+ }
+ },
+ "required": [
+ "text"
+ ],
+ "description": "Specifies some text and analysis components used to break that text into tokens."
+ },
+ "AnalyzeResult": {
+ "properties": {
+ "tokens": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/TokenInfo"
+ },
+ "description": "The list of tokens returned by the analyzer specified in the request."
+ }
+ },
+ "description": "The result of testing an analyzer on text."
+ },
+ "TokenInfo": {
+ "properties": {
+ "token": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The token returned by the analyzer."
+ },
+ "startOffset": {
+ "type": "integer",
+ "format": "int32",
+ "readOnly": true,
+ "description": "The index of the first character of the token in the input text."
+ },
+ "endOffset": {
+ "type": "integer",
+ "format": "int32",
+ "readOnly": true,
+ "description": "The index of the last character of the token in the input text."
+ },
+ "position": {
+ "type": "integer",
+ "format": "int32",
+ "readOnly": true,
+ "description": "The position of the token in the input text relative to other tokens. The first token in the input text has position 0, the next has position 1, and so on. Depending on the analyzer used, some tokens might have the same position, for example if they are synonyms of each other."
+ }
+ },
+ "description": "Information about a token returned by an analyzer."
+ },
+ "AnalyzerName": {
+ "type": "string",
+ "enum": [
+ "ar.microsoft",
+ "ar.lucene",
+ "hy.lucene",
+ "bn.microsoft",
+ "eu.lucene",
+ "bg.microsoft",
+ "bg.lucene",
+ "ca.microsoft",
+ "ca.lucene",
+ "zh-Hans.microsoft",
+ "zh-Hans.lucene",
+ "zh-Hant.microsoft",
+ "zh-Hant.lucene",
+ "hr.microsoft",
+ "cs.microsoft",
+ "cs.lucene",
+ "da.microsoft",
+ "da.lucene",
+ "nl.microsoft",
+ "nl.lucene",
+ "en.microsoft",
+ "en.lucene",
+ "et.microsoft",
+ "fi.microsoft",
+ "fi.lucene",
+ "fr.microsoft",
+ "fr.lucene",
+ "gl.lucene",
+ "de.microsoft",
+ "de.lucene",
+ "el.microsoft",
+ "el.lucene",
+ "gu.microsoft",
+ "he.microsoft",
+ "hi.microsoft",
+ "hi.lucene",
+ "hu.microsoft",
+ "hu.lucene",
+ "is.microsoft",
+ "id.microsoft",
+ "id.lucene",
+ "ga.lucene",
+ "it.microsoft",
+ "it.lucene",
+ "ja.microsoft",
+ "ja.lucene",
+ "kn.microsoft",
+ "ko.microsoft",
+ "ko.lucene",
+ "lv.microsoft",
+ "lv.lucene",
+ "lt.microsoft",
+ "ml.microsoft",
+ "ms.microsoft",
+ "mr.microsoft",
+ "nb.microsoft",
+ "no.lucene",
+ "fa.lucene",
+ "pl.microsoft",
+ "pl.lucene",
+ "pt-BR.microsoft",
+ "pt-BR.lucene",
+ "pt-PT.microsoft",
+ "pt-PT.lucene",
+ "pa.microsoft",
+ "ro.microsoft",
+ "ro.lucene",
+ "ru.microsoft",
+ "ru.lucene",
+ "sr-cyrillic.microsoft",
+ "sr-latin.microsoft",
+ "sk.microsoft",
+ "sl.microsoft",
+ "es.microsoft",
+ "es.lucene",
+ "sv.microsoft",
+ "sv.lucene",
+ "ta.microsoft",
+ "te.microsoft",
+ "th.microsoft",
+ "th.lucene",
+ "tr.microsoft",
+ "tr.lucene",
+ "uk.microsoft",
+ "ur.microsoft",
+ "vi.microsoft",
+ "standard.lucene",
+ "standardasciifolding.lucene",
+ "keyword",
+ "pattern",
+ "simple",
+ "stop",
+ "whitespace"
+ ],
+ "x-ms-enum": {
+ "name": "AnalyzerName",
+ "modelAsString": false
+ },
+ "description": "Defines the names of all text analyzers supported by Azure Cognitive Search.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Language-support"
+ }
+ },
+ "TokenizerName": {
+ "type": "string",
+ "enum": [
+ "classic",
+ "edgeNGram",
+ "keyword_v2",
+ "letter",
+ "lowercase",
+ "microsoft_language_tokenizer",
+ "microsoft_language_stemming_tokenizer",
+ "nGram",
+ "path_hierarchy_v2",
+ "pattern",
+ "standard_v2",
+ "uax_url_email",
+ "whitespace"
+ ],
+ "x-ms-enum": {
+ "name": "TokenizerName",
+ "modelAsString": false
+ },
+ "description": "Defines the names of all tokenizers supported by Azure Cognitive Search.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "TokenFilterName": {
+ "type": "string",
+ "enum": [
+ "arabic_normalization",
+ "apostrophe",
+ "asciifolding",
+ "cjk_bigram",
+ "cjk_width",
+ "classic",
+ "common_grams",
+ "edgeNGram_v2",
+ "elision",
+ "german_normalization",
+ "hindi_normalization",
+ "indic_normalization",
+ "keyword_repeat",
+ "kstem",
+ "length",
+ "limit",
+ "lowercase",
+ "nGram_v2",
+ "persian_normalization",
+ "phonetic",
+ "porter_stem",
+ "reverse",
+ "scandinavian_normalization",
+ "scandinavian_folding",
+ "shingle",
+ "snowball",
+ "sorani_normalization",
+ "stemmer",
+ "stopwords",
+ "trim",
+ "truncate",
+ "unique",
+ "uppercase",
+ "word_delimiter"
+ ],
+ "x-ms-enum": {
+ "name": "TokenFilterName",
+ "modelAsString": false
+ },
+ "description": "Defines the names of all token filters supported by Azure Cognitive Search.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "CharFilterName": {
+ "type": "string",
+ "enum": [
+ "html_strip"
+ ],
+ "x-ms-enum": {
+ "name": "CharFilterName",
+ "modelAsString": false
+ },
+ "description": "Defines the names of all character filters supported by Azure Cognitive Search.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "RegexFlags": {
+ "type": "string",
+ "enum": [
+ "CANON_EQ",
+ "CASE_INSENSITIVE",
+ "COMMENTS",
+ "DOTALL",
+ "LITERAL",
+ "MULTILINE",
+ "UNICODE_CASE",
+ "UNIX_LINES"
+ ],
+ "x-ms-enum": {
+ "name": "RegexFlags",
+ "modelAsString": false
+ },
+ "description": "Defines flags that can be combined to control how regular expressions are used in the pattern analyzer and pattern tokenizer.",
+ "externalDocs": {
+ "url": "http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html#field_summary"
+ }
+ },
+ "DataType": {
+ "type": "string",
+ "enum": [
+ "Edm.String",
+ "Edm.Int32",
+ "Edm.Int64",
+ "Edm.Double",
+ "Edm.Boolean",
+ "Edm.DateTimeOffset",
+ "Edm.GeographyPoint",
+ "Edm.ComplexType"
+ ],
+ "x-ms-enum": {
+ "name": "DataType",
+ "modelAsString": false
+ },
+ "description": "Defines the data type of a field in a search index."
+ },
+ "Analyzer": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference"
+ },
+ "description": "The name of the analyzer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters."
+ }
+ },
+ "required": [
+ "@odata.type",
+ "name"
+ ],
+ "description": "Abstract base class for analyzers."
+ },
+ "CustomAnalyzer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.CustomAnalyzer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Analyzer"
+ }
+ ],
+ "properties": {
+ "tokenizer": {
+ "$ref": "#/definitions/TokenizerName",
+ "description": "The name of the tokenizer to use to divide continuous text into a sequence of tokens, such as breaking a sentence into words."
+ },
+ "tokenFilters": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/TokenFilterName",
+ "x-nullable": false
+ },
+ "description": "A list of token filters used to filter out or modify the tokens generated by a tokenizer. For example, you can specify a lowercase filter that converts all characters to lowercase. The filters are run in the order in which they are listed."
+ },
+ "charFilters": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/CharFilterName",
+ "x-nullable": false
+ },
+ "description": "A list of character filters used to prepare input text before it is processed by the tokenizer. For instance, they can replace certain characters or symbols. The filters are run in the order in which they are listed."
+ }
+ },
+ "required": [
+ "tokenizer"
+ ],
+ "description": "Allows you to take control over the process of converting text into indexable/searchable tokens. It's a user-defined configuration consisting of a single predefined tokenizer and one or more filters. The tokenizer is responsible for breaking text into tokens, and the filters for modifying tokens emitted by the tokenizer."
+ },
+ "PatternAnalyzer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternAnalyzer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Analyzer"
+ }
+ ],
+ "properties": {
+ "lowercase": {
+ "x-ms-client-name": "LowerCaseTerms",
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether terms should be lower-cased. Default is true."
+ },
+ "pattern": {
+ "type": "string",
+ "default": "\\W+",
+ "description": "A regular expression pattern to match token separators. Default is an expression that matches one or more whitespace characters."
+ },
+ "flags": {
+ "$ref": "#/definitions/RegexFlags",
+ "description": "Regular expression flags."
+ },
+ "stopwords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of stopwords."
+ }
+ },
+ "description": "Flexibly separates text into terms via a regular expression pattern. This analyzer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/PatternAnalyzer.html"
+ }
+ },
+ "StandardAnalyzer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StandardAnalyzer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Analyzer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "maximum": 300,
+ "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters."
+ },
+ "stopwords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of stopwords."
+ }
+ },
+ "description": "Standard Apache Lucene analyzer; Composed of the standard tokenizer, lowercase filter and stop filter.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/StandardAnalyzer.html"
+ }
+ },
+ "StopAnalyzer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StopAnalyzer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Analyzer"
+ }
+ ],
+ "properties": {
+ "stopwords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of stopwords."
+ }
+ },
+ "description": "Divides text at non-letters; Applies the lowercase and stopword token filters. This analyzer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/StopAnalyzer.html"
+ }
+ },
+ "Tokenizer": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference"
+ },
+ "description": "The name of the tokenizer. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters."
+ }
+ },
+ "required": [
+ "@odata.type",
+ "name"
+ ],
+ "description": "Abstract base class for tokenizers.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "ClassicTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.ClassicTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "maximum": 300,
+ "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters."
+ }
+ },
+ "description": "Grammar-based tokenizer that is suitable for processing most European-language documents. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/ClassicTokenizer.html"
+ }
+ },
+ "TokenCharacterKind": {
+ "type": "string",
+ "enum": [
+ "letter",
+ "digit",
+ "whitespace",
+ "punctuation",
+ "symbol"
+ ],
+ "x-ms-enum": {
+ "name": "TokenCharacterKind",
+ "modelAsString": false
+ },
+ "description": "Represents classes of characters on which a token filter can operate."
+ },
+ "EdgeNGramTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.EdgeNGramTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "minGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "maximum": 300,
+ "description": "The minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram."
+ },
+ "maxGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "maximum": 300,
+ "description": "The maximum n-gram length. Default is 2. Maximum is 300."
+ },
+ "tokenChars": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/TokenCharacterKind",
+ "x-nullable": false
+ },
+ "description": "Character classes to keep in the tokens."
+ }
+ },
+ "description": "Tokenizes the input from an edge into n-grams of the given size(s). This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "https://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramTokenizer.html"
+ }
+ },
+ "KeywordTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeywordTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "bufferSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 256,
+ "description": "The read buffer size in bytes. Default is 256."
+ }
+ },
+ "description": "Emits the entire input as a single token. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/KeywordTokenizer.html"
+ },
+ "x-ms-external": true
+ },
+ "KeywordTokenizerV2": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeywordTokenizerV2",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 256,
+ "maximum": 300,
+ "description": "The maximum token length. Default is 256. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters."
+ }
+ },
+ "description": "Emits the entire input as a single token. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/KeywordTokenizer.html"
+ }
+ },
+ "MicrosoftTokenizerLanguage": {
+ "type": "string",
+ "enum": [
+ "bangla",
+ "bulgarian",
+ "catalan",
+ "chineseSimplified",
+ "chineseTraditional",
+ "croatian",
+ "czech",
+ "danish",
+ "dutch",
+ "english",
+ "french",
+ "german",
+ "greek",
+ "gujarati",
+ "hindi",
+ "icelandic",
+ "indonesian",
+ "italian",
+ "japanese",
+ "kannada",
+ "korean",
+ "malay",
+ "malayalam",
+ "marathi",
+ "norwegianBokmaal",
+ "polish",
+ "portuguese",
+ "portugueseBrazilian",
+ "punjabi",
+ "romanian",
+ "russian",
+ "serbianCyrillic",
+ "serbianLatin",
+ "slovenian",
+ "spanish",
+ "swedish",
+ "tamil",
+ "telugu",
+ "thai",
+ "ukrainian",
+ "urdu",
+ "vietnamese"
+ ],
+ "x-ms-enum": {
+ "name": "MicrosoftTokenizerLanguage",
+ "modelAsString": false
+ },
+ "description": "Lists the languages supported by the Microsoft language tokenizer."
+ },
+ "MicrosoftLanguageTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.MicrosoftLanguageTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "maximum": 300,
+ "description": "The maximum token length. Tokens longer than the maximum length are split. Maximum token length that can be used is 300 characters. Tokens longer than 300 characters are first split into tokens of length 300 and then each of those tokens is split based on the max token length set. Default is 255."
+ },
+ "isSearchTokenizer": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating how the tokenizer is used. Set to true if used as the search tokenizer, set to false if used as the indexing tokenizer. Default is false."
+ },
+ "language": {
+ "$ref": "#/definitions/MicrosoftTokenizerLanguage",
+ "description": "The language to use. The default is English."
+ }
+ },
+ "description": "Divides text using language-specific rules."
+ },
+ "MicrosoftStemmingTokenizerLanguage": {
+ "type": "string",
+ "enum": [
+ "arabic",
+ "bangla",
+ "bulgarian",
+ "catalan",
+ "croatian",
+ "czech",
+ "danish",
+ "dutch",
+ "english",
+ "estonian",
+ "finnish",
+ "french",
+ "german",
+ "greek",
+ "gujarati",
+ "hebrew",
+ "hindi",
+ "hungarian",
+ "icelandic",
+ "indonesian",
+ "italian",
+ "kannada",
+ "latvian",
+ "lithuanian",
+ "malay",
+ "malayalam",
+ "marathi",
+ "norwegianBokmaal",
+ "polish",
+ "portuguese",
+ "portugueseBrazilian",
+ "punjabi",
+ "romanian",
+ "russian",
+ "serbianCyrillic",
+ "serbianLatin",
+ "slovak",
+ "slovenian",
+ "spanish",
+ "swedish",
+ "tamil",
+ "telugu",
+ "turkish",
+ "ukrainian",
+ "urdu"
+ ],
+ "x-ms-enum": {
+ "name": "MicrosoftStemmingTokenizerLanguage",
+ "modelAsString": false
+ },
+ "description": "Lists the languages supported by the Microsoft language stemming tokenizer."
+ },
+ "MicrosoftLanguageStemmingTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "maximum": 300,
+ "description": "The maximum token length. Tokens longer than the maximum length are split. Maximum token length that can be used is 300 characters. Tokens longer than 300 characters are first split into tokens of length 300 and then each of those tokens is split based on the max token length set. Default is 255."
+ },
+ "isSearchTokenizer": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating how the tokenizer is used. Set to true if used as the search tokenizer, set to false if used as the indexing tokenizer. Default is false."
+ },
+ "language": {
+ "$ref": "#/definitions/MicrosoftStemmingTokenizerLanguage",
+ "description": "The language to use. The default is English."
+ }
+ },
+ "description": "Divides text using language-specific rules and reduces words to their base forms."
+ },
+ "NGramTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.NGramTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "minGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "maximum": 300,
+ "description": "The minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram."
+ },
+ "maxGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "maximum": 300,
+ "description": "The maximum n-gram length. Default is 2. Maximum is 300."
+ },
+ "tokenChars": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/TokenCharacterKind",
+ "x-nullable": false
+ },
+ "description": "Character classes to keep in the tokens."
+ }
+ },
+ "description": "Tokenizes the input into n-grams of the given size(s). This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenizer.html"
+ }
+ },
+ "PathHierarchyTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PathHierarchyTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "delimiter": {
+ "type": "string",
+ "format": "char",
+ "default": "/",
+ "description": "The delimiter character to use. Default is \"/\"."
+ },
+ "replacement": {
+ "type": "string",
+ "format": "char",
+ "default": "/",
+ "description": "A value that, if set, replaces the delimiter character. Default is \"/\"."
+ },
+ "bufferSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1024,
+ "description": "The buffer size. Default is 1024."
+ },
+ "reverse": {
+ "x-ms-client-name": "ReverseTokenOrder",
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to generate tokens in reverse order. Default is false."
+ },
+ "skip": {
+ "x-ms-client-name": "NumberOfTokensToSkip",
+ "type": "integer",
+ "format": "int32",
+ "default": 0,
+ "description": "The number of initial tokens to skip. Default is 0."
+ }
+ },
+ "description": "Tokenizer for path-like hierarchies. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/path/PathHierarchyTokenizer.html"
+ },
+ "x-ms-external": true
+ },
+ "PathHierarchyTokenizerV2": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PathHierarchyTokenizerV2",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "delimiter": {
+ "type": "string",
+ "format": "char",
+ "default": "/",
+ "description": "The delimiter character to use. Default is \"/\"."
+ },
+ "replacement": {
+ "type": "string",
+ "format": "char",
+ "default": "/",
+ "description": "A value that, if set, replaces the delimiter character. Default is \"/\"."
+ },
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 300,
+ "maximum": 300,
+ "description": "The maximum token length. Default and maximum is 300."
+ },
+ "reverse": {
+ "x-ms-client-name": "ReverseTokenOrder",
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to generate tokens in reverse order. Default is false."
+ },
+ "skip": {
+ "x-ms-client-name": "NumberOfTokensToSkip",
+ "type": "integer",
+ "format": "int32",
+ "default": 0,
+ "description": "The number of initial tokens to skip. Default is 0."
+ }
+ },
+ "description": "Tokenizer for path-like hierarchies. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/path/PathHierarchyTokenizer.html"
+ }
+ },
+ "PatternTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "pattern": {
+ "type": "string",
+ "default": "\\W+",
+ "description": "A regular expression pattern to match token separators. Default is an expression that matches one or more whitespace characters."
+ },
+ "flags": {
+ "$ref": "#/definitions/RegexFlags",
+ "description": "Regular expression flags."
+ },
+ "group": {
+ "type": "integer",
+ "format": "int32",
+ "default": -1,
+ "description": "The zero-based ordinal of the matching group in the regular expression pattern to extract into tokens. Use -1 if you want to use the entire pattern to split the input into tokens, irrespective of matching groups. Default is -1."
+ }
+ },
+ "description": "Tokenizer that uses regex pattern matching to construct distinct tokens. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternTokenizer.html"
+ }
+ },
+ "StandardTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StandardTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split."
+ }
+ },
+ "description": "Breaks text following the Unicode Text Segmentation rules. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/StandardTokenizer.html"
+ },
+ "x-ms-external": true
+ },
+ "StandardTokenizerV2": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StandardTokenizerV2",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "maximum": 300,
+ "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters."
+ }
+ },
+ "description": "Breaks text following the Unicode Text Segmentation rules. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/StandardTokenizer.html"
+ }
+ },
+ "UaxUrlEmailTokenizer": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.UaxUrlEmailTokenizer",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Tokenizer"
+ }
+ ],
+ "properties": {
+ "maxTokenLength": {
+ "type": "integer",
+ "format": "int32",
+ "default": 255,
+ "maximum": 300,
+ "description": "The maximum token length. Default is 255. Tokens longer than the maximum length are split. The maximum token length that can be used is 300 characters."
+ }
+ },
+ "description": "Tokenizes urls and emails as one token. This tokenizer is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/standard/UAX29URLEmailTokenizer.html"
+ }
+ },
+ "TokenFilter": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference"
+ },
+ "description": "The name of the token filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters."
+ }
+ },
+ "required": [
+ "@odata.type",
+ "name"
+ ],
+ "description": "Abstract base class for token filters.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "AsciiFoldingTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.AsciiFoldingTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "preserveOriginal": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether the original token will be kept. Default is false."
+ }
+ },
+ "description": "Converts alphabetic, numeric, and symbolic Unicode characters which are not in the first 127 ASCII characters (the \"Basic Latin\" Unicode block) into their ASCII equivalents, if such equivalents exist. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/ASCIIFoldingFilter.html"
+ }
+ },
+ "CjkBigramTokenFilterScripts": {
+ "type": "string",
+ "enum": [
+ "han",
+ "hiragana",
+ "katakana",
+ "hangul"
+ ],
+ "x-ms-enum": {
+ "name": "CjkBigramTokenFilterScripts",
+ "modelAsString": false
+ },
+ "description": "Scripts that can be ignored by CjkBigramTokenFilter."
+ },
+ "CjkBigramTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.CjkBigramTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "ignoreScripts": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/CjkBigramTokenFilterScripts",
+ "x-nullable": false
+ },
+ "description": "The scripts to ignore."
+ },
+ "outputUnigrams": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to output both unigrams and bigrams (if true), or just bigrams (if false). Default is false."
+ }
+ },
+ "description": "Forms bigrams of CJK terms that are generated from StandardTokenizer. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/cjk/CJKBigramFilter.html"
+ }
+ },
+ "CommonGramTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.CommonGramTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "commonWords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The set of common words."
+ },
+ "ignoreCase": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether common words matching will be case insensitive. Default is false."
+ },
+ "queryMode": {
+ "x-ms-client-name": "UseQueryMode",
+ "type": "boolean",
+ "default": false,
+ "description": "A value that indicates whether the token filter is in query mode. When in query mode, the token filter generates bigrams and then removes common words and single terms followed by a common word. Default is false."
+ }
+ },
+ "required": [
+ "commonWords"
+ ],
+ "description": "Construct bigrams for frequently occurring terms while indexing. Single terms are still indexed too, with bigrams overlaid. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/commongrams/CommonGramsFilter.html"
+ }
+ },
+ "DictionaryDecompounderTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.DictionaryDecompounderTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "wordList": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of words to match against."
+ },
+ "minWordSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 5,
+ "maximum": 300,
+ "description": "The minimum word size. Only words longer than this get processed. Default is 5. Maximum is 300."
+ },
+ "minSubwordSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "maximum": 300,
+ "description": "The minimum subword size. Only subwords longer than this are outputted. Default is 2. Maximum is 300."
+ },
+ "maxSubwordSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 15,
+ "maximum": 300,
+ "description": "The maximum subword size. Only subwords shorter than this are outputted. Default is 15. Maximum is 300."
+ },
+ "onlyLongestMatch": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to add only the longest matching subword to the output. Default is false."
+ }
+ },
+ "required": [
+ "wordList"
+ ],
+ "description": "Decomposes compound words found in many Germanic languages. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/compound/DictionaryCompoundWordTokenFilter.html"
+ }
+ },
+ "EdgeNGramTokenFilterSide": {
+ "type": "string",
+ "enum": [
+ "front",
+ "back"
+ ],
+ "x-ms-enum": {
+ "name": "EdgeNGramTokenFilterSide",
+ "modelAsString": false
+ },
+ "description": "Specifies which side of the input an n-gram should be generated from."
+ },
+ "EdgeNGramTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.EdgeNGramTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "minGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "description": "The minimum n-gram length. Default is 1. Must be less than the value of maxGram."
+ },
+ "maxGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "description": "The maximum n-gram length. Default is 2."
+ },
+ "side": {
+ "$ref": "#/definitions/EdgeNGramTokenFilterSide",
+ "default": "front",
+ "description": "Specifies which side of the input the n-gram should be generated from. Default is \"front\"."
+ }
+ },
+ "description": "Generates n-grams of the given size(s) starting from the front or the back of an input token. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramTokenFilter.html"
+ },
+ "x-ms-external": true
+ },
+ "EdgeNGramTokenFilterV2": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.EdgeNGramTokenFilterV2",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "minGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "maximum": 300,
+ "description": "The minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram."
+ },
+ "maxGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "maximum": 300,
+ "description": "The maximum n-gram length. Default is 2. Maximum is 300."
+ },
+ "side": {
+ "$ref": "#/definitions/EdgeNGramTokenFilterSide",
+ "default": "front",
+ "description": "Specifies which side of the input the n-gram should be generated from. Default is \"front\"."
+ }
+ },
+ "description": "Generates n-grams of the given size(s) starting from the front or the back of an input token. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramTokenFilter.html"
+ }
+ },
+ "ElisionTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.ElisionTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "articles": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The set of articles to remove."
+ }
+ },
+ "description": "Removes elisions. For example, \"l'avion\" (the plane) will be converted to \"avion\" (plane). This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/util/ElisionFilter.html"
+ }
+ },
+ "KeepTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeepTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "keepWords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of words to keep."
+ },
+ "keepWordsCase": {
+ "x-ms-client-name": "LowerCaseKeepWords",
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to lower case all words first. Default is false."
+ }
+ },
+ "required": [
+ "keepWords"
+ ],
+ "description": "A token filter that only keeps tokens with text contained in a specified list of words. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/KeepWordFilter.html"
+ }
+ },
+ "KeywordMarkerTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.KeywordMarkerTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "keywords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of words to mark as keywords."
+ },
+ "ignoreCase": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to ignore case. If true, all words are converted to lower case first. Default is false."
+ }
+ },
+ "required": [
+ "keywords"
+ ],
+ "description": "Marks terms as keywords. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/KeywordMarkerFilter.html"
+ }
+ },
+ "LengthTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.LengthTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "min": {
+ "type": "integer",
+ "format": "int32",
+ "default": 0,
+ "maximum": 300,
+ "description": "The minimum length in characters. Default is 0. Maximum is 300. Must be less than the value of max."
+ },
+ "max": {
+ "type": "integer",
+ "format": "int32",
+ "default": 300,
+ "maximum": 300,
+ "description": "The maximum length in characters. Default and maximum is 300."
+ }
+ },
+ "description": "Removes words that are too long or too short. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/LengthFilter.html"
+ }
+ },
+ "LimitTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.LimitTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "maxTokenCount": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "description": "The maximum number of tokens to produce. Default is 1."
+ },
+ "consumeAllTokens": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether all tokens from the input must be consumed even if maxTokenCount is reached. Default is false."
+ }
+ },
+ "description": "Limits the number of tokens while indexing. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/LimitTokenCountFilter.html"
+ }
+ },
+ "NGramTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.NGramTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "minGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "description": "The minimum n-gram length. Default is 1. Must be less than the value of maxGram."
+ },
+ "maxGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "description": "The maximum n-gram length. Default is 2."
+ }
+ },
+ "description": "Generates n-grams of the given size(s). This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenFilter.html"
+ },
+ "x-ms-external": true
+ },
+ "NGramTokenFilterV2": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.NGramTokenFilterV2",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "minGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 1,
+ "maximum": 300,
+ "description": "The minimum n-gram length. Default is 1. Maximum is 300. Must be less than the value of maxGram."
+ },
+ "maxGram": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "maximum": 300,
+ "description": "The maximum n-gram length. Default is 2. Maximum is 300."
+ }
+ },
+ "description": "Generates n-grams of the given size(s). This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenFilter.html"
+ }
+ },
+ "PatternCaptureTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternCaptureTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "patterns": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of patterns to match against each token."
+ },
+ "preserveOriginal": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to return the original token even if one of the patterns matches. Default is true."
+ }
+ },
+ "required": [
+ "patterns"
+ ],
+ "description": "Uses Java regexes to emit multiple tokens - one for each capture group in one or more patterns. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternCaptureGroupTokenFilter.html"
+ }
+ },
+ "PatternReplaceTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternReplaceTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "pattern": {
+ "type": "string",
+ "description": "A regular expression pattern."
+ },
+ "replacement": {
+ "type": "string",
+ "description": "The replacement text."
+ }
+ },
+ "required": [
+ "pattern",
+ "replacement"
+ ],
+ "description": "A character filter that replaces characters in the input string. It uses a regular expression to identify character sequences to preserve and a replacement pattern to identify characters to replace. For example, given the input text \"aa bb aa bb\", pattern \"(aa)\\s+(bb)\", and replacement \"$1#$2\", the result would be \"aa#bb aa#bb\". This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternReplaceFilter.html"
+ }
+ },
+ "PhoneticEncoder": {
+ "type": "string",
+ "enum": [
+ "metaphone",
+ "doubleMetaphone",
+ "soundex",
+ "refinedSoundex",
+ "caverphone1",
+ "caverphone2",
+ "cologne",
+ "nysiis",
+ "koelnerPhonetik",
+ "haasePhonetik",
+ "beiderMorse"
+ ],
+ "x-ms-enum": {
+ "name": "PhoneticEncoder",
+ "modelAsString": false
+ },
+ "description": "Identifies the type of phonetic encoder to use with a PhoneticTokenFilter."
+ },
+ "PhoneticTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PhoneticTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "encoder": {
+ "$ref": "#/definitions/PhoneticEncoder",
+ "default": "metaphone",
+ "description": "The phonetic encoder to use. Default is \"metaphone\"."
+ },
+ "replace": {
+ "x-ms-client-name": "ReplaceOriginalTokens",
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether encoded tokens should replace original tokens. If false, encoded tokens are added as synonyms. Default is true."
+ }
+ },
+ "description": "Create tokens for phonetic matches. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "https://lucene.apache.org/core/4_10_3/analyzers-phonetic/org/apache/lucene/analysis/phonetic/package-tree.html"
+ }
+ },
+ "ShingleTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.ShingleTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "maxShingleSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "minimum": 2,
+ "description": "The maximum shingle size. Default and minimum value is 2."
+ },
+ "minShingleSize": {
+ "type": "integer",
+ "format": "int32",
+ "default": 2,
+ "minimum": 2,
+ "description": "The minimum shingle size. Default and minimum value is 2. Must be less than the value of maxShingleSize."
+ },
+ "outputUnigrams": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether the output stream will contain the input tokens (unigrams) as well as shingles. Default is true."
+ },
+ "outputUnigramsIfNoShingles": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to output unigrams for those times when no shingles are available. This property takes precedence when outputUnigrams is set to false. Default is false."
+ },
+ "tokenSeparator": {
+ "type": "string",
+ "default": " ",
+ "description": "The string to use when joining adjacent tokens to form a shingle. Default is a single space (\" \")."
+ },
+ "filterToken": {
+ "type": "string",
+ "default": "_",
+ "description": "The string to insert for each position at which there is no token. Default is an underscore (\"_\")."
+ }
+ },
+ "description": "Creates combinations of tokens as a single token. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/shingle/ShingleFilter.html"
+ }
+ },
+ "SnowballTokenFilterLanguage": {
+ "type": "string",
+ "enum": [
+ "armenian",
+ "basque",
+ "catalan",
+ "danish",
+ "dutch",
+ "english",
+ "finnish",
+ "french",
+ "german",
+ "german2",
+ "hungarian",
+ "italian",
+ "kp",
+ "lovins",
+ "norwegian",
+ "porter",
+ "portuguese",
+ "romanian",
+ "russian",
+ "spanish",
+ "swedish",
+ "turkish"
+ ],
+ "x-ms-enum": {
+ "name": "SnowballTokenFilterLanguage",
+ "modelAsString": false
+ },
+ "description": "The language to use for a Snowball token filter."
+ },
+ "SnowballTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.SnowballTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "language": {
+ "$ref": "#/definitions/SnowballTokenFilterLanguage",
+ "description": "The language to use."
+ }
+ },
+ "required": [
+ "language"
+ ],
+ "description": "A filter that stems words using a Snowball-generated stemmer. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/snowball/SnowballFilter.html"
+ }
+ },
+ "StemmerTokenFilterLanguage": {
+ "type": "string",
+ "enum": [
+ "arabic",
+ "armenian",
+ "basque",
+ "brazilian",
+ "bulgarian",
+ "catalan",
+ "czech",
+ "danish",
+ "dutch",
+ "dutchKp",
+ "english",
+ "lightEnglish",
+ "minimalEnglish",
+ "possessiveEnglish",
+ "porter2",
+ "lovins",
+ "finnish",
+ "lightFinnish",
+ "french",
+ "lightFrench",
+ "minimalFrench",
+ "galician",
+ "minimalGalician",
+ "german",
+ "german2",
+ "lightGerman",
+ "minimalGerman",
+ "greek",
+ "hindi",
+ "hungarian",
+ "lightHungarian",
+ "indonesian",
+ "irish",
+ "italian",
+ "lightItalian",
+ "sorani",
+ "latvian",
+ "norwegian",
+ "lightNorwegian",
+ "minimalNorwegian",
+ "lightNynorsk",
+ "minimalNynorsk",
+ "portuguese",
+ "lightPortuguese",
+ "minimalPortuguese",
+ "portugueseRslp",
+ "romanian",
+ "russian",
+ "lightRussian",
+ "spanish",
+ "lightSpanish",
+ "swedish",
+ "lightSwedish",
+ "turkish"
+ ],
+ "x-ms-enum": {
+ "name": "StemmerTokenFilterLanguage",
+ "modelAsString": false
+ },
+ "description": "The language to use for a stemmer token filter."
+ },
+ "StemmerTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StemmerTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "language": {
+ "$ref": "#/definitions/StemmerTokenFilterLanguage",
+ "description": "The language to use."
+ }
+ },
+ "required": [
+ "language"
+ ],
+ "description": "Language specific stemming filter. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search#TokenFilters"
+ }
+ },
+ "StemmerOverrideTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StemmerOverrideTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "rules": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of stemming rules in the following format: \"word => stem\", for example: \"ran => run\"."
+ }
+ },
+ "required": [
+ "rules"
+ ],
+ "description": "Provides the ability to override other stemming filters with custom dictionary-based stemming. Any dictionary-stemmed terms will be marked as keywords so that they will not be stemmed with stemmers down the chain. Must be placed before any stemming filters. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/StemmerOverrideFilter.html"
+ }
+ },
+ "StopwordsList": {
+ "type": "string",
+ "enum": [
+ "arabic",
+ "armenian",
+ "basque",
+ "brazilian",
+ "bulgarian",
+ "catalan",
+ "czech",
+ "danish",
+ "dutch",
+ "english",
+ "finnish",
+ "french",
+ "galician",
+ "german",
+ "greek",
+ "hindi",
+ "hungarian",
+ "indonesian",
+ "irish",
+ "italian",
+ "latvian",
+ "norwegian",
+ "persian",
+ "portuguese",
+ "romanian",
+ "russian",
+ "sorani",
+ "spanish",
+ "swedish",
+ "thai",
+ "turkish"
+ ],
+ "x-ms-enum": {
+ "name": "StopwordsList",
+ "modelAsString": false
+ },
+ "description": "Identifies a predefined list of language-specific stopwords."
+ },
+ "StopwordsTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.StopwordsTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "stopwords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of stopwords. This property and the stopwords list property cannot both be set."
+ },
+ "stopwordsList": {
+ "$ref": "#/definitions/StopwordsList",
+ "default": "english",
+ "description": "A predefined list of stopwords to use. This property and the stopwords property cannot both be set. Default is English."
+ },
+ "ignoreCase": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to ignore case. If true, all words are converted to lower case first. Default is false."
+ },
+ "removeTrailing": {
+ "x-ms-client-name": "RemoveTrailingStopWords",
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to ignore the last search term if it's a stop word. Default is true."
+ }
+ },
+ "description": "Removes stop words from a token stream. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/StopFilter.html"
+ }
+ },
+ "SynonymTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.SynonymTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "synonyms": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of synonyms in following one of two formats: 1. incredible, unbelievable, fabulous => amazing - all terms on the left side of => symbol will be replaced with all terms on its right side; 2. incredible, unbelievable, fabulous, amazing - comma separated list of equivalent words. Set the expand option to change how this list is interpreted."
+ },
+ "ignoreCase": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to case-fold input for matching. Default is false."
+ },
+ "expand": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether all words in the list of synonyms (if => notation is not used) will map to one another. If true, all words in the list of synonyms (if => notation is not used) will map to one another. The following list: incredible, unbelievable, fabulous, amazing is equivalent to: incredible, unbelievable, fabulous, amazing => incredible, unbelievable, fabulous, amazing. If false, the following list: incredible, unbelievable, fabulous, amazing will be equivalent to: incredible, unbelievable, fabulous, amazing => incredible. Default is true."
+ }
+ },
+ "required": [
+ "synonyms"
+ ],
+ "description": "Matches single or multi-word synonyms in a token stream. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/synonym/SynonymFilter.html"
+ }
+ },
+ "TruncateTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.TruncateTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "length": {
+ "type": "integer",
+ "format": "int32",
+ "default": 300,
+ "maximum": 300,
+ "description": "The length at which terms will be truncated. Default and maximum is 300."
+ }
+ },
+ "description": "Truncates the terms to a specific length. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/TruncateTokenFilter.html"
+ }
+ },
+ "UniqueTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.UniqueTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "onlyOnSamePosition": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether to remove duplicates only at the same position. Default is false."
+ }
+ },
+ "description": "Filters out tokens with same text as the previous token. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/RemoveDuplicatesTokenFilter.html"
+ }
+ },
+ "WordDelimiterTokenFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.WordDelimiterTokenFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/TokenFilter"
+ }
+ ],
+ "properties": {
+ "generateWordParts": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to generate part words. If set, causes parts of words to be generated; for example \"AzureSearch\" becomes \"Azure\" \"Search\". Default is true."
+ },
+ "generateNumberParts": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to generate number subwords. Default is true."
+ },
+ "catenateWords": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether maximum runs of word parts will be catenated. For example, if this is set to true, \"Azure-Search\" becomes \"AzureSearch\". Default is false."
+ },
+ "catenateNumbers": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether maximum runs of number parts will be catenated. For example, if this is set to true, \"1-2\" becomes \"12\". Default is false."
+ },
+ "catenateAll": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether all subword parts will be catenated. For example, if this is set to true, \"Azure-Search-1\" becomes \"AzureSearch1\". Default is false."
+ },
+ "splitOnCaseChange": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to split words on caseChange. For example, if this is set to true, \"AzureSearch\" becomes \"Azure\" \"Search\". Default is true."
+ },
+ "preserveOriginal": {
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether original words will be preserved and added to the subword list. Default is false."
+ },
+ "splitOnNumerics": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to split on numbers. For example, if this is set to true, \"Azure1Search\" becomes \"Azure\" \"1\" \"Search\". Default is true."
+ },
+ "stemEnglishPossessive": {
+ "type": "boolean",
+ "default": true,
+ "description": "A value indicating whether to remove trailing \"'s\" for each subword. Default is true."
+ },
+ "protectedWords": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of tokens to protect from being delimited."
+ }
+ },
+ "description": "Splits words into subwords and performs optional transformations on subword groups. This token filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/WordDelimiterFilter.html"
+ }
+ },
+ "CharFilter": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/custom-analyzers-in-azure-search#index-attribute-reference"
+ },
+ "description": "The name of the char filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters."
+ }
+ },
+ "required": [
+ "@odata.type",
+ "name"
+ ],
+ "description": "Abstract base class for character filters.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "MappingCharFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.MappingCharFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/CharFilter"
+ }
+ ],
+ "properties": {
+ "mappings": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of mappings of the following format: \"a=>b\" (all occurrences of the character \"a\" will be replaced with character \"b\")."
+ }
+ },
+ "required": [
+ "mappings"
+ ],
+ "description": "A character filter that applies mappings defined with the mappings option. Matching is greedy (longest pattern matching at a given point wins). Replacement is allowed to be the empty string. This character filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "https://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/charfilter/MappingCharFilter.html"
+ }
+ },
+ "PatternReplaceCharFilter": {
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.PatternReplaceCharFilter",
+ "allOf": [
+ {
+ "$ref": "#/definitions/CharFilter"
+ }
+ ],
+ "properties": {
+ "pattern": {
+ "type": "string",
+ "description": "A regular expression pattern."
+ },
+ "replacement": {
+ "type": "string",
+ "description": "The replacement text."
+ }
+ },
+ "required": [
+ "pattern",
+ "replacement"
+ ],
+ "description": "A character filter that replaces characters in the input string. It uses a regular expression to identify character sequences to preserve and a replacement pattern to identify characters to replace. For example, given the input text \"aa bb aa bb\", pattern \"(aa)\\s+(bb)\", and replacement \"$1#$2\", the result would be \"aa#bb aa#bb\". This character filter is implemented using Apache Lucene.",
+ "externalDocs": {
+ "url": "https://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/pattern/PatternReplaceCharFilter.html"
+ }
+ },
+ "DataSourceCredentials": {
+ "properties": {
+ "connectionString": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Data-Source"
+ },
+ "type": "string",
+ "description": "The connection string for the datasource."
+ }
+ },
+ "description": "Represents credentials that can be used to connect to a datasource."
+ },
+ "DataContainer": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the table or view (for Azure SQL data source) or collection (for DocumentDB data source) that will be indexed."
+ },
+ "query": {
+ "type": "string",
+ "description": "A query that is applied to this data container. The syntax and meaning of this parameter is datasource-specific. Not supported by Azure SQL datasources."
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "description": "Represents information about the entity (such as Azure SQL table or DocumentDb collection) that will be indexed."
+ },
+ "DataChangeDetectionPolicy": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "@odata.type"
+ ],
+ "description": "Abstract base class for data change detection policies."
+ },
+ "HighWaterMarkChangeDetectionPolicy": {
+ "description": "Defines a data change detection policy that captures changes based on the value of a high water mark column.",
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy",
+ "allOf": [
+ {
+ "$ref": "#/definitions/DataChangeDetectionPolicy"
+ }
+ ],
+ "properties": {
+ "highWaterMarkColumnName": {
+ "type": "string",
+ "description": "The name of the high water mark column."
+ }
+ },
+ "required": [
+ "highWaterMarkColumnName"
+ ]
+ },
+ "SqlIntegratedChangeTrackingPolicy": {
+ "description": "Defines a data change detection policy that captures changes using the Integrated Change Tracking feature of Azure SQL Database.",
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.SqlIntegratedChangeTrackingPolicy",
+ "allOf": [
+ {
+ "$ref": "#/definitions/DataChangeDetectionPolicy"
+ }
+ ]
+ },
+ "DataDeletionDetectionPolicy": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "@odata.type"
+ ],
+ "description": "Abstract base class for data deletion detection policies."
+ },
+ "SoftDeleteColumnDeletionDetectionPolicy": {
+ "description": "Defines a data deletion detection policy that implements a soft-deletion strategy. It determines whether an item should be deleted based on the value of a designated 'soft delete' column.",
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy",
+ "allOf": [
+ {
+ "$ref": "#/definitions/DataDeletionDetectionPolicy"
+ }
+ ],
+ "properties": {
+ "softDeleteColumnName": {
+ "type": "string",
+ "description": "The name of the column to use for soft-deletion detection."
+ },
+ "softDeleteMarkerValue": {
+ "type": "string",
+ "description": "The marker value that identifies an item as deleted."
+ }
+ }
+ },
+ "DataSourceType": {
+ "type": "string",
+ "enum": [
+ "azuresql",
+ "cosmosdb",
+ "azureblob",
+ "azuretable"
+ ],
+ "x-ms-enum": {
+ "name": "DataSourceType",
+ "modelAsString": false
+ },
+ "description": "Defines the type of a datasource."
+ },
+ "DataSource": {
+ "properties": {
+ "name": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules"
+ },
+ "type": "string",
+ "description": "The name of the datasource."
+ },
+ "description": {
+ "type": "string",
+ "description": "The description of the datasource."
+ },
+ "type": {
+ "$ref": "#/definitions/DataSourceType",
+ "description": "The type of the datasource."
+ },
+ "credentials": {
+ "$ref": "#/definitions/DataSourceCredentials",
+ "description": "Credentials for the datasource."
+ },
+ "container": {
+ "$ref": "#/definitions/DataContainer",
+ "description": "The data container for the datasource."
+ },
+ "dataChangeDetectionPolicy": {
+ "$ref": "#/definitions/DataChangeDetectionPolicy",
+ "description": "The data change detection policy for the datasource."
+ },
+ "dataDeletionDetectionPolicy": {
+ "$ref": "#/definitions/DataDeletionDetectionPolicy",
+ "description": "The data deletion detection policy for the datasource."
+ },
+ "@odata.etag": {
+ "x-ms-client-name": "ETag",
+ "type": "string",
+ "description": "The ETag of the DataSource."
+ }
+ },
+ "required": [
+ "name",
+ "type",
+ "credentials",
+ "container"
+ ],
+ "description": "Represents a datasource definition, which can be used to configure an indexer."
+ },
+ "DataSourceListResult": {
+ "properties": {
+ "value": {
+ "x-ms-client-name": "DataSources",
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/DataSource"
+ },
+ "description": "The datasources in the Search service."
+ }
+ },
+ "description": "Response from a List Datasources request. If successful, it includes the full definitions of all datasources."
+ },
+ "IndexingSchedule": {
+ "properties": {
+ "interval": {
+ "type": "string",
+ "format": "duration",
+ "description": "The interval of time between indexer executions."
+ },
+ "startTime": {
+ "type": "string",
+ "format": "date-time",
+ "description": "The time when an indexer should start running."
+ }
+ },
+ "required": [
+ "interval"
+ ],
+ "description": "Represents a schedule for indexer execution."
+ },
+ "IndexingParameters": {
+ "properties": {
+ "batchSize": {
+ "type": "integer",
+ "format": "int32",
+ "description": "The number of items that are read from the data source and indexed as a single batch in order to improve performance. The default depends on the data source type."
+ },
+ "maxFailedItems": {
+ "type": "integer",
+ "format": "int32",
+ "default": 0,
+ "description": "The maximum number of items that can fail indexing for indexer execution to still be considered successful. -1 means no limit. Default is 0."
+ },
+ "maxFailedItemsPerBatch": {
+ "type": "integer",
+ "format": "int32",
+ "default": 0,
+ "description": "The maximum number of items in a single batch that can fail indexing for the batch to still be considered successful. -1 means no limit. Default is 0."
+ },
+ "base64EncodeKeys": {
+ "type": "boolean",
+ "default": false,
+ "description": "Whether indexer will base64-encode all values that are inserted into key field of the target index. This is needed if keys can contain characters that are invalid in keys (such as dot '.'). Default is false."
+ },
+ "configuration": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "object"
+ },
+ "description": "A dictionary of indexer-specific configuration properties. Each name is the name of a specific property. Each value must be of a primitive type."
+ }
+ },
+ "description": "Represents parameters for indexer execution.",
+ "x-ms-external": true
+ },
+ "FieldMappingFunction": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the field mapping function."
+ },
+ "parameters": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "object"
+ },
+ "description": "A dictionary of parameter name/value pairs to pass to the function. Each value must be of a primitive type."
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "description": "Represents a function that transforms a value from a data source before indexing.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/search-indexer-field-mappings"
+ }
+ },
+ "FieldMapping": {
+ "properties": {
+ "sourceFieldName": {
+ "type": "string",
+ "description": "The name of the field in the data source."
+ },
+ "targetFieldName": {
+ "type": "string",
+ "description": "The name of the target field in the index. Same as the source field name by default."
+ },
+ "mappingFunction": {
+ "$ref": "#/definitions/FieldMappingFunction",
+ "description": "A function to apply to each source field value before indexing."
+ }
+ },
+ "required": [
+ "sourceFieldName"
+ ],
+ "description": "Defines a mapping between a field in a data source and a target field in an index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/search-indexer-field-mappings"
+ }
+ },
+ "Indexer": {
+ "properties": {
+ "name": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules"
+ },
+ "type": "string",
+ "description": "The name of the indexer."
+ },
+ "description": {
+ "type": "string",
+ "description": "The description of the indexer."
+ },
+ "dataSourceName": {
+ "type": "string",
+ "description": "The name of the datasource from which this indexer reads data."
+ },
+ "skillsetName": {
+ "type": "string",
+ "description": "The name of the skillset executing with this indexer."
+ },
+ "targetIndexName": {
+ "type": "string",
+ "description": "The name of the index to which this indexer writes data."
+ },
+ "schedule": {
+ "$ref": "#/definitions/IndexingSchedule",
+ "description": "The schedule for this indexer."
+ },
+ "parameters": {
+ "$ref": "#/definitions/IndexingParameters",
+ "description": "Parameters for indexer execution."
+ },
+ "fieldMappings": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/FieldMapping"
+ },
+ "description": "Defines mappings between fields in the data source and corresponding target fields in the index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/search-indexer-field-mappings"
+ }
+ },
+ "outputFieldMappings": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/FieldMapping"
+ },
+ "description": "Output field mappings are applied after enrichment and immediately before indexing.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/search-indexer-field-mappings"
+ }
+ },
+ "disabled": {
+ "x-ms-client-name": "IsDisabled",
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating whether the indexer is disabled. Default is false."
+ },
+ "@odata.etag": {
+ "x-ms-client-name": "ETag",
+ "type": "string",
+ "description": "The ETag of the Indexer."
+ }
+ },
+ "required": [
+ "name",
+ "dataSourceName",
+ "targetIndexName"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Indexer-operations"
+ },
+ "description": "Represents an indexer."
+ },
+ "IndexerListResult": {
+ "properties": {
+ "value": {
+ "x-ms-client-name": "Indexers",
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/Indexer"
+ },
+ "description": "The indexers in the Search service."
+ }
+ },
+ "description": "Response from a List Indexers request. If successful, it includes the full definitions of all indexers."
+ },
+ "ItemError": {
+ "properties": {
+ "key": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The key of the item for which indexing failed."
+ },
+ "errorMessage": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The message describing the error that occurred while processing the item."
+ },
+ "statusCode": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "The status code indicating why the indexing operation failed. Possible values include: 400 for a malformed input document, 404 for document not found, 409 for a version conflict, 422 when the index is temporarily unavailable, or 503 for when the service is too busy."
+ },
+ "name": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The name of the source at which the error originated. For example, this could refer to a particular skill in the attached skillset. This may not be always available."
+ },
+ "details": {
+ "type": "string",
+ "readOnly": true,
+ "description": "Additional, verbose details about the error to assist in debugging the indexer. This may not be always available."
+ },
+ "documentationLink": {
+ "type": "string",
+ "readOnly": true,
+ "description": "A link to a troubleshooting guide for these classes of errors. This may not be always available."
+ }
+ },
+ "description": "Represents an item- or document-level indexing error."
+ },
+ "ItemWarning": {
+ "properties": {
+ "key": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The key of the item which generated a warning."
+ },
+ "message": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The message describing the warning that occurred while processing the item."
+ },
+ "name": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The name of the source at which the warning originated. For example, this could refer to a particular skill in the attached skillset. This may not be always available."
+ },
+ "details": {
+ "type": "string",
+ "readOnly": true,
+ "description": "Additional, verbose details about the warning to assist in debugging the indexer. This may not be always available."
+ },
+ "documentationLink": {
+ "type": "string",
+ "readOnly": true,
+ "description": "A link to a troubleshooting guide for these classes of warnings. This may not be always available."
+ }
+ },
+ "description": "Represents an item-level warning."
+ },
+ "IndexerExecutionResult": {
+ "properties": {
+ "status": {
+ "$ref": "#/definitions/IndexerExecutionStatus",
+ "readOnly": true,
+ "description": "The outcome of this indexer execution."
+ },
+ "errorMessage": {
+ "type": "string",
+ "readOnly": true,
+ "description": "The error message indicating the top-level error, if any."
+ },
+ "startTime": {
+ "type": "string",
+ "format": "date-time",
+ "readOnly": true,
+ "description": "The start time of this indexer execution."
+ },
+ "endTime": {
+ "type": "string",
+ "format": "date-time",
+ "readOnly": true,
+ "description": "The end time of this indexer execution, if the execution has already completed."
+ },
+ "errors": {
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/ItemError"
+ },
+ "description": "The item-level indexing errors."
+ },
+ "warnings": {
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/ItemWarning"
+ },
+ "description": "The item-level indexing warnings."
+ },
+ "itemsProcessed": {
+ "x-ms-client-name": "ItemCount",
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "The number of items that were processed during this indexer execution. This includes both successfully processed items and items where indexing was attempted but failed."
+ },
+ "itemsFailed": {
+ "x-ms-client-name": "FailedItemCount",
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "The number of items that failed to be indexed during this indexer execution."
+ },
+ "initialTrackingState": {
+ "type": "string",
+ "readOnly": true,
+ "description": "Change tracking state with which an indexer execution started."
+ },
+ "finalTrackingState": {
+ "type": "string",
+ "readOnly": true,
+ "description": "Change tracking state with which an indexer execution finished."
+ }
+ },
+ "description": "Represents the result of an individual indexer execution."
+ },
+ "IndexerExecutionStatus": {
+ "type": "string",
+ "enum": [
+ "transientFailure",
+ "success",
+ "inProgress",
+ "reset"
+ ],
+ "x-ms-enum": {
+ "name": "IndexerExecutionStatus"
+ },
+ "x-nullable": false,
+ "description": "Represents the status of an individual indexer execution."
+ },
+ "IndexerExecutionInfo": {
+ "properties": {
+ "status": {
+ "$ref": "#/definitions/IndexerStatus",
+ "readOnly": true,
+ "description": "Overall indexer status."
+ },
+ "lastResult": {
+ "$ref": "#/definitions/IndexerExecutionResult",
+ "readOnly": true,
+ "description": "The result of the most recent or an in-progress indexer execution."
+ },
+ "executionHistory": {
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/IndexerExecutionResult"
+ },
+ "description": "History of the recent indexer executions, sorted in reverse chronological order."
+ },
+ "limits": {
+ "$ref": "#/definitions/IndexerLimits",
+ "readOnly": true,
+ "description": "The execution limits for the indexer."
+ }
+ },
+ "description": "Represents the current status and execution history of an indexer."
+ },
+ "IndexerStatus": {
+ "type": "string",
+ "enum": [
+ "unknown",
+ "error",
+ "running"
+ ],
+ "x-ms-enum": {
+ "name": "IndexerStatus"
+ },
+ "x-nullable": false,
+ "description": "Represents the overall indexer status."
+ },
+ "IndexerLimits": {
+ "properties": {
+ "maxRunTime": {
+ "type": "string",
+ "format": "duration",
+ "readOnly": true,
+ "description": "The maximum duration that the indexer is permitted to run for one execution."
+ },
+ "maxDocumentExtractionSize": {
+ "type": "number",
+ "format": "int64",
+ "readOnly": true,
+ "description": "The maximum size of a document, in bytes, which will be considered valid for indexing."
+ },
+ "maxDocumentContentCharactersToExtract": {
+ "type": "number",
+ "format": "int64",
+ "readOnly": true,
+ "description": "The maximum number of characters that will be extracted from a document picked up for indexing."
+ }
+ }
+ },
+ "Field": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the field, which must be unique within the fields collection of the index or parent field.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules"
+ }
+ },
+ "type": {
+ "$ref": "#/definitions/DataType",
+ "description": "The data type of the field.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/supported-data-types"
+ }
+ },
+ "key": {
+ "type": "boolean",
+ "description": "A value indicating whether the field uniquely identifies documents in the index. Exactly one top-level field in each index must be chosen as the key field and it must be of type Edm.String. Key fields can be used to look up documents directly and update or delete specific documents. Default is false for simple fields and null for complex fields."
+ },
+ "retrievable": {
+ "type": "boolean",
+ "description": "A value indicating whether the field can be returned in a search result. You can disable this option if you want to use a field (for example, margin) as a filter, sorting, or scoring mechanism but do not want the field to be visible to the end user. This property must be true for key fields, and it must be null for complex fields. This property can be changed on existing fields. Enabling this property does not cause any increase in index storage requirements. Default is true for simple fields and null for complex fields."
+ },
+ "searchable": {
+ "type": "boolean",
+ "description": "A value indicating whether the field is full-text searchable. This means it will undergo analysis such as word-breaking during indexing. If you set a searchable field to a value like \"sunny day\", internally it will be split into the individual tokens \"sunny\" and \"day\". This enables full-text searches for these terms. Fields of type Edm.String or Collection(Edm.String) are searchable by default. This property must be false for simple fields of other non-string data types, and it must be null for complex fields. Note: searchable fields consume extra space in your index since Azure Cognitive Search will store an additional tokenized version of the field value for full-text searches. If you want to save space in your index and you don't need a field to be included in searches, set searchable to false."
+ },
+ "filterable": {
+ "type": "boolean",
+ "description": "A value indicating whether to enable the field to be referenced in $filter queries. filterable differs from searchable in how strings are handled. Fields of type Edm.String or Collection(Edm.String) that are filterable do not undergo word-breaking, so comparisons are for exact matches only. For example, if you set such a field f to \"sunny day\", $filter=f eq 'sunny' will find no matches, but $filter=f eq 'sunny day' will. This property must be null for complex fields. Default is true for simple fields and null for complex fields."
+ },
+ "sortable": {
+ "type": "boolean",
+ "description": "A value indicating whether to enable the field to be referenced in $orderby expressions. By default Azure Cognitive Search sorts results by score, but in many experiences users will want to sort by fields in the documents. A simple field can be sortable only if it is single-valued (it has a single value in the scope of the parent document). Simple collection fields cannot be sortable, since they are multi-valued. Simple sub-fields of complex collections are also multi-valued, and therefore cannot be sortable. This is true whether it's an immediate parent field, or an ancestor field, that's the complex collection. Complex fields cannot be sortable and the sortable property must be null for such fields. The default for sortable is true for single-valued simple fields, false for multi-valued simple fields, and null for complex fields."
+ },
+ "facetable": {
+ "type": "boolean",
+ "description": "A value indicating whether to enable the field to be referenced in facet queries. Typically used in a presentation of search results that includes hit count by category (for example, search for digital cameras and see hits by brand, by megapixels, by price, and so on). This property must be null for complex fields. Fields of type Edm.GeographyPoint or Collection(Edm.GeographyPoint) cannot be facetable. Default is true for all other simple fields."
+ },
+ "analyzer": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Language-support"
+ },
+ "$ref": "#/definitions/AnalyzerName",
+ "description": "The name of the language analyzer to use for the field. 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. Must be null for complex fields."
+ },
+ "searchAnalyzer": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Language-support"
+ },
+ "$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. Must be null for complex fields."
+ },
+ "indexAnalyzer": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Language-support"
+ },
+ "$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. Must be null for complex fields."
+ },
+ "synonymMaps": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Synonym-Map-operations"
+ },
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "A list of the names of synonym maps to associate with this field. This option can be used only with searchable fields. Currently only one synonym map per field is supported. Assigning a synonym map to a field ensures that query terms targeting that field are expanded at query-time using the rules in the synonym map. This attribute can be changed on existing fields. Must be null or an empty collection for complex fields."
+ },
+ "fields": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Field"
+ },
+ "description": "A list of sub-fields if this is a field of type Edm.ComplexType or Collection(Edm.ComplexType). Must be null or empty for simple fields."
+ }
+ },
+ "required": [
+ "name",
+ "type"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Index"
+ },
+ "description": "Represents a field in an index definition, which describes the name, data type, and search behavior of a field."
+ },
+ "TextWeights": {
+ "properties": {
+ "weights": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "number",
+ "format": "double",
+ "x-nullable": false
+ },
+ "description": "The dictionary of per-field weights to boost document scoring. The keys are field names and the values are the weights for each field."
+ }
+ },
+ "required": [
+ "weights"
+ ],
+ "description": "Defines weights on index fields for which matches should boost scoring in search queries."
+ },
+ "ScoringFunction": {
+ "discriminator": "type",
+ "properties": {
+ "type": {
+ "type": "string"
+ },
+ "fieldName": {
+ "type": "string",
+ "description": "The name of the field used as input to the scoring function."
+ },
+ "boost": {
+ "type": "number",
+ "format": "double",
+ "description": "A multiplier for the raw score. Must be a positive number not equal to 1.0."
+ },
+ "interpolation": {
+ "$ref": "#/definitions/ScoringFunctionInterpolation",
+ "description": "A value indicating how boosting will be interpolated across document scores; defaults to \"Linear\"."
+ }
+ },
+ "required": [
+ "type",
+ "fieldName",
+ "boost"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index"
+ },
+ "description": "Abstract base class for functions that can modify document scores during ranking."
+ },
+ "DistanceScoringFunction": {
+ "x-ms-discriminator-value": "distance",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ScoringFunction"
+ }
+ ],
+ "properties": {
+ "distance": {
+ "x-ms-client-name": "Parameters",
+ "$ref": "#/definitions/DistanceScoringParameters",
+ "description": "Parameter values for the distance scoring function."
+ }
+ },
+ "required": [
+ "distance"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index"
+ },
+ "description": "Defines a function that boosts scores based on distance from a geographic location."
+ },
+ "DistanceScoringParameters": {
+ "properties": {
+ "referencePointParameter": {
+ "type": "string",
+ "description": "The name of the parameter passed in search queries to specify the reference location."
+ },
+ "boostingDistance": {
+ "type": "number",
+ "format": "double",
+ "description": "The distance in kilometers from the reference location where the boosting range ends."
+ }
+ },
+ "required": [
+ "referencePointParameter",
+ "boostingDistance"
+ ],
+ "description": "Provides parameter values to a distance scoring function."
+ },
+ "FreshnessScoringFunction": {
+ "x-ms-discriminator-value": "freshness",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ScoringFunction"
+ }
+ ],
+ "properties": {
+ "freshness": {
+ "x-ms-client-name": "Parameters",
+ "$ref": "#/definitions/FreshnessScoringParameters",
+ "description": "Parameter values for the freshness scoring function."
+ }
+ },
+ "required": [
+ "freshness"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index"
+ },
+ "description": "Defines a function that boosts scores based on the value of a date-time field."
+ },
+ "FreshnessScoringParameters": {
+ "properties": {
+ "boostingDuration": {
+ "type": "string",
+ "format": "duration",
+ "description": "The expiration period after which boosting will stop for a particular document."
+ }
+ },
+ "required": [
+ "boostingDuration"
+ ],
+ "description": "Provides parameter values to a freshness scoring function."
+ },
+ "MagnitudeScoringFunction": {
+ "x-ms-discriminator-value": "magnitude",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ScoringFunction"
+ }
+ ],
+ "properties": {
+ "magnitude": {
+ "x-ms-client-name": "Parameters",
+ "$ref": "#/definitions/MagnitudeScoringParameters",
+ "description": "Parameter values for the magnitude scoring function."
+ }
+ },
+ "required": [
+ "magnitude"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index"
+ },
+ "description": "Defines a function that boosts scores based on the magnitude of a numeric field."
+ },
+ "MagnitudeScoringParameters": {
+ "properties": {
+ "boostingRangeStart": {
+ "type": "number",
+ "format": "double",
+ "description": "The field value at which boosting starts."
+ },
+ "boostingRangeEnd": {
+ "type": "number",
+ "format": "double",
+ "description": "The field value at which boosting ends."
+ },
+ "constantBoostBeyondRange": {
+ "x-ms-client-name": "ShouldBoostBeyondRangeByConstant",
+ "type": "boolean",
+ "description": "A value indicating whether to apply a constant boost for field values beyond the range end value; default is false."
+ }
+ },
+ "required": [
+ "boostingRangeStart",
+ "boostingRangeEnd"
+ ],
+ "description": "Provides parameter values to a magnitude scoring function."
+ },
+ "TagScoringFunction": {
+ "x-ms-discriminator-value": "tag",
+ "allOf": [
+ {
+ "$ref": "#/definitions/ScoringFunction"
+ }
+ ],
+ "properties": {
+ "tag": {
+ "x-ms-client-name": "Parameters",
+ "$ref": "#/definitions/TagScoringParameters",
+ "description": "Parameter values for the tag scoring function."
+ }
+ },
+ "required": [
+ "tag"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index"
+ },
+ "description": "Defines a function that boosts scores of documents with string values matching a given list of tags."
+ },
+ "TagScoringParameters": {
+ "properties": {
+ "tagsParameter": {
+ "type": "string",
+ "description": "The name of the parameter passed in search queries to specify the list of tags to compare against the target field."
+ }
+ },
+ "required": [
+ "tagsParameter"
+ ],
+ "description": "Provides parameter values to a tag scoring function."
+ },
+ "ScoringFunctionInterpolation": {
+ "type": "string",
+ "enum": [
+ "linear",
+ "constant",
+ "quadratic",
+ "logarithmic"
+ ],
+ "x-ms-enum": {
+ "name": "ScoringFunctionInterpolation"
+ },
+ "description": "Defines the function used to interpolate score boosting across a range of documents."
+ },
+ "ScoringProfile": {
+ "properties": {
+ "name": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules"
+ },
+ "type": "string",
+ "description": "The name of the scoring profile."
+ },
+ "text": {
+ "x-ms-client-name": "TextWeights",
+ "$ref": "#/definitions/TextWeights",
+ "description": "Parameters that boost scoring based on text matches in certain index fields."
+ },
+ "functions": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ScoringFunction"
+ },
+ "description": "The collection of functions that influence the scoring of documents."
+ },
+ "functionAggregation": {
+ "$ref": "#/definitions/ScoringFunctionAggregation",
+ "description": "A value indicating how the results of individual scoring functions should be combined. Defaults to \"Sum\". Ignored if there are no scoring functions."
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Add-scoring-profiles-to-a-search-index"
+ },
+ "description": "Defines parameters for a search index that influence scoring in search queries."
+ },
+ "ScoringFunctionAggregation": {
+ "type": "string",
+ "enum": [
+ "sum",
+ "average",
+ "minimum",
+ "maximum",
+ "firstMatching"
+ ],
+ "x-ms-enum": {
+ "name": "ScoringFunctionAggregation"
+ },
+ "description": "Defines the aggregation function used to combine the results of all the scoring functions in a scoring profile."
+ },
+ "CorsOptions": {
+ "properties": {
+ "allowedOrigins": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of origins from which JavaScript code will be granted access to your index. Can contain a list of hosts of the form {protocol}://{fully-qualified-domain-name}[:{port#}], or a single '*' to allow all origins (not recommended)."
+ },
+ "maxAgeInSeconds": {
+ "type": "integer",
+ "format": "int64",
+ "description": "The duration for which browsers should cache CORS preflight responses. Defaults to 5 minutes."
+ }
+ },
+ "required": [
+ "allowedOrigins"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Index"
+ },
+ "description": "Defines options to control Cross-Origin Resource Sharing (CORS) for an index."
+ },
+ "Suggester": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the suggester."
+ },
+ "searchMode": {
+ "type": "string",
+ "enum": [
+ "analyzingInfixMatching"
+ ],
+ "x-ms-enum": {
+ "name": "searchMode",
+ "modelAsString": false
+ },
+ "description": "A value indicating the capabilities of the suggester."
+ },
+ "sourceFields": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "The list of field names to which the suggester applies. Each field must be searchable."
+ }
+ },
+ "required": [
+ "name",
+ "searchMode",
+ "sourceFields"
+ ],
+ "description": "Defines how the Suggest API should apply to a group of fields in the index."
+ },
+ "Index": {
+ "properties": {
+ "name": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules"
+ },
+ "type": "string",
+ "description": "The name of the index."
+ },
+ "fields": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Field"
+ },
+ "description": "The fields of the index."
+ },
+ "scoringProfiles": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ScoringProfile"
+ },
+ "description": "The scoring profiles for the index."
+ },
+ "defaultScoringProfile": {
+ "type": "string",
+ "description": "The name of the scoring profile to use if none is specified in the query. If this property is not set and no scoring profile is specified in the query, then default scoring (tf-idf) will be used."
+ },
+ "corsOptions": {
+ "$ref": "#/definitions/CorsOptions",
+ "description": "Options to control Cross-Origin Resource Sharing (CORS) for the index."
+ },
+ "suggesters": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Suggester"
+ },
+ "description": "The suggesters for the index."
+ },
+ "analyzers": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Analyzer"
+ },
+ "description": "The analyzers for the index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "tokenizers": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Tokenizer"
+ },
+ "description": "The tokenizers for the index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "tokenFilters": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/TokenFilter"
+ },
+ "description": "The token filters for the index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "charFilters": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/CharFilter"
+ },
+ "description": "The character filters for the index.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search"
+ }
+ },
+ "encryptionKey": {
+ "$ref": "#/definitions/EncryptionKey",
+ "description": "A description of an encryption key that you create in Azure Key Vault. This key is used to provide an additional level of encryption-at-rest for your data when you want full assurance that no one, not even Microsoft, can decrypt your data in Azure Cognitive Search. Once you have encrypted your data, it will always remain encrypted. Azure Cognitive Search will ignore attempts to set this property to null. You can change this property as needed if you want to rotate your encryption key; Your data will be unaffected. Encryption with customer-managed keys is not available for free search services, and is only available for paid services created on or after January 1, 2019.",
+ "externalDocs": {
+ "url": "https://aka.ms/azure-search-encryption-with-cmk"
+ }
+ },
+ "@odata.etag": {
+ "x-ms-client-name": "ETag",
+ "type": "string",
+ "description": "The ETag of the index."
+ }
+ },
+ "required": [
+ "name",
+ "fields"
+ ],
+ "description": "Represents a search index definition, which describes the fields and search behavior of an index."
+ },
+ "IndexGetStatisticsResult": {
+ "properties": {
+ "documentCount": {
+ "type": "integer",
+ "format": "int64",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "The number of documents in the index."
+ },
+ "storageSize": {
+ "type": "integer",
+ "format": "int64",
+ "x-nullable": false,
+ "readOnly": true,
+ "description": "The amount of storage in bytes consumed by the index."
+ }
+ },
+ "description": "Statistics for a given index. Statistics are collected periodically and are not guaranteed to always be up-to-date."
+ },
+ "IndexListResult": {
+ "properties": {
+ "value": {
+ "x-ms-client-name": "Indexes",
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/Index"
+ },
+ "description": "The indexes in the Search service."
+ }
+ },
+ "description": "Response from a List Indexes request. If successful, it includes the full definitions of all indexes."
+ },
+ "Skillset": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the skillset."
+ },
+ "description": {
+ "type": "string",
+ "description": "The description of the skillset."
+ },
+ "skills": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Skill"
+ },
+ "description": "A list of skills in the skillset."
+ },
+ "cognitiveServices": {
+ "$ref": "#/definitions/CognitiveServices",
+ "description": "Details about cognitive services to be used when running skills."
+ },
+ "@odata.etag": {
+ "x-ms-client-name": "ETag",
+ "type": "string",
+ "description": "The ETag of the skillset."
+ }
+ },
+ "required": [
+ "name",
+ "description",
+ "skills"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-tutorial-blob"
+ },
+ "description": "A list of skills."
+ },
+ "CognitiveServices": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "@odata.type"
+ ],
+ "description": "Abstract base class for describing any cognitive service resource attached to the skillset."
+ },
+ "DefaultCognitiveServices": {
+ "description": "An empty object that represents the default cognitive service resource for a skillset.",
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.DefaultCognitiveServices",
+ "allOf": [
+ {
+ "$ref": "#/definitions/CognitiveServices"
+ }
+ ]
+ },
+ "CognitiveServicesByKey": {
+ "description": "A cognitive service resource provisioned with a key that is attached to a skillset.",
+ "x-ms-discriminator-value": "#Microsoft.Azure.Search.CognitiveServicesByKey",
+ "allOf": [
+ {
+ "$ref": "#/definitions/CognitiveServices"
+ }
+ ],
+ "properties": {
+ "key": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "key"
+ ]
+ },
+ "Skill": {
+ "discriminator": "@odata.type",
+ "properties": {
+ "@odata.type": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string",
+ "description": "The name of the skill which uniquely identifies it within the skillset. A skill with no name defined will be given a default name of its 1-based index in the skills array, prefixed with the character '#'."
+ },
+ "description": {
+ "type": "string",
+ "description": "The description of the skill which describes the inputs, outputs, and usage of the skill."
+ },
+ "context": {
+ "type": "string",
+ "description": "Represents the level at which operations take place, such as the document root or document content (for example, /document or /document/content). The default is /document."
+ },
+ "inputs": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/InputFieldMappingEntry"
+ },
+ "description": "Inputs of the skills could be a column in the source data set, or the output of an upstream skill."
+ },
+ "outputs": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/OutputFieldMappingEntry"
+ },
+ "description": "The output of a skill is either a field in a search index, or a value that can be consumed as an input by another skill."
+ }
+ },
+ "required": [
+ "@odata.type",
+ "inputs",
+ "outputs"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-predefined-skills"
+ },
+ "description": "Abstract base class for skills."
+ },
+ "InputFieldMappingEntry": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the input."
+ },
+ "source": {
+ "type": "string",
+ "description": "The source of the input."
+ },
+ "sourceContext": {
+ "type": "string",
+ "description": "The source context used for selecting recursive inputs."
+ },
+ "inputs": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/InputFieldMappingEntry"
+ },
+ "description": "The recursive inputs used when creating a complex type."
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "description": "Input field mapping for a skill."
+ },
+ "OutputFieldMappingEntry": {
+ "properties": {
+ "name": {
+ "type": "string",
+ "description": "The name of the output defined by the skill."
+ },
+ "targetName": {
+ "type": "string",
+ "description": "The target name of the output. It is optional and default to name."
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/naming-rules"
+ },
+ "description": "Output field mapping for a skill."
+ },
+ "ConditionalSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Util.ConditionalSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-conditional"
+ },
+ "description": "A skill that enables scenarios that require a Boolean operation to determine the data to assign to an output."
+ },
+ "KeyPhraseExtractionSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.KeyPhraseExtractionSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/KeyPhraseExtractionSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ },
+ "maxKeyPhraseCount": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "A number indicating how many key phrases to return. If absent, all identified key phrases will be returned."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-keyphrases"
+ },
+ "description": "A skill that uses text analytics for key phrase extraction."
+ },
+ "OcrSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Vision.OcrSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "textExtractionAlgorithm": {
+ "$ref": "#/definitions/TextExtractionAlgorithm",
+ "description": "A value indicating which algorithm to use for extracting text. Default is printed."
+ },
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/OcrSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ },
+ "detectOrientation": {
+ "x-ms-client-name": "ShouldDetectOrientation",
+ "type": "boolean",
+ "default": false,
+ "description": "A value indicating to turn orientation detection on or not. Default is false."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-ocr"
+ },
+ "description": "A skill that extracts text from image files."
+ },
+ "ImageAnalysisSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Vision.ImageAnalysisSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/ImageAnalysisSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ },
+ "visualFeatures": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/VisualFeature",
+ "x-nullable": false
+ },
+ "description": "A list of visual features."
+ },
+ "details": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/ImageDetail",
+ "x-nullable": false
+ },
+ "description": "A string indicating which domain-specific details to return."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-image-analysis"
+ },
+ "description": "A skill that analyzes image files. It extracts a rich set of visual features based on the image content."
+ },
+ "LanguageDetectionSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.LanguageDetectionSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-language-detection"
+ },
+ "description": "A skill that detects the language of input text and reports a single language code for every document submitted on the request. The language code is paired with a score indicating the confidence of the analysis."
+ },
+ "ShaperSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Util.ShaperSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-shaper"
+ },
+ "description": "A skill for reshaping the outputs. It creates a complex type to support composite fields (also known as multipart fields)."
+ },
+ "MergeSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.MergeSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "insertPreTag": {
+ "type": "string",
+ "default": " ",
+ "description": "The tag indicates the start of the merged text. By default, the tag is an empty space."
+ },
+ "insertPostTag": {
+ "type": "string",
+ "default": " ",
+ "description": "The tag indicates the end of the merged text. By default, the tag is an empty space."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-textmerger"
+ },
+ "description": "A skill for merging two or more strings into a single unified string, with an optional user-defined delimiter separating each component part."
+ },
+ "EntityRecognitionSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.EntityRecognitionSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "categories": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/EntityCategory",
+ "x-nullable": false
+ },
+ "description": "A list of entity categories that should be extracted."
+ },
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/EntityRecognitionSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ },
+ "includeTypelessEntities": {
+ "type": "boolean",
+ "x-nullable": true,
+ "description": "Determines whether or not to include entities which are well known but don't conform to a pre-defined type. If this configuration is not set (default), set to null or set to false, entities which don't conform to one of the pre-defined types will not be surfaced."
+ },
+ "minimumPrecision": {
+ "type": "number",
+ "format": "double",
+ "x-nullable": true,
+ "description": "A value between 0 and 1 that be used to only include entities whose confidence score is greater than the value specified. If not set (default), or if explicitly set to null, all entities will be included."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-entity-recognition"
+ },
+ "description": "Text analytics entity recognition."
+ },
+ "NamedEntityRecognitionSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.NamedEntityRecognitionSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "categories": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/NamedEntityCategory",
+ "x-nullable": false
+ },
+ "description": "A list of named entity categories."
+ },
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/NamedEntityRecognitionSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ },
+ "minimumPrecision": {
+ "type": "number",
+ "format": "double",
+ "x-nullable": true,
+ "description": "A value between 0 and 1 to indicate the confidence of the results."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-named-entity-recognition"
+ },
+ "description": "Text analytics named entity recognition. This skill is deprecated in favor of EntityRecognitionSkill.",
+ "x-ms-external": true
+ },
+ "SentimentSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.SentimentSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/SentimentSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-sentiment"
+ },
+ "description": "Text analytics positive-negative sentiment analysis, scored as a floating point value in a range of zero to 1."
+ },
+ "SplitSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.SplitSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "defaultLanguageCode": {
+ "$ref": "#/definitions/SplitSkillLanguage",
+ "description": "A value indicating which language code to use. Default is en."
+ },
+ "textSplitMode": {
+ "$ref": "#/definitions/TextSplitMode",
+ "x-nullable": false,
+ "description": "A value indicating which split mode to perform."
+ },
+ "maximumPageLength": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "The desired maximum page length. Default is 10000."
+ }
+ },
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-textsplit"
+ },
+ "description": "A skill to split a string into chunks of text."
+ },
+ "TextTranslationSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Text.TranslationSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "defaultToLanguageCode": {
+ "$ref": "#/definitions/TextTranslationSkillLanguage",
+ "description": "The language code to translate documents into for documents that don't specify the to language explicitly. "
+ },
+ "defaultFromLanguageCode": {
+ "$ref": "#/definitions/TextTranslationSkillLanguage",
+ "description": "The language code to translate documents from for documents that don't specify the from language explicitly."
+ },
+ "suggestedFrom": {
+ "$ref": "#/definitions/TextTranslationSkillLanguage",
+ "description": "The language code to translate documents from when neither the fromLanguageCode input nor the defaultFromLanguageCode parameter are provided, and the automatic language detection is unsuccessful. Default is en."
+ }
+ },
+ "required": [
+ "defaultToLanguageCode"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-skill-text-translation"
+ },
+ "description": "A skill to translate text from one language to another."
+ },
+ "WebApiSkill": {
+ "x-ms-discriminator-value": "#Microsoft.Skills.Custom.WebApiSkill",
+ "allOf": [
+ {
+ "$ref": "#/definitions/Skill"
+ }
+ ],
+ "properties": {
+ "uri": {
+ "type": "string",
+ "description": "The url for the Web API."
+ },
+ "httpHeaders": {
+ "$ref": "#/definitions/WebApiHttpHeaders",
+ "description": "The headers required to make the http request."
+ },
+ "httpMethod": {
+ "type": "string",
+ "description": "The method for the http request."
+ },
+ "timeout": {
+ "type": "string",
+ "format": "duration",
+ "description": "The desired timeout for the request. Default is 30 seconds."
+ },
+ "batchSize": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "The desired batch size which indicates number of documents."
+ },
+ "degreeOfParallelism": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "If set, the number of parallel calls that can be made to the Web API."
+ }
+ },
+ "required": [
+ "uri"
+ ],
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/azure/search/cognitive-search-custom-skill-web-api"
+ },
+ "description": "A skill that can call a Web API endpoint, allowing you to extend a skillset by having it call your custom code."
+ },
+ "WebApiHttpHeaders": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "A dictionary of http request headers."
+ },
+ "SkillsetListResult": {
+ "properties": {
+ "value": {
+ "x-ms-client-name": "Skillsets",
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/Skillset"
+ },
+ "description": "The skillsets defined in the Search service."
+ }
+ },
+ "description": "Response from a list Skillset request. If successful, it includes the full definitions of all skillsets."
+ },
+ "TextExtractionAlgorithm": {
+ "type": "string",
+ "enum": [
+ "printed",
+ "handwritten"
+ ],
+ "x-ms-enum": {
+ "name": "TextExtractionAlgorithm",
+ "modelAsString": false
+ },
+ "description": "A value indicating which algorithm to use. Default is printed."
+ },
+ "TextSplitMode": {
+ "type": "string",
+ "enum": [
+ "pages",
+ "sentences"
+ ],
+ "x-ms-enum": {
+ "name": "TextSplitMode",
+ "modelAsString": false
+ },
+ "description": "A value indicating which split mode to perform."
+ },
+ "VisualFeature": {
+ "type": "string",
+ "enum": [
+ "categories",
+ "tags",
+ "description",
+ "faces",
+ "imageType",
+ "color"
+ ],
+ "x-ms-enum": {
+ "name": "VisualFeature",
+ "modelAsString": false
+ },
+ "description": "The strings indicating what visual feature types to return."
+ },
+ "ImageDetail": {
+ "type": "string",
+ "enum": [
+ "celebrities",
+ "landmarks"
+ ],
+ "x-ms-enum": {
+ "name": "ImageDetail",
+ "modelAsString": false
+ },
+ "description": "A string indicating which domain-specific details to return."
+ },
+ "EntityCategory": {
+ "type": "string",
+ "enum": [
+ "location",
+ "organization",
+ "person",
+ "quantity",
+ "datetime",
+ "url",
+ "email"
+ ],
+ "x-ms-enum": {
+ "name": "EntityCategory",
+ "modelAsString": false
+ },
+ "description": "A string indicating what entity categories to return."
+ },
+ "NamedEntityCategory": {
+ "type": "string",
+ "enum": [
+ "location",
+ "organization",
+ "person"
+ ],
+ "description": "A string indicating which named entity categories to return.",
+ "x-ms-external": true
+ },
+ "SentimentSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "da",
+ "nl",
+ "en",
+ "fi",
+ "fr",
+ "de",
+ "el",
+ "it",
+ "no",
+ "pl",
+ "pt-PT",
+ "ru",
+ "es",
+ "sv",
+ "tr"
+ ],
+ "x-ms-enum": {
+ "name": "SentimentSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input text by SentimentSkill."
+ },
+ "KeyPhraseExtractionSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "da",
+ "nl",
+ "en",
+ "fi",
+ "fr",
+ "de",
+ "it",
+ "ja",
+ "ko",
+ "no",
+ "pl",
+ "pt-PT",
+ "pt-BR",
+ "ru",
+ "es",
+ "sv"
+ ],
+ "x-ms-enum": {
+ "name": "KeyPhraseExtractionSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input text by KeyPhraseExtractionSkill."
+ },
+ "OcrSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "zh-Hans",
+ "zh-Hant",
+ "cs",
+ "da",
+ "nl",
+ "en",
+ "fi",
+ "fr",
+ "de",
+ "el",
+ "hu",
+ "it",
+ "ja",
+ "ko",
+ "nb",
+ "pl",
+ "pt",
+ "ru",
+ "es",
+ "sv",
+ "tr",
+ "ar",
+ "ro",
+ "sr-Cyrl",
+ "sr-Latn",
+ "sk"
+ ],
+ "x-ms-enum": {
+ "name": "OcrSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input by OcrSkill."
+ },
+ "SplitSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "da",
+ "de",
+ "en",
+ "es",
+ "fi",
+ "fr",
+ "it",
+ "ko",
+ "pt"
+ ],
+ "x-ms-enum": {
+ "name": "SplitSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input text by SplitSkill."
+ },
+ "EntityRecognitionSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "de",
+ "en",
+ "es",
+ "fr",
+ "it"
+ ],
+ "x-ms-enum": {
+ "name": "EntityRecognitionSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input text by EntityRecognitionSkill."
+ },
+ "NamedEntityRecognitionSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "ar",
+ "cs",
+ "da",
+ "de",
+ "en",
+ "es",
+ "fi",
+ "fr",
+ "he",
+ "hu",
+ "it",
+ "ko",
+ "pt-br",
+ "pt"
+ ],
+ "x-ms-enum": {
+ "name": "NamedEntityRecognitionSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input text by NamedEntityRecognitionSkill."
+ },
+ "TextTranslationSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "af",
+ "ar",
+ "bn",
+ "bs",
+ "bg",
+ "yue",
+ "ca",
+ "zh-Hans",
+ "zh-Hant",
+ "hr",
+ "cs",
+ "da",
+ "nl",
+ "en",
+ "et",
+ "fj",
+ "fil",
+ "fi",
+ "fr",
+ "de",
+ "el",
+ "ht",
+ "he",
+ "hi",
+ "mww",
+ "hu",
+ "is",
+ "id",
+ "it",
+ "ja",
+ "sw",
+ "tlh",
+ "ko",
+ "lv",
+ "lt",
+ "mg",
+ "ms",
+ "mt",
+ "nb",
+ "fa",
+ "pl",
+ "pt",
+ "otq",
+ "ro",
+ "ru",
+ "sm",
+ "sr-Cyrl",
+ "sr-Latn",
+ "sk",
+ "sl",
+ "es",
+ "sv",
+ "ty",
+ "ta",
+ "te",
+ "th",
+ "to",
+ "tr",
+ "uk",
+ "ur",
+ "vi",
+ "cy",
+ "yua"
+ ],
+ "x-ms-enum": {
+ "name": "TextTranslationSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input text by TextTranslationSkill."
+ },
+ "ImageAnalysisSkillLanguage": {
+ "type": "string",
+ "enum": [
+ "en",
+ "zh"
+ ],
+ "x-ms-enum": {
+ "name": "ImageAnalysisSkillLanguage",
+ "modelAsString": false
+ },
+ "description": "The language codes supported for input by ImageAnalysisSkill."
+ },
+ "SynonymMap": {
+ "properties": {
+ "name": {
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Naming-rules"
+ },
+ "type": "string",
+ "description": "The name of the synonym map."
+ },
+ "format": {
+ "type": "string",
+ "enum": [
+ "solr"
+ ],
+ "x-ms-enum": {
+ "name": "SynonymMapFormat",
+ "modelAsString": false
+ },
+ "description": "The format of the synonym map. Only the 'solr' format is currently supported."
+ },
+ "synonyms": {
+ "type": "string",
+ "description": "A series of synonym rules in the specified synonym map format. The rules must be separated by newlines.",
+ "externalDocs": {
+ "url": "https://docs.microsoft.com/rest/api/searchservice/Create-Synonym-Map#SynonymMapFormat"
+ }
+ },
+ "encryptionKey": {
+ "$ref": "#/definitions/EncryptionKey",
+ "description": "A description of an encryption key that you create in Azure Key Vault. This key is used to provide an additional level of encryption-at-rest for your data when you want full assurance that no one, not even Microsoft, can decrypt your data in Azure Cognitive Search. Once you have encrypted your data, it will always remain encrypted. Azure Cognitive Search will ignore attempts to set this property to null. You can change this property as needed if you want to rotate your encryption key; Your data will be unaffected. Encryption with customer-managed keys is not available for free search services, and is only available for paid services created on or after January 1, 2019.",
+ "externalDocs": {
+ "url": "https://aka.ms/azure-search-encryption-with-cmk"
+ }
+ },
+ "@odata.etag": {
+ "x-ms-client-name": "ETag",
+ "type": "string",
+ "description": "The ETag of the synonym map."
+ }
+ },
+ "required": [
+ "name",
+ "format",
+ "synonyms"
+ ],
+ "description": "Represents a synonym map definition."
+ },
+ "SynonymMapListResult": {
+ "properties": {
+ "value": {
+ "x-ms-client-name": "SynonymMaps",
+ "type": "array",
+ "readOnly": true,
+ "items": {
+ "$ref": "#/definitions/SynonymMap"
+ },
+ "description": "The synonym maps in the Search service."
+ }
+ },
+ "description": "Response from a List SynonymMaps request. If successful, it includes the full definitions of all synonym maps."
+ },
+ "EncryptionKey": {
+ "properties": {
+ "keyVaultKeyName": {
+ "type": "string",
+ "description": "The name of your Azure Key Vault key to be used to encrypt your data at rest."
+ },
+ "keyVaultKeyVersion": {
+ "type": "string",
+ "description": "The version of your Azure Key Vault key to be used to encrypt your data at rest."
+ },
+ "keyVaultUri": {
+ "type": "string",
+ "description": "The URI of your Azure Key Vault, also referred to as DNS name, that contains the key to be used to encrypt your data at rest. An example URI might be https://my-keyvault-name.vault.azure.net."
+ },
+ "accessCredentials": {
+ "$ref": "#/definitions/AzureActiveDirectoryApplicationCredentials",
+ "description": "Optional Azure Active Directory credentials used for accessing your Azure Key Vault. Not required if using managed identity instead.",
+ "externalDocs": {
+ "url": "https://aka.ms/azure-search-msi"
+ }
+ }
+ },
+ "required": [
+ "keyVaultKeyName",
+ "keyVaultKeyVersion",
+ "keyVaultUri"
+ ],
+ "description": "A customer-managed encryption key in Azure Key Vault. Keys that you create and manage can be used to encrypt or decrypt data-at-rest in Azure Cognitive Search, such as indexes and synonym maps."
+ },
+ "AzureActiveDirectoryApplicationCredentials": {
+ "properties": {
+ "applicationId": {
+ "type": "string",
+ "description": "An AAD Application ID that was granted the required access permissions to the Azure Key Vault that is to be used when encrypting your data at rest. The Application ID should not be confused with the Object ID for your AAD Application."
+ },
+ "applicationSecret": {
+ "type": "string",
+ "description": "The authentication key of the specified AAD application."
+ }
+ },
+ "required": [
+ "applicationId"
+ ],
+ "description": "Credentials of a registered application created for your search service, used for authenticated access to the encryption keys stored in Azure Key Vault."
+ },
+ "ServiceStatistics": {
+ "properties": {
+ "counters": {
+ "$ref": "#/definitions/ServiceCounters",
+ "description": "Service level resource counters."
+ },
+ "limits": {
+ "$ref": "#/definitions/ServiceLimits",
+ "description": "Service level general limits."
+ }
+ },
+ "description": "Response from a get service statistics request. If successful, it includes service level counters and limits."
+ },
+ "ServiceCounters": {
+ "properties": {
+ "documentCount": {
+ "x-ms-client-name": "documentCounter",
+ "$ref": "#/definitions/ResourceCounter",
+ "description": "Total number of documents across all indexes in the service."
+ },
+ "indexesCount": {
+ "x-ms-client-name": "indexCounter",
+ "$ref": "#/definitions/ResourceCounter",
+ "description": "Total number of indexes."
+ },
+ "indexersCount": {
+ "x-ms-client-name": "indexerCounter",
+ "$ref": "#/definitions/ResourceCounter",
+ "description": "Total number of indexers."
+ },
+ "dataSourcesCount": {
+ "x-ms-client-name": "dataSourceCounter",
+ "$ref": "#/definitions/ResourceCounter",
+ "description": "Total number of data sources."
+ },
+ "storageSize": {
+ "x-ms-client-name": "storageSizeCounter",
+ "$ref": "#/definitions/ResourceCounter",
+ "description": "Total size of used storage in bytes."
+ },
+ "synonymMaps": {
+ "x-ms-client-name": "synonymMapCounter",
+ "$ref": "#/definitions/ResourceCounter",
+ "description": "Total number of synonym maps."
+ }
+ },
+ "description": "Represents service-level resource counters and quotas."
+ },
+ "ServiceLimits": {
+ "properties": {
+ "maxFieldsPerIndex": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "The maximum allowed fields per index."
+ },
+ "maxFieldNestingDepthPerIndex": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "The maximum depth which you can nest sub-fields in an index, including the top-level complex field. For example, a/b/c has a nesting depth of 3."
+ },
+ "maxComplexCollectionFieldsPerIndex": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "The maximum number of fields of type Collection(Edm.ComplexType) allowed in an index."
+ },
+ "maxComplexObjectsInCollectionsPerDocument": {
+ "type": "integer",
+ "format": "int32",
+ "x-nullable": true,
+ "description": "The maximum number of objects in complex collections allowed per document."
+ }
+ },
+ "description": "Represents various service level limits."
+ },
+ "ResourceCounter": {
+ "properties": {
+ "usage": {
+ "type": "integer",
+ "format": "int64",
+ "x-nullable": false,
+ "description": "The resource usage amount."
+ },
+ "quota": {
+ "type": "integer",
+ "format": "int64",
+ "x-nullable": true,
+ "description": "The resource amount quota."
+ }
+ },
+ "description": "Represents a resource's usage and quota."
+ }
+ },
+ "parameters": {
+ "ApiVersionParameter": {
+ "name": "api-version",
+ "in": "query",
+ "required": true,
+ "type": "string",
+ "description": "Client Api Version."
+ },
+ "ClientRequestIdParameter": {
+ "name": "client-request-id",
+ "in": "header",
+ "required": false,
+ "type": "string",
+ "format": "uuid",
+ "description": "The tracking ID sent with the request to help with debugging.",
+ "x-ms-client-request-id": true,
+ "x-ms-parameter-grouping": {
+ "name": "search-request-options"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "IfMatchParameter": {
+ "name": "If-Match",
+ "in": "header",
+ "required": false,
+ "type": "string",
+ "description": "Defines the If-Match condition. The operation will be performed only if the ETag on the server matches this value.",
+ "x-ms-parameter-grouping": {
+ "name": "access-condition"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "IfNoneMatchParameter": {
+ "name": "If-None-Match",
+ "in": "header",
+ "required": false,
+ "type": "string",
+ "description": "Defines the If-None-Match condition. The operation will be performed only if the ETag on the server does not match this value.",
+ "x-ms-parameter-grouping": {
+ "name": "access-condition"
+ },
+ "x-ms-parameter-location": "method"
+ },
+ "PreferHeaderParameter": {
+ "name": "Prefer",
+ "in": "header",
+ "required": true,
+ "type": "string",
+ "enum": [
+ "return=representation"
+ ],
+ "description": "For HTTP PUT requests, instructs the service to return the created/updated resource on success.",
+ "x-ms-parameter-location": "method"
+ },
+ "SearchServiceNameParameter": {
+ "name": "searchServiceName",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "x-ms-skip-url-encoding": true,
+ "description": "The name of the search service.",
+ "x-ms-parameter-location": "client"
+ },
+ "SearchDnsSuffixParameter": {
+ "name": "searchDnsSuffix",
+ "in": "path",
+ "required": true,
+ "type": "string",
+ "default": "search.windows.net",
+ "x-ms-skip-url-encoding": true,
+ "description": "The DNS suffix of the search service. The default is search.windows.net.",
+ "x-ms-parameter-location": "client"
+ }
+ }
+}