File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Changed
11
11
12
+ - Allow the ` geometry ` property in Items to be set to ` null ` to align with STAC
12
13
- Fix the schema for Collection summaries:
13
14
- Allow JSON Schema
14
15
- Update ` min ` and ` max ` to ` minimum ` and ` maxmimum `
Original file line number Diff line number Diff line change @@ -586,7 +586,7 @@ components:
586
586
bbox :
587
587
$ref : " #/components/schemas/bbox"
588
588
geometry :
589
- $ref : " #/components/schemas/geometryGeoJSON "
589
+ $ref : " #/components/schemas/geometry "
590
590
type :
591
591
$ref : " #/components/schemas/itemType"
592
592
links :
@@ -718,6 +718,13 @@ components:
718
718
description : Purposes of the asset
719
719
example :
720
720
- thumbnail
721
+ geometry :
722
+ oneOf :
723
+ - $ref : " #/components/schemas/geometryGeoJSON"
724
+ - title : Unlocated Feature
725
+ nullable : true
726
+ enum :
727
+ - null
721
728
geometryGeoJSON :
722
729
oneOf :
723
730
- $ref : " #/components/schemas/pointGeoJSON"
@@ -879,7 +886,7 @@ components:
879
886
enum :
880
887
- Feature
881
888
geometry :
882
- $ref : " #/components/schemas/geometryGeoJSON "
889
+ $ref : " #/components/schemas/geometry "
883
890
properties :
884
891
type : object
885
892
nullable : true
You can’t perform that action at this time.
0 commit comments