Skip to content

Commit 0734048

Browse files
committed
Fixed formatting
1 parent a1e2b7c commit 0734048

File tree

1 file changed

+42
-42
lines changed

1 file changed

+42
-42
lines changed

articles/search/search-semi-structured-data.md

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -187,47 +187,47 @@ The second call is [Create Index API](https://docs.microsoft.com/rest/api/search
187187
{"name": "metadata_content_type", "type":"Edm.String", "searchable": true, "retrievable": true, "filterable": true, "sortable": false}
188188
]
189189
}
190-
```
190+
```
191191

192192
1. Send the request. The response should look like:
193193

194-
```json
195-
{
196-
"@odata.context": "https://exampleurl.search.windows.net/$metadata#indexes/$entity",
197-
"@odata.etag": "\"0x8D505FC00EDD5FA\"",
198-
"name": "clinical-trials-json-index",
199-
"fields": [
200-
{
201-
"name": "FileName",
202-
"type": "Edm.String",
203-
"searchable": false,
204-
"filterable": false,
205-
"retrievable": true,
206-
"sortable": true,
207-
"facetable": false,
208-
"key": false,
209-
"indexAnalyzer": null,
210-
"searchAnalyzer": null,
211-
"analyzer": null,
212-
"synonymMaps": []
213-
},
214-
{
215-
"name": "Description",
216-
"type": "Edm.String",
217-
"searchable": true,
218-
"filterable": false,
219-
"retrievable": false,
220-
"sortable": false,
221-
"facetable": false,
222-
"key": false,
223-
"indexAnalyzer": null,
224-
"searchAnalyzer": null,
225-
"analyzer": null,
226-
"synonymMaps": []
227-
},
228-
...
229-
}
230-
```
194+
```json
195+
{
196+
"@odata.context": "https://exampleurl.search.windows.net/$metadata#indexes/$entity",
197+
"@odata.etag": "\"0x8D505FC00EDD5FA\"",
198+
"name": "clinical-trials-json-index",
199+
"fields": [
200+
{
201+
"name": "FileName",
202+
"type": "Edm.String",
203+
"searchable": false,
204+
"filterable": false,
205+
"retrievable": true,
206+
"sortable": true,
207+
"facetable": false,
208+
"key": false,
209+
"indexAnalyzer": null,
210+
"searchAnalyzer": null,
211+
"analyzer": null,
212+
"synonymMaps": []
213+
},
214+
{
215+
"name": "Description",
216+
"type": "Edm.String",
217+
"searchable": true,
218+
"filterable": false,
219+
"retrievable": false,
220+
"sortable": false,
221+
"facetable": false,
222+
"key": false,
223+
"indexAnalyzer": null,
224+
"searchAnalyzer": null,
225+
"analyzer": null,
226+
"synonymMaps": []
227+
},
228+
...
229+
}
230+
```
231231

232232
## 5 - Create and run an indexer
233233

@@ -312,11 +312,11 @@ You can start searching as soon as the first document is loaded.
312312

313313
1. Add the `$select` query parameter to limit the results to fewer fields: `https://[service name].search.windows.net/indexes/clinical-trials-json-index/docs?search=*&$select=Gender,metadata_storage_size&api-version=2019-05-06&$count=true`. For this query, 100 documents match, but by default, Azure Cognitive Search only returns 50 in the results.
314314

315-
![Parameterized query](media/search-semi-structured-data/lastquery.png "Paramterized query")
315+
![Parameterized query](media/search-semi-structured-data/lastquery.png "Paramterized query")
316316

317317
1. An example of more complex query would include `$filter=MinimumAge ge 30 and MaximumAge lt 75`, which returns only results where the parameters MinimumAge is greater than or equal to 30 and MaximumAge is less than 75. Replace the `$select` expression with the `$filter` expression.
318318

319-
![Semi-structured search](media/search-semi-structured-data/metadatashort.png)
319+
![Semi-structured search](media/search-semi-structured-data/metadatashort.png)
320320

321321
You can also use Logical operators (and, or, not) and comparison operators (eq, ne, gt, lt, ge, le). String comparisons are case-sensitive. For more information and examples, see [Create a simple query](search-query-simple-examples.md).
322322

@@ -343,7 +343,7 @@ You can find and manage resources in the portal, using the All resources or Reso
343343

344344
## Next steps
345345

346-
Now that you're familiar with the basics of Azure Blob indexing, let's take a closer look at indexer configuration.
346+
Now that you're familiar with the basics of Azure Blob indexing, let's take a closer look at indexer configuration for JSON blobs in Azure Storage.
347347

348348
> [!div class="nextstepaction"]
349-
> [Configure an Azure Blob storage indexer](search-howto-indexing-azure-blob-storage.md)
349+
> [Configure JSON blob indexing](search-howto-index-json-blobs.md)

0 commit comments

Comments
 (0)