Skip to content

Commit

Permalink
Add missing brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
m-burgoyne authored Nov 28, 2024
1 parent d6b5acc commit a213826
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions core/standard/openapi/schemas/collections/extent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ properties:
maxItems: 6
type: array
example:
- [-180, -90, 180, 90]
- [[-180, -90, 180, 90]]
crs:
description: >-
Coordinate reference system of the coordinates in the spatial extent
Expand Down Expand Up @@ -125,11 +125,11 @@ properties:
type: string
nullable: true
example:
- ["2020-11-12T12:15Z","2020-11-12T12:15Z"]
- ["2020-11-12T12:15Z","2020-11-12T12:45Z"]
- ["2022-01-14T09:00Z","2022-01-15T09:00Z"]
- ["2022-01-14T09:00Z","2022-01-14T21:00Z"]
- ["2022-01-14T09:00Z","2022-01-16T09:00Z"]
- [["2020-11-12T12:15Z","2020-11-12T12:15Z"]]
- [["2020-11-12T12:15Z","2020-11-12T12:45Z"]]
- [["2022-01-14T09:00Z","2022-01-15T09:00Z"]]
- [["2022-01-14T09:00Z","2022-01-14T21:00Z"]]
- [["2022-01-14T09:00Z","2022-01-16T09:00Z"]]

values:
description: |-
Expand Down Expand Up @@ -187,7 +187,7 @@ properties:
type: string
nullable: true
example:
- ["2","100"]
- [["2","100"]]
values:
description: |-
Vertical level intervals that data in the collection is available at
Expand Down Expand Up @@ -242,7 +242,7 @@ properties:
type: string
nullable: true
example:
- ["0","50"]
- [["0","50"]]
values:
description: |-
values that data in the collection is available at
Expand Down

0 comments on commit a213826

Please sign in to comment.