Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

string updates for renamed features and services #26268

Merged
merged 5 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@
{
"value": "semantic",
"name": "Semantic",
"description": "Allows the user to further explore their Semantic search results."
"description": "Allows the user to further explore their reranked results."
}
]
},
Expand Down Expand Up @@ -562,7 +562,7 @@
"items": {
"type": "string"
},
"description": "The list of field names used for semantic search.",
"description": "The list of field names used for semantic ranking.",
"x-ms-parameter-grouping": {
"name": "SearchOptions"
}
Expand Down Expand Up @@ -1286,7 +1286,7 @@
}
]
},
"description": "Reason that a partial response was returned for a semantic search request."
"description": "Reason that a partial response was returned for a semantic ranking request."
},
"SemanticPartialResponseType": {
"type": "string",
Expand All @@ -1310,15 +1310,15 @@
}
]
},
"description": "Type of partial response that was returned for a semantic search request."
"description": "Type of partial response that was returned for a semantic ranking request."
},
"DocumentDebugInfo": {
"type": "object",
"properties": {
"semantic": {
"$ref": "#/definitions/SemanticDebugInfo",
"readOnly": true,
"description": "Contains debugging information specific to semantic search queries."
"description": "Contains debugging information specific to semantic ranking requests."
}
},
"description": "Contains debugging information that can be used to further explore your search results."
Expand Down Expand Up @@ -1428,7 +1428,7 @@
"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."
"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 the query can't return all the requested documents in a single response."
},
"@search.coverage": {
"type": "number",
Expand Down Expand Up @@ -1463,19 +1463,19 @@
"$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."
"description": "Continuation JSON payload returned when the query can't return all the requested results in a single 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."
},
"@search.semanticPartialResponseReason": {
"$ref": "#/definitions/SemanticPartialResponseReason",
"readOnly": true,
"x-ms-client-name": "SemanticPartialResponseReason",
"description": "Reason that a partial response was returned for a semantic search request."
"description": "Reason that a partial response was returned for a semantic ranking request."
},
"@search.semanticPartialResponseType": {
"$ref": "#/definitions/SemanticPartialResponseType",
"readOnly": true,
"x-ms-client-name": "SemanticPartialResponseType",
"description": "Type of partial response that was returned for a semantic search request."
"description": "Type of partial response that was returned for a semantic ranking request."
},
"value": {
"type": "array",
Expand All @@ -1490,7 +1490,7 @@
"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": "Continuation URL returned when the query can't return all the requested results in a single 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."
}
},
"required": [
Expand Down Expand Up @@ -1713,7 +1713,7 @@
{
"value": "semantic",
"name": "Semantic",
"description": "Allows the user to further explore their Semantic search results."
"description": "Allows the user to further explore their reranked results."
}
]
},
Expand Down Expand Up @@ -2295,7 +2295,7 @@
{
"value": "ca-es",
"name": "CaEs",
"description": "Query language value for Catalan (Spain)."
"description": "Query language value for Catalan."
},
{
"value": "fi-fi",
Expand Down Expand Up @@ -2340,7 +2340,7 @@
{
"value": "eu-es",
"name": "EuEs",
"description": "Query language value for Basque (Spain)."
"description": "Query language value for Basque."
},
{
"value": "gl-es",
Expand Down Expand Up @@ -2546,7 +2546,7 @@
},
"debug": {
"$ref": "#/definitions/QueryDebugMode",
"description": "Enables a debugging tool that can be used to further explore your Semantic search results."
"description": "Enables a debugging tool that can be used to further explore your reranked results."
},
"search": {
"type": "string",
Expand Down Expand Up @@ -2593,7 +2593,7 @@
},
"semanticFields": {
"type": "string",
"description": "The comma-separated list of field names used for semantic search."
"description": "The comma-separated list of field names used for semantic ranking."
},
"vectorQueries": {
"type": "array",
Expand Down Expand Up @@ -2793,7 +2793,7 @@
"required": [
"message"
],
"description": "Describes an error condition for the Azure Cognitive Search API."
"description": "Describes an error condition for the API."
}
},
"parameters": {
Expand Down
Loading