Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed invalid type errors in bbox examples #27516

Merged
merged 30 commits into from
Jan 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
8f1a292
Update readme.md: Common/stable/2023-06-01
stevemunk Nov 20, 2023
f621171
Merge pull request #1 from stevemunk/stevemunk-patch-1
stevemunk Nov 20, 2023
27ef4be
Merge branch 'Azure:main' into main
stevemunk Nov 29, 2023
064ae58
Merge branch 'Azure:main' into main
stevemunk Nov 29, 2023
cef0fb2
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Dec 7, 2023
6d06c7f
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Dec 11, 2023
590f3bb
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Dec 12, 2023
b80a897
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Dec 13, 2023
64e4451
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Dec 13, 2023
4266071
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Dec 18, 2023
d563ada
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Dec 19, 2023
125c6fa
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Dec 20, 2023
11abd54
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Dec 28, 2023
2978f4e
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 4, 2024
a7247d0
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 9, 2024
0ffb1b1
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 10, 2024
38da1bc
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 11, 2024
309dd7c
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 11, 2024
f259c7f
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 11, 2024
0074ddb
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 16, 2024
fc7c05d
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 17, 2024
41a4d7f
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 18, 2024
b4cae3b
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 22, 2024
70e0ccd
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 23, 2024
aadd4d1
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 23, 2024
60d72b4
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 23, 2024
11c9a6d
Merge branch 'main' of https://github.com/azure/azure-rest-api-specs
stevemunk Jan 24, 2024
0623dd5
fixed invalid type errors in bbox examples.
stevemunk Jan 24, 2024
863f186
fixed invalid type errors in bbox examples.
stevemunk Jan 24, 2024
c00b3bc
reverted changes
stevemunk Jan 26, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
"datasetId": "018fda98-e638-0edf-5ef7-28491ff3bed4",
"collectionId": "unit",
"limit": 1,
"bbox": "-122, 47, -120, 46"
"bbox": [
-122,
47,
-120,
46
]
},
"responses": {
"200": {
Expand Down
3 changes: 0 additions & 3 deletions specification/maps/data-plane/Creator/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ directive:
from: /specification/maps/data-plane/Creator/preview/2023-07-01-preview
reason: The files in '/specification/maps/data-plane/Creator/stable/2023-07-01-preview' were never released. Please ignore them, they should not appear in the TOC. '/specification/maps/data-plane/Creator/preview/2023-03-01-preview/' contains the latest preview.

- suppress: INVALID_TYPE
reason: false positive from oav is breaking our example validation. See azure/oav#1020.

- suppress: RESPONSE_SCHEMA_NOT_IN_SPEC
reason: false positive from oav is breaking our example validation. See azure/oav#1021.
```
Expand Down
3 changes: 0 additions & 3 deletions specification/maps/data-plane/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ directive:
where: $.paths["/providers/Microsoft.Subscription/subscriptionOperations/{operationId}"].get
reason: The reason for this suppression is the API is already released and introducing new LRO properties will not function and are not supported today and will only be developed for the next version of this API.

- suppress: INVALID_TYPE
reason: false positive from oav is breaking our example validation. See azure/oav#1020.

- suppress: RESPONSE_SCHEMA_NOT_IN_SPEC
reason: false positive from oav is breaking our example validation. See azure/oav#1021.

Expand Down