File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
collection-spec/json-schema Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2121### Fixed
2222
2323- Label extension: ` label:classes ` was flagged as required in JSON Schema, but is only required for categorical data.
24+ - Fixed JSON Schema for ` providers ` (Collections and Items) to be an object and require a ` name ` .
2425- JSON Schema for ` sar:polarizations ` in ` assets ` fixed
2526
2627## [ v1.0.0-beta.2] - 2020-07-08
Original file line number Diff line number Diff line change 5454 "providers" : {
5555 "type" : " array" ,
5656 "items" : {
57+ "type" : " object" ,
58+ "required" : [
59+ " name"
60+ ],
5761 "properties" : {
5862 "name" : {
5963 "title" : " Organization name" ,
Original file line number Diff line number Diff line change 88 "title" : " Providers" ,
99 "type" : " array" ,
1010 "items" : {
11+ "type" : " object" ,
12+ "required" : [
13+ " name"
14+ ],
1115 "properties" : {
1216 "name" : {
1317 "title" : " Organization name" ,
You can’t perform that action at this time.
0 commit comments