Skip to content
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ceadf98
Copy files from stable/2024-07-01
efrainretana Jul 18, 2025
8869538
Update version to stable/2025-09-01
efrainretana Jul 18, 2025
8198b76
Initial API cut
efrainretana Jul 18, 2025
dcdb5db
Merge branch 'main' of https://github.com/Azure/azure-rest-api-specs …
efrainretana Jul 30, 2025
0f015e8
Sync Azs to GH Swagger and examples
efrainretana Jul 30, 2025
ca2a72e
Add Index Level Description
efrainretana Jul 30, 2025
6429076
[Bugfix] Adding name property to SearchIndexerStatus
efrainretana Jul 30, 2025
fff5563
Swagger & SDK Changes for MRL GA
efrainretana Jul 30, 2025
5fd43c2
Add normalizers swagger
efrainretana Jul 30, 2025
9d22af4
GA subscore for vector with debug query mode
efrainretana Jul 30, 2025
785172e
Onelake GA Swagger changes
efrainretana Jul 30, 2025
e571951
swagger change: support new object rescoringOptions,
efrainretana Jul 30, 2025
d05cf2f
Merge branch 'main' of https://github.com/Azure/azure-rest-api-specs …
efrainretana Jul 30, 2025
0c37644
Add Document Intelligence Changes
efrainretana Aug 7, 2025
83acb84
GA semantic scoring profile
efrainretana Aug 11, 2025
fb2bf7e
Merge branch 'main' into efrainretana/2025-09-01-dataplane
efrainretana Aug 11, 2025
080507d
Add semantic partial response fix
efrainretana Aug 13, 2025
90e85df
Merge branch 'efrainretana/2025-09-01-dataplane' of https://github.co…
efrainretana Aug 13, 2025
26f5285
Fix description for debug definition
efrainretana Aug 13, 2025
f876e76
Merge branch 'main' into efrainretana/2025-09-01-dataplane
efrainretana Aug 18, 2025
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
30 changes: 29 additions & 1 deletion specification/search/data-plane/Azure.Search/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ These are the global settings for SearchServiceClient and SearchIndexClient.
title: SearchClient
opt-in-extensible-enums: true
openapi-type: data-plane
tag: package-2025-08-01-preview
tag: package-2025-09-01

directive:
- where:
Expand Down Expand Up @@ -167,6 +167,34 @@ directive:
- RequiredReadOnlyProperties
```

### Tag: package-2025-09-01

These settings apply only when `--tag=package-2025-09-01` is specified on the command line.

``` yaml $(tag) == 'package-2025-09-01'
input-file:
- stable/2025-09-01/searchservice.json
- stable/2025-09-01/searchindex.json
```

### Tag: package-2025-09-searchservice

These settings apply only when `--tag=package-2025-09-searchservice` is specified on the command line.

``` yaml $(tag) == 'package-2025-09-searchservice'
input-file:
- stable/2025-09-01/searchservice.json
```

### Tag: package-2025-09-searchindex

These settings apply only when `--tag=package-2025-09-searchindex` is specified on the command line.

``` yaml $(tag) == 'package-2025-09-searchindex'
input-file:
- stable/2025-09-01/searchindex.json
```

### Tag: package-2025-08-01-preview

These settings apply only when `--tag=package-2025-08-01-preview` is specified on the command line.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"parameters": {
"endpoint": "https://myservice.search.windows.net",
"indexName": "myindex",
"api-version": "2025-09-01",
"autocompleteMode": "oneTerm",
"search": "washington medic",
"suggesterName": "sg",
"filter": "search.in(docId,'101,102,105')",
"fuzzy": false,
"highlightPostTag": "</em>",
"highlightPreTag": "<em>",
"minimumCoverage": 80,
"searchFields": [
"title",
"description"
],
"top": 10
},
"responses": {
"200": {
"body": [
{
"text": "medicaid",
"queryPlusText": "washington medicaid"
},
{
"text": "medicare",
"queryPlusText": "washington medicare"
},
{
"text": "medicine",
"queryPlusText": "washington medicine"
}
]
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"operationId": "Documents_AutocompletePost",
"title": "SearchIndexAutocompleteDocumentsPost",
"parameters": {
"endpoint": "https://stableexampleservice.search.windows.net",
"indexName": "stable-test",
"api-version": "2025-09-01",
"x-ms-client-request-id": "00000000-0000-0000-0000-000000000000",
"autocompleteRequest": {
"search": "p",
"autocompleteMode": "oneTerm",
"filter": "ownerId ne '1'",
"fuzzy": true,
"highlightPostTag": "</em>",
"highlightPreTag": "<em>",
"minimumCoverage": 80,
"searchFields": "category, ownerId",
"suggesterName": "sg",
"top": 10
}
},
"responses": {
"200": {
"body": {
"@search.coverage": 100.0,
"value": [
{
"text": "purple",
"queryPlusText": "<em>purple</em>"
},
{
"text": "pink",
"queryPlusText": "<em>pink</em>"
}
]
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"operationId": "Documents_Count",
"title": "SearchIndexCountDocuments",
"parameters": {
"endpoint": "https://stableexampleservice.search.windows.net",
"indexName": "stable-test",
"api-version": "2025-09-01",
"x-ms-client-request-id": "00000000-0000-0000-0000-000000000000"
},
"responses": {
"200": {
"body": 50
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"operationId": "Documents_Get",
"title": "SearchIndexGetDocument",
"parameters": {
"endpoint": "https://stableexampleservice.search.windows.net",
"indexName": "stable-test",
"key": "1",
"$select": [
"id",
"description",
"name",
"category",
"ownerId"
],
"api-version": "2025-09-01",
"x-ms-client-request-id": "00000000-0000-0000-0000-000000000000"
},
"responses": {
"200": {
"body": {
"id": "1",
"name": "test",
"description": "test1 hello",
"category": "purple",
"ownerId": "sam"
}
}
}
}
Loading
Loading