You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/search/search-howto-reindex.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -256,7 +256,7 @@ To minimize disruption to application code, consider [creating an index alias](s
256
256
257
257
## Add an index description (preview)
258
258
259
-
Beginning with REST API version 2025-05-01-preview, an `indexdescription` is now supported. This human-readable text is invaluable when a system must access several indexes and make a decision based on the description. Consider a Model Context Protocol (MCP) server that must pick the correct index at run time. The decision can be based on the description rather than on the index name alone.
259
+
Beginning with REST API version 2025-05-01-preview, a `ddescription` is now supported. This human-readable text is invaluable when a system must access several indexes and make a decision based on the description. Consider a Model Context Protocol (MCP) server that must pick the correct index at run time. The decision can be based on the description rather than on the index name alone.
260
260
261
261
An index description is a schema update, and you can add it without having to rebuild the entire index.
262
262
@@ -275,7 +275,7 @@ The Azure portal supports the latest preview API.
275
275
276
276
1. Select **Edit JSON**.
277
277
278
-
1. Insert `"indexDescription"`, followed by the description.
278
+
1. Insert `"description"`, followed by the description.
279
279
280
280
:::image type="content" source="media/search-how-to-index/edit-index-json.png" alt-text="Screenshot of the JSON definition of an index in the Azure portal.":::
281
281
@@ -285,11 +285,11 @@ The Azure portal supports the latest preview API.
285
285
286
286
1.[GET an index definition](/rest/api/searchservice/indexes/get).
287
287
288
-
1. Copy the JSON.
288
+
1. Copy the JSON so that you can use it as the basis of a new request.
289
289
290
-
1.[Formulate an index update PUT request](/rest/api/searchservice/indexes/create-or-update?view=rest-searchservice-2025-05-01-preview&preserve-view=true)using the preview API, providing the *full* JSON of the existing schema, plus the new description field.
290
+
1.[Formulate an index update using a PUT request](/rest/api/searchservice/indexes/create-or-update?view=rest-searchservice-2025-05-01-preview&preserve-view=true)and the preview API, providing the *full* JSON of the existing schema, plus the new description field.
291
291
292
-
1. To confirm the description, issue another [GET using the 2025-05-01-preview REST API](/rest/api/searchservice/indexes/create-or-update?view=rest-searchservice-2025-05-01-preview&preserve-view=true).
292
+
1. To confirm the change, issue another [GET using the 2025-05-01-preview REST API](/rest/api/searchservice/indexes/create-or-update?view=rest-searchservice-2025-05-01-preview&preserve-view=true).
0 commit comments