adiwg-mdjson_schemas 1.1.3 → 2.0.0.pre.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +2 -0
- data/README.md +14 -3
- data/adiwg-json_schemas.gemspec +2 -2
- data/bower.json +0 -1
- data/examples/additionalDocumentation.json +9 -60
- data/examples/address.json +14 -10
- data/examples/allocation.json +12 -0
- data/examples/associatedResource.json +10 -118
- data/examples/attribute.json +27 -0
- data/examples/attributeGroup.json +17 -0
- data/examples/boundingBox.json +6 -0
- data/examples/citation.json +69 -127
- data/examples/computedBbox.json +399 -0
- data/examples/constraint.json +62 -0
- data/examples/contact.json +40 -207
- data/examples/coverageDescription.json +21 -0
- data/examples/date.json +8 -19
- data/examples/dictionary.json +58 -0
- data/examples/dimension.json +11 -0
- data/examples/distribution.json +26 -0
- data/examples/distributor.json +22 -142
- data/examples/domain.json +29 -0
- data/examples/domainItem.json +11 -0
- data/examples/duration.json +17 -0
- data/examples/entity.json +48 -0
- data/examples/entityAttribute.json +31 -0
- data/examples/entityForeignKey.json +17 -0
- data/examples/entityIndex.json +8 -0
- data/examples/extent.json +60 -0
- data/examples/featureCollection.json +58 -0
- data/examples/featureProperties.json +16 -0
- data/examples/format.json +7 -14
- data/examples/funding.json +33 -0
- data/examples/geoJson.json +185 -0
- data/examples/geographicExtent.json +22 -0
- data/examples/geometryCollection.json +14 -0
- data/examples/geometryFeature.json +12 -0
- data/examples/geometryObject.json +90 -0
- data/examples/georectifiedRepresentation.json +28 -0
- data/examples/georeferencableRepresentation.json +25 -0
- data/examples/gmlIdentifier.json +8 -0
- data/examples/graphic.json +33 -0
- data/examples/gridRepresentation.json +14 -0
- data/examples/identifier.json +9 -0
- data/examples/imageDescription.json +15 -0
- data/examples/keyword.json +14 -0
- data/examples/keywordObject.json +12 -0
- data/examples/legalConstraint.json +21 -0
- data/examples/lineage.json +21 -0
- data/examples/locale.json +12 -3
- data/examples/maintenance.json +38 -0
- data/examples/mdJson.json +99 -0
- data/examples/measure.json +5 -0
- data/examples/medium.json +16 -0
- data/examples/metadata.json +102 -0
- data/examples/metadataInfo.json +68 -101
- data/examples/onlineResource.json +13 -17
- data/examples/orderProcess.json +6 -0
- data/examples/party.json +21 -0
- data/examples/phone.json +9 -0
- data/examples/processStep.json +34 -0
- data/examples/releasability.json +28 -0
- data/examples/resourceInfo.json +230 -1256
- data/examples/responsibleParty.json +31 -0
- data/examples/schema.json +8 -0
- data/examples/scope.json +33 -0
- data/examples/scopeDescription.json +8 -0
- data/examples/securityConstraint.json +13 -0
- data/examples/series.json +9 -0
- data/examples/source.json +23 -0
- data/examples/spatialReference.json +34 -0
- data/examples/spatialRepresentation.json +59 -0
- data/examples/spatialResolution.json +11 -0
- data/examples/taxonomicClassification.json +59 -0
- data/examples/taxonomicSystem.json +13 -0
- data/examples/taxonomy.json +79 -188
- data/examples/temporalExtent.json +11 -0
- data/examples/timeInstant.json +13 -0
- data/examples/timeInterval.json +8 -0
- data/examples/timePeriod.json +26 -0
- data/examples/transferOption.json +36 -0
- data/examples/usage.json +48 -33
- data/examples/vectorObject.json +4 -0
- data/examples/vectorRepresentation.json +10 -0
- data/examples/verticalExtent.json +10 -17
- data/examples/voucher.json +12 -0
- data/lib/adiwg/mdjson_schemas/utils.rb +45 -15
- data/lib/adiwg/mdjson_schemas/validator.rb +6 -7
- data/lib/adiwg/mdjson_schemas/version.rb +1 -1
- data/lib/adiwg/mdjson_schemas.rb +4 -2
- data/schema/additionalDocumentation.json +29 -0
- data/schema/associatedResource.json +49 -0
- data/schema/attribute.json +157 -0
- data/schema/attributeGroup.json +29 -0
- data/schema/{schema/geojson/bbox.json → bbox.json} +2 -2
- data/schema/{schema/citation.json → citation.json} +73 -99
- data/schema/common.json +49 -0
- data/schema/{schema/resourceConstraint.json → constraint.json} +83 -13
- data/schema/contact.json +234 -0
- data/schema/coverageDescription.json +50 -0
- data/schema/dataDictionary.json +71 -0
- data/schema/distribution.json +35 -0
- data/schema/distributor.json +46 -0
- data/schema/domain.json +65 -0
- data/schema/entity.json +235 -0
- data/schema/extent.json +59 -0
- data/schema/format.json +37 -0
- data/schema/funding.json +67 -0
- data/schema/geographicExtent.json +87 -0
- data/schema/{schema/geojson/geojson.json → geojson.json} +16 -44
- data/schema/{schema/geojson/geometry.json → geometry.json} +2 -1
- data/schema/georectifiedRepresentation.json +89 -0
- data/schema/georeferencableRepresentation.json +49 -0
- data/schema/{schema/graphicOverview.json → graphic.json} +19 -6
- data/schema/{schema/gridInfo.json → gridRepresentation.json} +7 -13
- data/schema/identifier.json +47 -0
- data/schema/imageDescription.json +92 -0
- data/schema/{schema/keyword.json → keyword.json} +18 -4
- data/schema/{schema/dataQuality.json → lineage.json} +92 -57
- data/schema/{schema/maintInfo.json → maintInfo.json} +24 -6
- data/schema/measure.json +31 -0
- data/schema/medium.json +55 -0
- data/schema/metadata.json +77 -0
- data/schema/metadataInfo.json +112 -0
- data/schema/{schema/onlineResource.json → onlineResource.json} +1 -1
- data/schema/orderProcess.json +45 -0
- data/schema/releasability.json +42 -0
- data/schema/{schema/resourceInfo.json → resourceInfo.json} +112 -189
- data/schema/responsibility.json +56 -0
- data/schema/schema.json +16 -31
- data/schema/scope.json +55 -0
- data/schema/spatialReference.json +26 -0
- data/schema/spatialRepresentation.json +83 -0
- data/schema/spatialResolution.json +54 -0
- data/schema/taxonomy.json +178 -0
- data/schema/temporalExtent.json +42 -0
- data/schema/timeInstant.json +46 -0
- data/schema/timePeriod.json +126 -0
- data/schema/transferOption.json +61 -0
- data/schema/{schema/usage.json → usage.json} +34 -4
- data/schema/vectorRepresentation.json +51 -0
- data/schema/verticalExtent.json +37 -0
- data/test/helper.rb +32 -0
- data/test/tc_additionalDocumentation.rb +8 -0
- data/test/tc_address.rb +8 -0
- data/test/tc_associatedResource.rb +8 -0
- data/test/tc_attribute.rb +8 -0
- data/test/tc_attributeGroup.rb +8 -0
- data/test/tc_boundingBox.rb +8 -0
- data/test/tc_citation.rb +8 -0
- data/test/tc_constraint.rb +8 -0
- data/test/tc_contact.rb +8 -0
- data/test/tc_coverageDescription.rb +8 -0
- data/test/tc_dataDictionary.rb +8 -0
- data/test/tc_dimension.rb +8 -0
- data/test/tc_distribution.rb +8 -0
- data/test/tc_distributor.rb +8 -0
- data/test/tc_domain.rb +8 -0
- data/test/tc_domainItem.rb +8 -0
- data/test/tc_duration.rb +8 -0
- data/test/tc_entity.rb +20 -0
- data/test/tc_extent.rb +8 -0
- data/test/tc_featureCollection.rb +8 -0
- data/test/tc_featureProperties.rb +8 -0
- data/test/tc_format.rb +8 -0
- data/test/tc_funding.rb +8 -0
- data/test/tc_geographicElement.rb +12 -0
- data/test/tc_geographicExtent.rb +8 -0
- data/test/tc_geometryCollection.rb +8 -0
- data/test/tc_geometryFeature.rb +8 -0
- data/test/tc_geometryObject.rb +8 -0
- data/test/tc_georectifiedRepresentation.rb +8 -0
- data/test/tc_georeferencableRepresentation.rb +8 -0
- data/test/tc_graphic.rb +8 -0
- data/test/tc_gridRepresentation.rb +8 -0
- data/test/tc_identifier.rb +8 -0
- data/test/tc_imageDescription.rb +8 -0
- data/test/tc_jsonschema.rb +16 -0
- data/test/tc_keyword.rb +8 -0
- data/test/tc_lineage.rb +8 -0
- data/test/tc_maintInfo.rb +8 -0
- data/test/tc_measure.rb +8 -0
- data/test/tc_medium.rb +8 -0
- data/test/tc_metadata.rb +8 -0
- data/test/tc_metadataInfo.rb +8 -0
- data/test/tc_onlineResource.rb +8 -0
- data/test/tc_orderProcess.rb +8 -0
- data/test/tc_party.rb +8 -0
- data/test/tc_processStep.rb +8 -0
- data/test/tc_releasability.rb +8 -0
- data/test/tc_resourceInfo.rb +8 -0
- data/test/tc_responsibility.rb +8 -0
- data/test/tc_schema.rb +8 -0
- data/test/tc_scope.rb +8 -0
- data/test/tc_source.rb +8 -0
- data/test/tc_spatialReference.rb +8 -0
- data/test/tc_spatialRepresentation.rb +8 -0
- data/test/tc_spatialResolution.rb +8 -0
- data/test/tc_taxonomicClassification.rb +8 -0
- data/test/tc_taxonomicSystem.rb +8 -0
- data/test/tc_taxonomy.rb +8 -0
- data/test/tc_temporalExtent.rb +8 -0
- data/test/tc_timeInstant.rb +8 -0
- data/test/tc_timePeriod.rb +8 -0
- data/test/tc_transferOption.rb +8 -0
- data/test/tc_uri.rb +8 -0
- data/test/tc_usage.rb +8 -0
- data/test/tc_utils.rb +8 -11
- data/test/tc_vectorRepresentation.rb +13 -0
- data/test/tc_verticalExtent.rb +8 -0
- data/test/tc_voucher.rb +8 -0
- metadata +264 -57
- data/examples/contactRef.json +0 -12
- data/examples/coverageInfo.json +0 -148
- data/examples/dataDictionary.json +0 -549
- data/examples/dataQuality.json +0 -272
- data/examples/extent_linestring.json +0 -288
- data/examples/extent_point.json +0 -246
- data/examples/extent_polygon.json +0 -353
- data/examples/full_example.json +0 -3065
- data/examples/full_example2.json +0 -2325
- data/examples/geojson.json +0 -446
- data/examples/graphicOverview.json +0 -28
- data/examples/gridInfo.json +0 -23
- data/examples/hierarchyLevel.json +0 -90
- data/examples/keywords.json +0 -144
- data/examples/lcc_project_example.json +0 -326
- data/examples/legalConstraints.json +0 -17
- data/examples/maintInfo.json +0 -34
- data/examples/minimum_example.json +0 -35
- data/examples/resolution.json +0 -9
- data/examples/resourceMaintenance.json +0 -10
- data/examples/securityConstraints.json +0 -13
- data/examples/spatialRef.json +0 -14
- data/examples/temporalElement.json +0 -29
- data/schema/schema/contact.json +0 -262
- data/schema/schema/coverageInfo.json +0 -303
- data/schema/schema/dataDictionary.json +0 -335
- data/schema/schema/distributor.json +0 -216
- data/schema/schema/extent.json +0 -215
- data/schema/schema/geojson/crs.json +0 -99
- data/schema/schema/metadata.json +0 -188
- data/schema/schema/resolution.json +0 -51
- data/schema/schema/taxonomy.json +0 -122
- data/test/tc_schemas.rb +0 -243
- /data/schema/{schema/locale.json → locale.json} +0 -0
@@ -0,0 +1,399 @@
|
|
1
|
+
{
|
2
|
+
"geographicExtent": [
|
3
|
+
{
|
4
|
+
"geographicElement": [
|
5
|
+
{
|
6
|
+
"type": "Point",
|
7
|
+
"coordinates": [100.0, 0.0]
|
8
|
+
},
|
9
|
+
{
|
10
|
+
"type": "LineString",
|
11
|
+
"coordinates": [
|
12
|
+
[100.0, 0.0],
|
13
|
+
[101.0, 1.0]
|
14
|
+
]
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"type": "Polygon",
|
18
|
+
"coordinates": [
|
19
|
+
[
|
20
|
+
[100.0, 0.0],
|
21
|
+
[101.0, 0.0],
|
22
|
+
[101.0, 1.0],
|
23
|
+
[100.0, 1.0],
|
24
|
+
[100.0, 0.0]
|
25
|
+
]
|
26
|
+
]
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"type": "Polygon",
|
30
|
+
"coordinates": [
|
31
|
+
[
|
32
|
+
[100.0, 0.0],
|
33
|
+
[101.0, 0.0],
|
34
|
+
[101.0, 1.0],
|
35
|
+
[100.0, 1.0],
|
36
|
+
[100.0, 0.0]
|
37
|
+
],
|
38
|
+
[
|
39
|
+
[100.8, 0.8],
|
40
|
+
[100.8, 0.2],
|
41
|
+
[100.2, 0.2],
|
42
|
+
[100.2, 0.8],
|
43
|
+
[100.8, 0.8]
|
44
|
+
]
|
45
|
+
]
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"type": "MultiPoint",
|
49
|
+
"coordinates": [
|
50
|
+
[100.0, 0.0],
|
51
|
+
[101.0, 1.0]
|
52
|
+
]
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"type": "MultiLineString",
|
56
|
+
"coordinates": [
|
57
|
+
[
|
58
|
+
[100.0, 0.0],
|
59
|
+
[101.0, 1.0]
|
60
|
+
],
|
61
|
+
[
|
62
|
+
[102.0, 2.0],
|
63
|
+
[103.0, 3.0]
|
64
|
+
]
|
65
|
+
]
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"type": "MultiPolygon",
|
69
|
+
"coordinates": [
|
70
|
+
[
|
71
|
+
[
|
72
|
+
[102.0, 2.0],
|
73
|
+
[103.0, 2.0],
|
74
|
+
[103.0, 3.0],
|
75
|
+
[102.0, 3.0],
|
76
|
+
[102.0, 2.0]
|
77
|
+
]
|
78
|
+
],
|
79
|
+
[
|
80
|
+
[
|
81
|
+
[100.0, 0.0],
|
82
|
+
[101.0, 0.0],
|
83
|
+
[101.0, 1.0],
|
84
|
+
[100.0, 1.0],
|
85
|
+
[100.0, 0.0]
|
86
|
+
],
|
87
|
+
[
|
88
|
+
[100.2, 0.2],
|
89
|
+
[100.2, 0.8],
|
90
|
+
[100.8, 0.8],
|
91
|
+
[100.8, 0.2],
|
92
|
+
[100.2, 0.2]
|
93
|
+
]
|
94
|
+
]
|
95
|
+
]
|
96
|
+
},
|
97
|
+
|
98
|
+
|
99
|
+
{
|
100
|
+
"type": "GeometryCollection",
|
101
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
102
|
+
"geometries": [
|
103
|
+
{
|
104
|
+
"type": "Point",
|
105
|
+
"coordinates": [100.0, 0.0]
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"type": "LineString",
|
109
|
+
"coordinates": [
|
110
|
+
[101.0, 0.0],
|
111
|
+
[102.0, 1.0]
|
112
|
+
]
|
113
|
+
}
|
114
|
+
]
|
115
|
+
},
|
116
|
+
|
117
|
+
|
118
|
+
{
|
119
|
+
"type": "Feature",
|
120
|
+
"id": "featureId",
|
121
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
122
|
+
"geometry": {
|
123
|
+
"type": "Point",
|
124
|
+
"coordinates": [102.0, 0.5]
|
125
|
+
},
|
126
|
+
"properties": {
|
127
|
+
"see": "geometryProperties 2.0"
|
128
|
+
}
|
129
|
+
},
|
130
|
+
|
131
|
+
|
132
|
+
{
|
133
|
+
"type": "FeatureCollection",
|
134
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
135
|
+
"features": [
|
136
|
+
{
|
137
|
+
"type": "Feature",
|
138
|
+
"id": "featureId",
|
139
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
140
|
+
"geometry": {
|
141
|
+
"type": "Point",
|
142
|
+
"coordinates": [102.0, 0.5]
|
143
|
+
},
|
144
|
+
"properties": {
|
145
|
+
"see": "geometryProperties 2.0"
|
146
|
+
}
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"type": "Feature",
|
150
|
+
"id": "featureId",
|
151
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
152
|
+
"geometry": {
|
153
|
+
"type": "LineString",
|
154
|
+
"coordinates": [
|
155
|
+
[102.0, 0.0],
|
156
|
+
[103.0, 1.0],
|
157
|
+
[104.0, 0.0],
|
158
|
+
[105.0, 1.0]
|
159
|
+
]
|
160
|
+
},
|
161
|
+
"properties": {
|
162
|
+
"see": "geometryProperties 2.0"
|
163
|
+
}
|
164
|
+
},
|
165
|
+
{
|
166
|
+
"type": "Feature",
|
167
|
+
"id": "featureId",
|
168
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
169
|
+
"geometry": {
|
170
|
+
"type": "GeometryCollection",
|
171
|
+
"bbox": [-10.0, -10.0, 10.0, 10.0],
|
172
|
+
"geometries": [
|
173
|
+
{
|
174
|
+
"type": "Point",
|
175
|
+
"coordinates": [100.0, 0.0]
|
176
|
+
},
|
177
|
+
{
|
178
|
+
"type": "LineString",
|
179
|
+
"coordinates": [
|
180
|
+
[101.0, 0.0],
|
181
|
+
[102.0, 1.0]
|
182
|
+
]
|
183
|
+
}
|
184
|
+
]
|
185
|
+
},
|
186
|
+
"properties": {
|
187
|
+
"description": "description"
|
188
|
+
}
|
189
|
+
}
|
190
|
+
]
|
191
|
+
}
|
192
|
+
]
|
193
|
+
},
|
194
|
+
{
|
195
|
+
"geographicElement": [
|
196
|
+
{
|
197
|
+
"type": "Point",
|
198
|
+
"coordinates": [-48.0, 65.0]
|
199
|
+
},
|
200
|
+
{
|
201
|
+
"type": "LineString",
|
202
|
+
"coordinates": [
|
203
|
+
[-60.0, 62.45],
|
204
|
+
[-65.0, 61.889]
|
205
|
+
]
|
206
|
+
},
|
207
|
+
{
|
208
|
+
"type": "LineString",
|
209
|
+
"coordinates": [
|
210
|
+
[-175.0, 62.45],
|
211
|
+
[-178.0, 61.889]
|
212
|
+
]
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"type": "Polygon",
|
216
|
+
"coordinates": [
|
217
|
+
[
|
218
|
+
[-155.0, 64.4],
|
219
|
+
[-177.0, 62.0],
|
220
|
+
[-179.0, 61.0],
|
221
|
+
[-168.0, 63.0],
|
222
|
+
[-155.0, 64.4]
|
223
|
+
]
|
224
|
+
]
|
225
|
+
}
|
226
|
+
]
|
227
|
+
},
|
228
|
+
{
|
229
|
+
"geographicElement": [
|
230
|
+
{
|
231
|
+
"type": "Point",
|
232
|
+
"coordinates": [148.0, 65.0]
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"type": "LineString",
|
236
|
+
"coordinates": [
|
237
|
+
[160.0, 62.45],
|
238
|
+
[165.0, 61.889]
|
239
|
+
]
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"type": "LineString",
|
243
|
+
"coordinates": [
|
244
|
+
[175.0, 62.45],
|
245
|
+
[-178.0, 61.889]
|
246
|
+
]
|
247
|
+
},
|
248
|
+
{
|
249
|
+
"type": "Polygon",
|
250
|
+
"coordinates": [
|
251
|
+
[
|
252
|
+
[155.0, 64.4],
|
253
|
+
[-177.0, 62.0],
|
254
|
+
[-179.0, 61.0],
|
255
|
+
[168.0, 63.0],
|
256
|
+
[155.0, 64.4]
|
257
|
+
]
|
258
|
+
]
|
259
|
+
}
|
260
|
+
]
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"geographicElement": [
|
264
|
+
{
|
265
|
+
"type": "Point",
|
266
|
+
"coordinates": [-170.0, 65.0]
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"type": "LineString",
|
270
|
+
"coordinates": [
|
271
|
+
[-150.0, 62.45],
|
272
|
+
[-152.0, 61.889]
|
273
|
+
]
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"type": "LineString",
|
277
|
+
"coordinates": [
|
278
|
+
[-178.0, 62.45],
|
279
|
+
[178.0, 61.889]
|
280
|
+
]
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"type": "Polygon",
|
284
|
+
"coordinates": [
|
285
|
+
[
|
286
|
+
[-163.0, 64.4],
|
287
|
+
[-173.0, 62.0],
|
288
|
+
[-170.0, 61.0],
|
289
|
+
[-164.0, 63.0],
|
290
|
+
[-163.0, 64.4]
|
291
|
+
]
|
292
|
+
]
|
293
|
+
}
|
294
|
+
]
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"geographicElement": [
|
298
|
+
{
|
299
|
+
"type": "Point",
|
300
|
+
"coordinates": [48.0, 65.0]
|
301
|
+
},
|
302
|
+
{
|
303
|
+
"type": "LineString",
|
304
|
+
"coordinates": [
|
305
|
+
[-35.0, 62.45],
|
306
|
+
[-29.0, 61.889]
|
307
|
+
]
|
308
|
+
},
|
309
|
+
{
|
310
|
+
"type": "LineString",
|
311
|
+
"coordinates": [
|
312
|
+
[31.0, 62.45],
|
313
|
+
[42.0, 61.889]
|
314
|
+
]
|
315
|
+
},
|
316
|
+
{
|
317
|
+
"type": "Polygon",
|
318
|
+
"coordinates": [
|
319
|
+
[
|
320
|
+
[-19.0, 64.4],
|
321
|
+
[23.0, 62.0],
|
322
|
+
[21.0, 61.0],
|
323
|
+
[17.0, 63.0],
|
324
|
+
[-19.0, 64.4]
|
325
|
+
]
|
326
|
+
]
|
327
|
+
}
|
328
|
+
]
|
329
|
+
},
|
330
|
+
{
|
331
|
+
"geographicElement": [
|
332
|
+
{
|
333
|
+
"type": "Point",
|
334
|
+
"coordinates": [-48.0, -65.0]
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"type": "LineString",
|
338
|
+
"coordinates": [
|
339
|
+
[-60.0, -62.45],
|
340
|
+
[-65.0, -61.889]
|
341
|
+
]
|
342
|
+
},
|
343
|
+
{
|
344
|
+
"type": "LineString",
|
345
|
+
"coordinates": [
|
346
|
+
[-175.0, -62.45],
|
347
|
+
[-178.0, -61.889]
|
348
|
+
]
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"type": "Polygon",
|
352
|
+
"coordinates": [
|
353
|
+
[
|
354
|
+
[-155.0, -64.4],
|
355
|
+
[-177.0, -62.0],
|
356
|
+
[-179.0, -61.0],
|
357
|
+
[-168.0, -63.0],
|
358
|
+
[-155.0, -64.4]
|
359
|
+
]
|
360
|
+
]
|
361
|
+
}
|
362
|
+
]
|
363
|
+
},
|
364
|
+
{
|
365
|
+
"geographicElement": [
|
366
|
+
{
|
367
|
+
"type": "Point",
|
368
|
+
"coordinates": [-48.0, -65.0]
|
369
|
+
},
|
370
|
+
{
|
371
|
+
"type": "LineString",
|
372
|
+
"coordinates": [
|
373
|
+
[-60.0, 62.45],
|
374
|
+
[-65.0, -61.889]
|
375
|
+
]
|
376
|
+
},
|
377
|
+
{
|
378
|
+
"type": "LineString",
|
379
|
+
"coordinates": [
|
380
|
+
[-175.0, 62.45],
|
381
|
+
[-178.0, -61.889]
|
382
|
+
]
|
383
|
+
},
|
384
|
+
{
|
385
|
+
"type": "Polygon",
|
386
|
+
"coordinates": [
|
387
|
+
[
|
388
|
+
[-155.0, -64.4],
|
389
|
+
[-177.0, -62.0],
|
390
|
+
[-179.0, -61.0],
|
391
|
+
[-168.0, -63.0],
|
392
|
+
[-155.0, -64.4]
|
393
|
+
]
|
394
|
+
]
|
395
|
+
}
|
396
|
+
]
|
397
|
+
}
|
398
|
+
]
|
399
|
+
}
|
@@ -0,0 +1,62 @@
|
|
1
|
+
[{
|
2
|
+
"type": "use",
|
3
|
+
"useLimitation": [
|
4
|
+
"useLimitation0",
|
5
|
+
"useLimitation1"
|
6
|
+
],
|
7
|
+
"scope": {
|
8
|
+
"scopeCode": "scopeCode"
|
9
|
+
},
|
10
|
+
"graphic": [{
|
11
|
+
"fileName": "fileName0"
|
12
|
+
}, {
|
13
|
+
"fileName": "fileName1"
|
14
|
+
}],
|
15
|
+
"reference": [{
|
16
|
+
"title": "title0"
|
17
|
+
}, {
|
18
|
+
"title": "title1"
|
19
|
+
}],
|
20
|
+
"releasability": {
|
21
|
+
"statement": "statement"
|
22
|
+
},
|
23
|
+
"responsibleParty": [{
|
24
|
+
"role": "role0",
|
25
|
+
"roleExtent": {
|
26
|
+
"description": "description0"
|
27
|
+
},
|
28
|
+
"party": [{
|
29
|
+
"contactId": "individualId0"
|
30
|
+
}]
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"role": "role1",
|
34
|
+
"roleExtent": {
|
35
|
+
"description": "description1"
|
36
|
+
},
|
37
|
+
"party": [{
|
38
|
+
"contactId": "individualId0"
|
39
|
+
}]
|
40
|
+
}
|
41
|
+
],
|
42
|
+
"legal": {
|
43
|
+
"useConstraint": [
|
44
|
+
"useConstraint0",
|
45
|
+
"useConstraint1"
|
46
|
+
],
|
47
|
+
"accessConstraint": [
|
48
|
+
"accessConstraint0",
|
49
|
+
"accessConstraint1"
|
50
|
+
],
|
51
|
+
"otherConstraint": [
|
52
|
+
"otherConstraint0",
|
53
|
+
"otherConstraint1"
|
54
|
+
]
|
55
|
+
},
|
56
|
+
"security": {
|
57
|
+
"classification": "classification",
|
58
|
+
"classificationSystem": "classificationSystem",
|
59
|
+
"userNote": "userNote",
|
60
|
+
"handlingDescription": "handlingDescription"
|
61
|
+
}
|
62
|
+
}]
|