From 8f1a292d9fb39d3de18667a76b98966d6dd9a483 Mon Sep 17 00:00:00 2001 From: steve munk <33468793+stevemunk@users.noreply.github.com> Date: Mon, 20 Nov 2023 10:11:10 -0800 Subject: [PATCH 1/4] Update readme.md: Common/stable/2023-06-01 current: Common/stable/2023-07-01 Updated: Common/stable/2023-06-01 --- specification/maps/data-plane/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/maps/data-plane/readme.md b/specification/maps/data-plane/readme.md index fe2b8aa34b34..b6e5e96a733f 100644 --- a/specification/maps/data-plane/readme.md +++ b/specification/maps/data-plane/readme.md @@ -51,7 +51,7 @@ These settings apply only when `--tag=package-stable-2023-07-01` is specified on ```yaml $(tag) == 'package-stable-2023-07-01' input-file: - - Common/stable/2023-07-01/common.json + - Common/stable/2023-06-01/common.json - Creator/stable/2023-07-01/alias.json - Creator/stable/2023-07-01/dataset.json - Creator/stable/2023-07-01/dwgconversion.json From 0623dd5645d371847e3542a37538dfc54044507f Mon Sep 17 00:00:00 2001 From: stevemunk <33468793+stevemunk@users.noreply.github.com> Date: Wed, 24 Jan 2024 07:28:11 -0800 Subject: [PATCH 2/4] fixed invalid type errors in bbox examples. --- .../Creator/preview/2.0/examples/wfs/WFS_GetFeatures.json | 7 ++++++- specification/maps/data-plane/Creator/readme.md | 3 --- .../Render/preview/1.0/examples/GetMapImage.json | 7 ++++++- .../Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json | 7 ++++++- specification/maps/data-plane/readme.md | 3 --- 5 files changed, 18 insertions(+), 9 deletions(-) diff --git a/specification/maps/data-plane/Creator/preview/2.0/examples/wfs/WFS_GetFeatures.json b/specification/maps/data-plane/Creator/preview/2.0/examples/wfs/WFS_GetFeatures.json index baadf9b72821..e06e9be2ae9c 100644 --- a/specification/maps/data-plane/Creator/preview/2.0/examples/wfs/WFS_GetFeatures.json +++ b/specification/maps/data-plane/Creator/preview/2.0/examples/wfs/WFS_GetFeatures.json @@ -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": { diff --git a/specification/maps/data-plane/Creator/readme.md b/specification/maps/data-plane/Creator/readme.md index b2ef0cefe841..16988816c2c4 100644 --- a/specification/maps/data-plane/Creator/readme.md +++ b/specification/maps/data-plane/Creator/readme.md @@ -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. ``` diff --git a/specification/maps/data-plane/Microsoft.Maps/Render/preview/1.0/examples/GetMapImage.json b/specification/maps/data-plane/Microsoft.Maps/Render/preview/1.0/examples/GetMapImage.json index b316545d0ef1..6ca710ed72f4 100644 --- a/specification/maps/data-plane/Microsoft.Maps/Render/preview/1.0/examples/GetMapImage.json +++ b/specification/maps/data-plane/Microsoft.Maps/Render/preview/1.0/examples/GetMapImage.json @@ -3,7 +3,12 @@ "api-version": "1.0", "format": "png", "zoom": 2, - "bbox": "1.355233,42.982261,24.980233,56.526017", + "bbox": [ + 1.355233, + 42.982261, + 24.980233, + 56.526017 + ], "layer": "basic", "style": "main", "subscription-key": "[subscription-key]" diff --git a/specification/maps/data-plane/Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json b/specification/maps/data-plane/Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json index 6610cc697011..fd7b3547f664 100644 --- a/specification/maps/data-plane/Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json +++ b/specification/maps/data-plane/Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json @@ -6,7 +6,12 @@ "subscription-key": "[subscription-key]", "collectionId": "unit", "limit": 1, - "bbox": "-122, 47, -120, 46" + "bbox": [ + -122, + 47, + -120, + 46 + ] }, "responses": { "200": { diff --git a/specification/maps/data-plane/readme.md b/specification/maps/data-plane/readme.md index 428f64c72a4d..a4a35e879fab 100644 --- a/specification/maps/data-plane/readme.md +++ b/specification/maps/data-plane/readme.md @@ -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. From 863f1864409eced0e3416021f375b65681999202 Mon Sep 17 00:00:00 2001 From: stevemunk <33468793+stevemunk@users.noreply.github.com> Date: Wed, 24 Jan 2024 08:26:59 -0800 Subject: [PATCH 3/4] fixed invalid type errors in bbox examples. --- .../preview/2.0/examples/wfs/WFS_GetFeatures.json | 10 +++++----- .../Render/preview/1.0/examples/GetMapImage.json | 10 +++++----- .../WFS/preview/2.0/examples/GetItems.json | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/specification/maps/data-plane/Creator/preview/2.0/examples/wfs/WFS_GetFeatures.json b/specification/maps/data-plane/Creator/preview/2.0/examples/wfs/WFS_GetFeatures.json index e06e9be2ae9c..674bd1c582c1 100644 --- a/specification/maps/data-plane/Creator/preview/2.0/examples/wfs/WFS_GetFeatures.json +++ b/specification/maps/data-plane/Creator/preview/2.0/examples/wfs/WFS_GetFeatures.json @@ -6,11 +6,11 @@ "collectionId": "unit", "limit": 1, "bbox": [ - -122, - 47, - -120, - 46 - ] + -122, + 47, + -120, + 46 + ] }, "responses": { "200": { diff --git a/specification/maps/data-plane/Microsoft.Maps/Render/preview/1.0/examples/GetMapImage.json b/specification/maps/data-plane/Microsoft.Maps/Render/preview/1.0/examples/GetMapImage.json index 6ca710ed72f4..7d2845d2578d 100644 --- a/specification/maps/data-plane/Microsoft.Maps/Render/preview/1.0/examples/GetMapImage.json +++ b/specification/maps/data-plane/Microsoft.Maps/Render/preview/1.0/examples/GetMapImage.json @@ -4,11 +4,11 @@ "format": "png", "zoom": 2, "bbox": [ - 1.355233, - 42.982261, - 24.980233, - 56.526017 - ], + 1.355233, + 42.982261, + 24.980233, + 56.526017 + ], "layer": "basic", "style": "main", "subscription-key": "[subscription-key]" diff --git a/specification/maps/data-plane/Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json b/specification/maps/data-plane/Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json index fd7b3547f664..96f4d6be6236 100644 --- a/specification/maps/data-plane/Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json +++ b/specification/maps/data-plane/Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json @@ -7,11 +7,11 @@ "collectionId": "unit", "limit": 1, "bbox": [ - -122, - 47, - -120, - 46 - ] + -122, + 47, + -120, + 46 + ] }, "responses": { "200": { From c00b3bc6346e95e68a490a7b32850c1e3bbe7dbc Mon Sep 17 00:00:00 2001 From: stevemunk <33468793+stevemunk@users.noreply.github.com> Date: Fri, 26 Jan 2024 14:37:34 -0800 Subject: [PATCH 4/4] reverted changes --- .../Render/preview/1.0/examples/GetMapImage.json | 7 +------ .../Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json | 7 +------ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/specification/maps/data-plane/Microsoft.Maps/Render/preview/1.0/examples/GetMapImage.json b/specification/maps/data-plane/Microsoft.Maps/Render/preview/1.0/examples/GetMapImage.json index 7d2845d2578d..b316545d0ef1 100644 --- a/specification/maps/data-plane/Microsoft.Maps/Render/preview/1.0/examples/GetMapImage.json +++ b/specification/maps/data-plane/Microsoft.Maps/Render/preview/1.0/examples/GetMapImage.json @@ -3,12 +3,7 @@ "api-version": "1.0", "format": "png", "zoom": 2, - "bbox": [ - 1.355233, - 42.982261, - 24.980233, - 56.526017 - ], + "bbox": "1.355233,42.982261,24.980233,56.526017", "layer": "basic", "style": "main", "subscription-key": "[subscription-key]" diff --git a/specification/maps/data-plane/Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json b/specification/maps/data-plane/Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json index 96f4d6be6236..6610cc697011 100644 --- a/specification/maps/data-plane/Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json +++ b/specification/maps/data-plane/Microsoft.Maps/WFS/preview/2.0/examples/GetItems.json @@ -6,12 +6,7 @@ "subscription-key": "[subscription-key]", "collectionId": "unit", "limit": 1, - "bbox": [ - -122, - 47, - -120, - 46 - ] + "bbox": "-122, 47, -120, 46" }, "responses": { "200": {