Skip to content

Commit a9ba401

Browse files
committed
fixed bookmark link
1 parent d17b6b1 commit a9ba401

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

articles/search/search-how-to-define-index-projections.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Indexers load indexed data into a predefined index. How you define the schema an
5252

5353
## Create an index for one-to-many indexing
5454

55-
Whether you create one index for chunks that repeats parent values, or separate indexes for parent-child field placement, the primary index used for searching is designed around data chunks. It must have the following fields:
55+
Whether you create one index for chunks that repeat parent values, or separate indexes for parent-child field placement, the primary index used for searching is designed around data chunks. It must have the following fields:
5656

5757
- A document key field uniquely identifying each document. It must be defined as type `Edm.String` with the `keyword` analyzer.
5858

@@ -140,7 +140,7 @@ This example is similar to the [RAG tutorial](tutorial-rag-build-solution-index-
140140

141141
## Add index projections to a skillset
142142

143-
Index projections are defined inside a skillset definition and are primarily defined as an array of `selectors`, where each selector corresponds to a different target index on the search service. This section describes each parameter and includes [steps and examples](#how-to-specify-an-index-projections-definition) for setting up the projections.
143+
Index projections are defined inside a skillset definition and are primarily defined as an array of `selectors`, where each selector corresponds to a different target index on the search service. This section describes each parameter and includes [steps and examples](#how-to-specify-an-indexprojections-definition) for setting up the projections.
144144

145145
### Parameter reference
146146

@@ -166,7 +166,7 @@ This requirement is in contrast with other field mapping conventions in Azure AI
166166

167167
### How to specify an `indexProjections` definition
168168

169-
Choose the tab for the API syntax. There's currently no portal support for setting up projections, other than editing the skillset JSON definition.
169+
Choose a tab for the various API syntax. There's currently no portal support for setting up projections, other than editing the skillset JSON definition. Refer to the REST example for JSON.
170170

171171
#### [**REST**](#tab/rest-create-index-projection)
172172

@@ -213,6 +213,8 @@ Here's an example payload for an index projections definition that you might use
213213

214214
#### [**Python**](#tab/python-create-index-projection)
215215

216+
We recommend the [latest stable package](https://pypi.org/project/azure-search-documents/) for index projections.
217+
216218
```python
217219
index_projections = SearchIndexerIndexProjection(
218220
selectors=[

0 commit comments

Comments
 (0)