generated from stac-extensions/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
119 lines (119 loc) · 3 KB
/
schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://stac-extensions.github.io/sentinel-1/v0.2.0/schema.json#",
"title": "Sentinel-1 Extension",
"description": "STAC Sentinel-1 Extension for STAC Items and STAC Collection Summaries.",
"type": "object",
"required": [
"stac_extensions"
],
"properties": {
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stac-extensions.github.io/sentinel-1/v0.2.0/schema.json"
}
}
},
"oneOf": [
{
"$comment": "This is the schema for STAC Items.",
"type": "object",
"required": [
"type",
"properties"
],
"properties": {
"type": {
"const": "Feature"
},
"properties": {
"allOf": [
{
"$ref": "#/definitions/require_any"
},
{
"$ref": "#/definitions/fields"
}
]
}
}
},
{
"$comment": "This is the schema for STAC Collections, or more specifically only Collection Summaries in this case. By default, only checks the existence of the properties, but not the schema of the summaries.",
"type": "object",
"required": [
"type",
"summaries"
],
"properties": {
"type": {
"const": "Collection"
},
"summaries": {
"$ref": "#/definitions/require_any"
}
}
}
],
"definitions": {
"require_any": {
"$comment": "Please list all fields here so that we can force the existence of one of them in other parts of the schemas.",
"anyOf": [
{"required": ["s1:datatake_id"]},
{"required": ["s1:instrument_configuration_ID"]},
{"required": ["s1:orbit_source"]},
{"required": ["s1:slice_number"]},
{"required": ["s1:total_slices"]}
]
},
"fields": {
"$comment": " Don't require fields here, do that above in the corresponding schema.",
"type": "object",
"properties": {
"s1:datatake_id": {
"type": "string"
},
"s1:instrument_configuration_ID": {
"type": "string"
},
"s1:orbit_source": {
"type": "string"
},
"s1:processing_datetime": {
"type": "string",
"format": "date-time"
},
"s1:product_identifier": {
"type": "string"
},
"s1:product_timeliness": {
"type": "string"
},
"s1:resolution": {
"type": "string"
},
"s1:slice_number": {
"type": "string"
},
"s1:total_slices": {
"type": "string"
},
"s1:processing_level": {
"type": "string"
},
"s1:shape": {
"type": "array",
"minItems": 2,
"items": {
"type": "integer"
}
}
},
"patternProperties": {
"^(?!s1:)": {}
},
"additionalProperties": false
}
}
}