File tree Expand file tree Collapse file tree 5 files changed +163
-1
lines changed
src/python_osw_validation Expand file tree Collapse file tree 5 files changed +163
-1
lines changed Original file line number Diff line number Diff line change 11# Change log
22
3+ ### 0.2.13
4+ - Updated Schema
5+
36### 0.2.12
47
58#### Added
Original file line number Diff line number Diff line change 2323 "format" : " date-time" ,
2424 "type" : " string"
2525 },
26+ "pipelineVersion" : {
27+ "additionalProperties" : true ,
28+ "properties" : {},
29+ "type" : " object"
30+ },
31+ "region" : {
32+ "title" : " geometryObject" ,
33+ "type" : " object" ,
34+ "required" : [
35+ " type" ,
36+ " coordinates"
37+ ],
38+ "additionalProperties" : false ,
39+ "properties" : {
40+ "type" : {
41+ "title" : " GeometryType" ,
42+ "type" : " string" ,
43+ "default" : " MultiPolygon" ,
44+ "enum" : [
45+ " MultiPolygon"
46+ ]
47+ },
48+ "coordinates" : {
49+ "type" : " array" ,
50+ "minItems" : 1 ,
51+ "items" : {
52+ "type" : " array" ,
53+ "minItems" : 1 ,
54+ "items" : {
55+ "type" : " array" ,
56+ "minItems" : 4 ,
57+ "items" : {
58+ "type" : " array" ,
59+ "additionalItems" : false ,
60+ "items" : [
61+ {
62+ "type" : " number" ,
63+ "minimum" : -180 ,
64+ "maximum" : 180
65+ },
66+ {
67+ "type" : " number" ,
68+ "minimum" : -90 ,
69+ "maximum" : 90
70+ }
71+ ]
72+ }
73+ }
74+ }
75+ }
76+ },
77+ "description" : " MultiPolygon geometry object."
78+ },
2679 "type" : {
2780 "title" : " Feature Collection" ,
2881 "type" : " string" ,
Original file line number Diff line number Diff line change 2323 "format" : " date-time" ,
2424 "type" : " string"
2525 },
26+ "pipelineVersion" : {
27+ "additionalProperties" : true ,
28+ "properties" : {},
29+ "type" : " object"
30+ },
31+ "region" : {
32+ "title" : " geometryObject" ,
33+ "type" : " object" ,
34+ "required" : [
35+ " type" ,
36+ " coordinates"
37+ ],
38+ "additionalProperties" : false ,
39+ "properties" : {
40+ "type" : {
41+ "title" : " GeometryType" ,
42+ "type" : " string" ,
43+ "default" : " MultiPolygon" ,
44+ "enum" : [
45+ " MultiPolygon"
46+ ]
47+ },
48+ "coordinates" : {
49+ "type" : " array" ,
50+ "minItems" : 1 ,
51+ "items" : {
52+ "type" : " array" ,
53+ "minItems" : 1 ,
54+ "items" : {
55+ "type" : " array" ,
56+ "minItems" : 4 ,
57+ "items" : {
58+ "type" : " array" ,
59+ "additionalItems" : false ,
60+ "items" : [
61+ {
62+ "type" : " number" ,
63+ "minimum" : -180 ,
64+ "maximum" : 180
65+ },
66+ {
67+ "type" : " number" ,
68+ "minimum" : -90 ,
69+ "maximum" : 90
70+ }
71+ ]
72+ }
73+ }
74+ }
75+ }
76+ },
77+ "description" : " MultiPolygon geometry object."
78+ },
2679 "type" : {
2780 "title" : " Feature Collection" ,
2881 "type" : " string" ,
Original file line number Diff line number Diff line change 2323 "format" : " date-time" ,
2424 "type" : " string"
2525 },
26+ "pipelineVersion" : {
27+ "additionalProperties" : true ,
28+ "properties" : {},
29+ "type" : " object"
30+ },
31+ "region" : {
32+ "title" : " geometryObject" ,
33+ "type" : " object" ,
34+ "required" : [
35+ " type" ,
36+ " coordinates"
37+ ],
38+ "additionalProperties" : false ,
39+ "properties" : {
40+ "type" : {
41+ "title" : " GeometryType" ,
42+ "type" : " string" ,
43+ "default" : " MultiPolygon" ,
44+ "enum" : [
45+ " MultiPolygon"
46+ ]
47+ },
48+ "coordinates" : {
49+ "type" : " array" ,
50+ "minItems" : 1 ,
51+ "items" : {
52+ "type" : " array" ,
53+ "minItems" : 1 ,
54+ "items" : {
55+ "type" : " array" ,
56+ "minItems" : 4 ,
57+ "items" : {
58+ "type" : " array" ,
59+ "additionalItems" : false ,
60+ "items" : [
61+ {
62+ "type" : " number" ,
63+ "minimum" : -180 ,
64+ "maximum" : 180
65+ },
66+ {
67+ "type" : " number" ,
68+ "minimum" : -90 ,
69+ "maximum" : 90
70+ }
71+ ]
72+ }
73+ }
74+ }
75+ }
76+ },
77+ "description" : " MultiPolygon geometry object."
78+ },
2679 "type" : {
2780 "title" : " Feature Collection" ,
2881 "type" : " string" ,
Original file line number Diff line number Diff line change 1- __version__ = '0.2.12 '
1+ __version__ = '0.2.13 '
You can’t perform that action at this time.
0 commit comments