Skip to content

Commit

Permalink
string updates for renamed features and services (Azure#26268)
Browse files Browse the repository at this point in the history
* Replaced disallowed HTML chars and added a missing value

* Fixed sev-1 policheck error

* String changes for renamed products and features at Ignite 2023

* Fixed sev 1 policheck errors
  • Loading branch information
HeidiSteen authored Oct 17, 2023
1 parent 63cef7f commit 3d59aae
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 114 deletions.
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

0 comments on commit 3d59aae

Please sign in to comment.