adiwg-json_schemas 0.8.1 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,44 +1,86 @@
1
1
  {
2
2
  "id": "taxonomy.json#",
3
3
  "$schema": "http://json-schema.org/draft-04/schema#",
4
- "description": "schema for taxonomy",
5
4
  "type": "object",
5
+ "description": "Information on the taxa (1 or more) included in the data set, including keywords, taxonomic system and coverage information, and taxonomic classification system.",
6
+ "translation": {
7
+ "ISO 19115-2": ["MD_TaxonSys"],
8
+ "FGDC CSDGM": ["idinfo > taxonomy"]
9
+ },
6
10
  "required": ["classificationSystem", "taxonomicProcedure", "taxonClass"],
7
11
  "additionalProperties": false,
8
12
  "properties": {
9
13
  "classificationSystem": {
10
14
  "type": "array",
15
+ "description": "Information (citation) about the taxonomic classification system or authority used.",
16
+ "translation": {
17
+ "ISO 19115-2": ["MD_TaxonSys > classSys > CI_Citation"],
18
+ "FGDC CSDGM": ["idinfo > taxonomy > taxonsys > classsys"]
19
+ },
11
20
  "minItems": 1,
12
21
  "items": {
13
22
  "$ref": "citation.json"
14
23
  }
15
24
  },
16
25
  "taxonGeneralScope": {
17
- "type": "string"
26
+ "type": "string",
27
+ "description": "Description of the range of taxa addressed in the data set or collection. For example, \"all vascular plants were identified to family or species, mosses and lichens were identified as moss or lichen\".",
28
+ "translation": {
29
+ "ISO 19115-2": ["MD_TaxonSys > taxongen"]
30
+ }
18
31
  },
19
32
  "observer": {
20
33
  "type": "array",
34
+ "description": "Information about the individual(s) responsible for the identification(s) of the specimens or sightings. etc.",
35
+ "translation": {
36
+ "ISO 19115-2": ["MD_TaxonSys > obs > CI_ResponsibleParty"]
37
+ },
21
38
  "items": {
22
39
  "$ref": "contact.json#/definitions/contactRef"
23
40
  }
24
41
  },
25
42
  "taxonomicProcedure": {
26
- "type": "string"
43
+ "type": "string",
44
+ "description": "Description of the methods used for taxonomic identification. Could include specimen processing, comparison with museum materials, keys, and key characters, chemical or genetic analyses, etc.",
45
+ "translation": {
46
+ "ISO 19115-2": ["MD_TaxonSys > taxonpro"],
47
+ "FGDC CSDGM": ["idinfo > taxonomy > taxonsys > taxonpro"]
48
+ }
27
49
  },
28
50
  "voucher": {
29
51
  "type": "object",
52
+ "description": "Information on the types of specimen, the repository, and the individuals who identified the vouchers.",
53
+ "translation": {
54
+ "ISO 19115-2": ["MD_TaxonSys > voucher > MD_Vouchers"],
55
+ "FGDC CSDGM": ["idinfo > taxonomy > taxonsys > vouchers"]
56
+ },
30
57
  "required": ["specimen", "repository"],
31
58
  "properties": {
32
59
  "specimen": {
33
- "type": "string"
60
+ "type": "string",
61
+ "description": "Word or phrase describing the type of specimen collected (e.g. herbarium specimens, blood samples, photographs, individuals, or batches). Example: \"herbarium specimens\", \"blood samples\", \"photographs\", \"individuals\", \"free text\".",
62
+ "translation": {
63
+ "ISO 19115-2": ["MD_Vouchers > specimen"],
64
+ "FGDC CSDGM": ["idinfo > taxonomy > taxonsys > vouchers > specimens"]
65
+ }
34
66
  },
35
67
  "repository": {
68
+ "description": "Information about the curator or contact person and/or agency responsible for the specimens.",
69
+ "translation": {
70
+ "ISO 19115-2": ["MD_Vouchers > reposit > CI_ResponsibleParty"],
71
+ "FGDC CSDGM": ["idinfo > taxonomy > taxonsys > vouchers > reposit"]
72
+ },
36
73
  "$ref": "contact.json#/definitions/contactRef"
37
74
  }
38
75
  }
39
76
  },
40
77
  "taxonClass": {
41
78
  "type": "array",
79
+ "description": "Information about the range of taxa addressed in the data set or collection. It is recommended that one provide information starting from the taxonomic rank of kingdom, to a level which reflects the data set or collection being documented. The levels of Kingdom, Division/Phylum, class, Order, Family, Genus, and Species should be included as ranks as appropriate.",
80
+ "translation": {
81
+ "ISO 19115-2": ["MD_TaxonSys > taxonCl > MD_TaxonCl"],
82
+ "FGDC CSDGM": ["idinfo > taxonomy > taxoncl"]
83
+ },
42
84
  "minItems": 1,
43
85
  "items": {
44
86
  "type": "object",
@@ -46,13 +88,28 @@
46
88
  "additionalProperties": false,
47
89
  "properties": {
48
90
  "taxonRank": {
49
- "type": "string"
91
+ "type": "string",
92
+ "description": "Name of the taxonomic rank for which the taxonValue is provided. Example: \"Kingdom\", \"Division\", \"Phylum\", \"Subphylum\", \"SuperClass\", \"Class\", \"SubClass\", \"InfraClass\", \"Superorder\", \"Order\", \"Suborder\", \"Infraorder\", \"Superfamily\", \"Family\", \"Subfamily\", \"Tribe\", \"Subtribe\", \"Genus\", \"Species\".",
93
+ "translation": {
94
+ "ISO 19115-2": [" MD_TaxonCl > taxonrn"],
95
+ "FGDC CSDGM": ["idinfo > taxonomy > taxoncl > taxonrn"]
96
+ }
50
97
  },
51
98
  "taxonValue": {
52
- "type": "string"
99
+ "type": "string",
100
+ "description": "Taxonomic rank value of the taxon being described.",
101
+ "translation": {
102
+ "ISO 19115-2": ["MD_TaxonCl > taxonrv"],
103
+ "FGDC CSDGM": ["idinfo > taxonomy > taxoncl > taxonrv"]
104
+ }
53
105
  },
54
106
  "common": {
55
- "type": "string"
107
+ "type": "string",
108
+ "description": "Specification of applicable common names. These common names may be general descriptions of a group of organisms if appropriate (e.g. insects, vertebrate, grasses, waterfowl, vascular plants, etc.).",
109
+ "translation": {
110
+ "ISO 19115-2": ["MD_TaxonCl > common"],
111
+ "FGDC CSDGM": ["idinfo > taxonomy > taxoncl > common"]
112
+ }
56
113
  }
57
114
  }
58
115
  }
@@ -1,19 +1,34 @@
1
1
  {
2
2
  "id": "usage.json#",
3
3
  "$schema": "http://json-schema.org/draft-04/schema#",
4
- "description": "schema for usage",
5
4
  "type": "object",
5
+ "description": "Description of ways in which the resource is currently or has been used.",
6
+ "translation": {
7
+ "ISO 19115-2": ["MD_Usage"]
8
+ },
6
9
  "required": ["specificUsage", "userContactInfo"],
7
10
  "additionalProperties": false,
8
11
  "properties": {
9
12
  "specificUsage": {
10
- "type": "string"
13
+ "type": "string",
14
+ "description": "Brief description of the resource usage.",
15
+ "translation": {
16
+ "ISO 19115-2": ["MD_Usage > specific usage"]
17
+ }
11
18
  },
12
19
  "userDeterminedLimitation": {
13
- "type": "string"
20
+ "type": "string",
21
+ "description": "Usage that the provider's have determined the resource not being suitable for.",
22
+ "translation": {
23
+ "ISO 19115-2": ["MD_Usage > userDeterminedLimitations"]
24
+ }
14
25
  },
15
26
  "userContactInfo": {
16
27
  "type": "array",
28
+ "description": "Identification of and means of communicating with the person(s) and organization(s) using the resource.",
29
+ "translation": {
30
+ "ISO 19115-2": ["MD_Usage > userContactInfo"]
31
+ },
17
32
  "uniqueItems": true,
18
33
  "items": {
19
34
  "$ref": "contact.json#/definitions/contactRef"
data/schema/schema.json CHANGED
@@ -1,21 +1,25 @@
1
1
  {
2
2
  "id": "schema.json#",
3
3
  "$schema": "http://json-schema.org/draft-04/schema#",
4
- "version": "0.8.0",
4
+ "version": "0.8.1",
5
5
  "description": "schema for ADIwg JSON metadata",
6
6
  "type": "object",
7
7
  "required": ["version", "contact", "metadata"],
8
8
  "properties": {
9
9
  "version": {
10
10
  "type": "object",
11
+ "description": "Identifies the version of the JSON schema standard that applies to the metadata.",
12
+ "example": "../examples/full_example.json#/version",
11
13
  "required": ["name", "version"],
12
14
  "additionalProperties": false,
13
15
  "properties": {
14
16
  "name": {
15
- "type": "string"
17
+ "type": "string",
18
+ "description": "Schema identifier, i.e. the name of the schema standard."
16
19
  },
17
20
  "version": {
18
21
  "type": "string",
22
+ "description": "Specific version number of the schema standard.",
19
23
  "pattern": "[0-9]\\.[0-9]\\.[0-9]"
20
24
  }
21
25
  }
@@ -34,10 +38,16 @@
34
38
  },
35
39
  "uri": {
36
40
  "type": "string",
41
+ "description": "Location (address) for on-line access using a Uniform Resource Identifier, usually in the form of a Uniform Resource Locator (URL).",
42
+ "translation": {
43
+ "ISO 19115-2": ["CI_OnlineResource > linkage"]
44
+ },
37
45
  "pattern": "([A-Za-z][A-Za-z0-9+\\-.]*):(?:(//)(?:((?:[A-Za-z0-9\\-._~!$&'()*+,;=:]|%[0-9A-Fa-f]{2})*)@)?((?:\\[(?:(?:(?:(?:[0-9A-Fa-f]{1,4}:){6}|::(?:[0-9A-Fa-f]{1,4}:){5}|(?:[0-9A-Fa-f]{1,4})?::(?:[0-9A-Fa-f]{1,4}:){4}|(?:(?:[0-9A-Fa-f]{1,4}:){0,1}[0-9A-Fa-f]{1,4})?::(?:[0-9A-Fa-f]{1,4}:){3}|(?:(?:[0-9A-Fa-f]{1,4}:){0,2}[0-9A-Fa-f]{1,4})?::(?:[0-9A-Fa-f]{1,4}:){2}|(?:(?:[0-9A-Fa-f]{1,4}:){0,3}[0-9A-Fa-f]{1,4})?::[0-9A-Fa-f]{1,4}:|(?:(?:[0-9A-Fa-f]{1,4}:){0,4}[0-9A-Fa-f]{1,4})?::)(?:[0-9A-Fa-f]{1,4}:[0-9A-Fa-f]{1,4}|(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))|(?:(?:[0-9A-Fa-f]{1,4}:){0,5}[0-9A-Fa-f]{1,4})?::[0-9A-Fa-f]{1,4}|(?:(?:[0-9A-Fa-f]{1,4}:){0,6}[0-9A-Fa-f]{1,4})?::)|[Vv][0-9A-Fa-f]+\\.[A-Za-z0-9\\-._~!$&'()*+,;=:]+)\\]|(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)|(?:[A-Za-z0-9\\-._~!$&'()*+,;=]|%[0-9A-Fa-f]{2})*))(?::([0-9]*))?((?:/(?:[A-Za-z0-9\\-._~!$&'()*+,;=:@]|%[0-9A-Fa-f]{2})*)*)|/((?:(?:[A-Za-z0-9\\-._~!$&'()*+,;=:@]|%[0-9A-Fa-f]{2})+(?:/(?:[A-Za-z0-9\\-._~!$&'()*+,;=:@]|%[0-9A-Fa-f]{2})*)*)?)|((?:[A-Za-z0-9\\-._~!$&'()*+,;=:@]|%[0-9A-Fa-f]{2})+(?:/(?:[A-Za-z0-9\\-._~!$&'()*+,;=:@]|%[0-9A-Fa-f]{2})*)*)|)(?:\\?((?:[A-Za-z0-9\\-._~!$&'()*+,;=:@/?]|%[0-9A-Fa-f]{2})*))?(?:\\#((?:[A-Za-z0-9\\-._~!$&'()*+,;=:@/?]|%[0-9A-Fa-f]{2})*))?"
38
46
  },
39
47
  "date": {
40
48
  "type": "string",
49
+ "description": "An ISO 8601 date/timestamp.",
50
+ "example": "../examples/date.json",
41
51
  "pattern": "^(\\d{4}(-\\d{2})?(-\\d{2})?$)|(^\\d{4}-\\d{2}-\\d{2}(T\\d{2})?(\\:\\d{2}(\\:\\d{2}(\\.\\d+)?)?|Z)?(Z|(-|\\+)\\d{2}(:\\d{2})?)?$)"
42
52
  }
43
53
  }
@@ -23,16 +23,22 @@
23
23
  {
24
24
  "phoneName": "",
25
25
  "phoneNumber": "999-999-9999",
26
- "service": [""]
26
+ "service": [
27
+ ""
28
+ ]
27
29
  }
28
30
  ],
29
31
  "address": {
30
- "deliveryPoint": [""],
32
+ "deliveryPoint": [
33
+ ""
34
+ ],
31
35
  "city": "",
32
36
  "administrativeArea": "",
33
37
  "postalCode": "",
34
38
  "country": "",
35
- "electronicMailAddress": ["hello@example.com"]
39
+ "electronicMailAddress": [
40
+ "hello@example.com"
41
+ ]
36
42
  }
37
43
  }
38
44
  ],
@@ -57,7 +63,9 @@
57
63
  "role": ""
58
64
  }
59
65
  ],
60
- "presentationForm": [""],
66
+ "presentationForm": [
67
+ ""
68
+ ],
61
69
  "identifier": [
62
70
  {
63
71
  "identifier": "",
@@ -74,7 +82,6 @@
74
82
  }
75
83
  ]
76
84
  },
77
- "metadataScope": [""],
78
85
  "metadataContact": [
79
86
  {
80
87
  "contactId": "",
@@ -88,7 +95,9 @@
88
95
  "metadataStatus": "",
89
96
  "metadataMaintenance": {
90
97
  "maintenanceFrequency": "",
91
- "maintenanceNote": [""],
98
+ "maintenanceNote": [
99
+ ""
100
+ ],
92
101
  "maintenanceContact": [
93
102
  {
94
103
  "contactId": "",
@@ -98,6 +107,7 @@
98
107
  }
99
108
  },
100
109
  "resourceInfo": {
110
+ "resourceType": "",
101
111
  "citation": {
102
112
  "title": "",
103
113
  "date": [
@@ -113,7 +123,9 @@
113
123
  "role": ""
114
124
  }
115
125
  ],
116
- "presentationForm": [""],
126
+ "presentationForm": [
127
+ ""
128
+ ],
117
129
  "identifier": [
118
130
  {
119
131
  "identifier": "",
@@ -165,10 +177,16 @@
165
177
  "status": "",
166
178
  "hasMapLocation": true,
167
179
  "hasDataAvailable": true,
168
- "language": [""],
180
+ "language": [
181
+ ""
182
+ ],
169
183
  "purpose": "",
170
- "credit": [""],
171
- "topicCategory": [""],
184
+ "credit": [
185
+ ""
186
+ ],
187
+ "topicCategory": [
188
+ ""
189
+ ],
172
190
  "environmentDescription": "",
173
191
  "resourceNativeFormat": [
174
192
  {
@@ -178,7 +196,9 @@
178
196
  ],
179
197
  "keyword": [
180
198
  {
181
- "keyword": [""],
199
+ "keyword": [
200
+ ""
201
+ ],
182
202
  "keywordType": "",
183
203
  "thesaurus": {
184
204
  "title": "",
@@ -195,7 +215,9 @@
195
215
  "role": ""
196
216
  }
197
217
  ],
198
- "presentationForm": [""],
218
+ "presentationForm": [
219
+ ""
220
+ ],
199
221
  "identifier": [
200
222
  {
201
223
  "identifier": "",
@@ -241,7 +263,9 @@
241
263
  "resourceMaintenance": [
242
264
  {
243
265
  "maintenanceFrequency": "",
244
- "maintenanceNote": [""],
266
+ "maintenanceNote": [
267
+ ""
268
+ ],
245
269
  "maintenanceContact": [
246
270
  {
247
271
  "contactId": "",
@@ -271,12 +295,20 @@
271
295
  }
272
296
  ],
273
297
  "constraint": {
274
- "useLimitation": [""],
298
+ "useLimitation": [
299
+ ""
300
+ ],
275
301
  "legalConstraint": [
276
302
  {
277
- "accessConstraint": [""],
278
- "useConstraint": [""],
279
- "otherConstraint": [""]
303
+ "accessConstraint": [
304
+ ""
305
+ ],
306
+ "useConstraint": [
307
+ ""
308
+ ],
309
+ "otherConstraint": [
310
+ ""
311
+ ]
280
312
  }
281
313
  ],
282
314
  "securityConstraint": [
@@ -305,7 +337,9 @@
305
337
  "role": ""
306
338
  }
307
339
  ],
308
- "presentationForm": [""],
340
+ "presentationForm": [
341
+ ""
342
+ ],
309
343
  "identifier": [
310
344
  {
311
345
  "identifier": "",
@@ -371,15 +405,24 @@
371
405
  ]
372
406
  },
373
407
  "spatialReferenceSystem": {
374
- "name": [""],
375
- "epsgNumber": [0],
376
- "wkt": [""]
408
+ "name": [
409
+ ""
410
+ ],
411
+ "epsgNumber": [
412
+ 0
413
+ ],
414
+ "wkt": [
415
+ ""
416
+ ]
377
417
  },
378
- "spatialRepresentation": [""],
418
+ "spatialRepresentation": [
419
+ ""
420
+ ],
379
421
  "spatialResolution": [
380
422
  {
381
423
  "equivalentScale": 0
382
- }, {
424
+ },
425
+ {
383
426
  "distance": 0,
384
427
  "uom": ""
385
428
  }
@@ -390,20 +433,43 @@
390
433
  "geographicElement": [
391
434
  {
392
435
  "type": "Point",
393
- "bbox": [0, 0, 0, 0],
394
- "coordinates": [0, 0, 0],
436
+ "bbox": [
437
+ 0,
438
+ 0,
439
+ 0,
440
+ 0
441
+ ],
442
+ "coordinates": [
443
+ 0,
444
+ 0,
445
+ 0
446
+ ],
395
447
  "crs": {
396
448
  "type": "name",
397
449
  "properties": {
398
450
  "name": ""
399
451
  }
400
452
  }
401
- }, {
453
+ },
454
+ {
402
455
  "type": "LineString",
403
- "bbox": [0, 0, 0, 0],
456
+ "bbox": [
457
+ 0,
458
+ 0,
459
+ 0,
460
+ 0
461
+ ],
404
462
  "coordinates": [
405
- [0, 0, 0],
406
- [0, 0, 0]
463
+ [
464
+ 0,
465
+ 0,
466
+ 0
467
+ ],
468
+ [
469
+ 0,
470
+ 0,
471
+ 0
472
+ ]
407
473
  ],
408
474
  "crs": {
409
475
  "type": "name",
@@ -411,21 +477,59 @@
411
477
  "name": ""
412
478
  }
413
479
  }
414
- }, {
480
+ },
481
+ {
415
482
  "type": "Polygon",
416
- "bbox": [0, 0, 0, 0],
483
+ "bbox": [
484
+ 0,
485
+ 0,
486
+ 0,
487
+ 0
488
+ ],
417
489
  "coordinates": [
418
490
  [
419
- [0, 0, 0],
420
- [0, 0, 0],
421
- [0, 0, 0],
422
- [0, 0, 0]
491
+ [
492
+ 0,
493
+ 0,
494
+ 0
495
+ ],
496
+ [
497
+ 0,
498
+ 0,
499
+ 0
500
+ ],
501
+ [
502
+ 0,
503
+ 0,
504
+ 0
505
+ ],
506
+ [
507
+ 0,
508
+ 0,
509
+ 0
510
+ ]
423
511
  ],
424
512
  [
425
- [0, 0, 0],
426
- [0, 0, 0],
427
- [0, 0, 0],
428
- [0, 0, 0]
513
+ [
514
+ 0,
515
+ 0,
516
+ 0
517
+ ],
518
+ [
519
+ 0,
520
+ 0,
521
+ 0
522
+ ],
523
+ [
524
+ 0,
525
+ 0,
526
+ 0
527
+ ],
528
+ [
529
+ 0,
530
+ 0,
531
+ 0
532
+ ]
429
533
  ]
430
534
  ],
431
535
  "crs": {
@@ -434,12 +538,26 @@
434
538
  "name": ""
435
539
  }
436
540
  }
437
- }, {
541
+ },
542
+ {
438
543
  "type": "MultiPoint",
439
- "bbox": [0, 0, 0, 0],
544
+ "bbox": [
545
+ 0,
546
+ 0,
547
+ 0,
548
+ 0
549
+ ],
440
550
  "coordinates": [
441
- [0, 0, 0],
442
- [0, 0, 0]
551
+ [
552
+ 0,
553
+ 0,
554
+ 0
555
+ ],
556
+ [
557
+ 0,
558
+ 0,
559
+ 0
560
+ ]
443
561
  ],
444
562
  "crs": {
445
563
  "type": "name",
@@ -447,21 +565,59 @@
447
565
  "name": ""
448
566
  }
449
567
  }
450
- }, {
568
+ },
569
+ {
451
570
  "type": "MultiLineString",
452
- "bbox": [0, 0, 0, 0],
571
+ "bbox": [
572
+ 0,
573
+ 0,
574
+ 0,
575
+ 0
576
+ ],
453
577
  "coordinates": [
454
578
  [
455
- [0, 0, 0],
456
- [0, 0, 0],
457
- [0, 0, 0],
458
- [0, 0, 0]
579
+ [
580
+ 0,
581
+ 0,
582
+ 0
583
+ ],
584
+ [
585
+ 0,
586
+ 0,
587
+ 0
588
+ ],
589
+ [
590
+ 0,
591
+ 0,
592
+ 0
593
+ ],
594
+ [
595
+ 0,
596
+ 0,
597
+ 0
598
+ ]
459
599
  ],
460
600
  [
461
- [0, 0, 0],
462
- [0, 0, 0],
463
- [0, 0, 0],
464
- [0, 0, 0]
601
+ [
602
+ 0,
603
+ 0,
604
+ 0
605
+ ],
606
+ [
607
+ 0,
608
+ 0,
609
+ 0
610
+ ],
611
+ [
612
+ 0,
613
+ 0,
614
+ 0
615
+ ],
616
+ [
617
+ 0,
618
+ 0,
619
+ 0
620
+ ]
465
621
  ]
466
622
  ],
467
623
  "crs": {
@@ -470,36 +626,106 @@
470
626
  "name": ""
471
627
  }
472
628
  }
473
- }, {
629
+ },
630
+ {
474
631
  "type": "MultiPolygon",
475
- "bbox": [0, 0, 0, 0],
632
+ "bbox": [
633
+ 0,
634
+ 0,
635
+ 0,
636
+ 0
637
+ ],
476
638
  "coordinates": [
477
639
  [
478
640
  [
479
- [0, 0, 0],
480
- [0, 0, 0],
481
- [0, 0, 0],
482
- [0, 0, 0]
641
+ [
642
+ 0,
643
+ 0,
644
+ 0
645
+ ],
646
+ [
647
+ 0,
648
+ 0,
649
+ 0
650
+ ],
651
+ [
652
+ 0,
653
+ 0,
654
+ 0
655
+ ],
656
+ [
657
+ 0,
658
+ 0,
659
+ 0
660
+ ]
483
661
  ],
484
662
  [
485
- [0, 0, 0],
486
- [0, 0, 0],
487
- [0, 0, 0],
488
- [0, 0, 0]
663
+ [
664
+ 0,
665
+ 0,
666
+ 0
667
+ ],
668
+ [
669
+ 0,
670
+ 0,
671
+ 0
672
+ ],
673
+ [
674
+ 0,
675
+ 0,
676
+ 0
677
+ ],
678
+ [
679
+ 0,
680
+ 0,
681
+ 0
682
+ ]
489
683
  ]
490
684
  ],
491
685
  [
492
686
  [
493
- [0, 0, 0],
494
- [0, 0, 0],
495
- [0, 0, 0],
496
- [0, 0, 0]
687
+ [
688
+ 0,
689
+ 0,
690
+ 0
691
+ ],
692
+ [
693
+ 0,
694
+ 0,
695
+ 0
696
+ ],
697
+ [
698
+ 0,
699
+ 0,
700
+ 0
701
+ ],
702
+ [
703
+ 0,
704
+ 0,
705
+ 0
706
+ ]
497
707
  ],
498
708
  [
499
- [0, 0, 0],
500
- [0, 0, 0],
501
- [0, 0, 0],
502
- [0, 0, 0]
709
+ [
710
+ 0,
711
+ 0,
712
+ 0
713
+ ],
714
+ [
715
+ 0,
716
+ 0,
717
+ 0
718
+ ],
719
+ [
720
+ 0,
721
+ 0,
722
+ 0
723
+ ],
724
+ [
725
+ 0,
726
+ 0,
727
+ 0
728
+ ]
503
729
  ]
504
730
  ]
505
731
  ],
@@ -509,38 +735,91 @@
509
735
  "name": ""
510
736
  }
511
737
  }
512
- }, {
738
+ },
739
+ {
513
740
  "type": "GeometryCollection",
514
- "geometries": []
515
- }, {
741
+ "geometries": [
742
+
743
+ ]
744
+ },
745
+ {
516
746
  "type": "Feature",
517
747
  "id": "",
518
- "bbox": [0, 0, 0, 0],
748
+ "bbox": [
749
+ 0,
750
+ 0,
751
+ 0,
752
+ 0
753
+ ],
519
754
  "geometry": {
520
755
  "type": "Point",
521
- "coordinates": [0, 0, 0]
756
+ "coordinates": [
757
+ 0,
758
+ 0,
759
+ 0
760
+ ]
522
761
  },
523
762
  "geometry": {
524
763
  "type": "LineString",
525
764
  "coordinates": [
526
- [0, 0, 0],
527
- [0, 0, 0]
765
+ [
766
+ 0,
767
+ 0,
768
+ 0
769
+ ],
770
+ [
771
+ 0,
772
+ 0,
773
+ 0
774
+ ]
528
775
  ]
529
776
  },
530
777
  "geometry": {
531
778
  "type": "Polygon",
532
779
  "coordinates": [
533
780
  [
534
- [0, 0, 0],
535
- [0, 0, 0],
536
- [0, 0, 0],
537
- [0, 0, 0]
781
+ [
782
+ 0,
783
+ 0,
784
+ 0
785
+ ],
786
+ [
787
+ 0,
788
+ 0,
789
+ 0
790
+ ],
791
+ [
792
+ 0,
793
+ 0,
794
+ 0
795
+ ],
796
+ [
797
+ 0,
798
+ 0,
799
+ 0
800
+ ]
538
801
  ],
539
802
  [
540
- [0, 0, 0],
541
- [0, 0, 0],
542
- [0, 0, 0],
543
- [0, 0, 0]
803
+ [
804
+ 0,
805
+ 0,
806
+ 0
807
+ ],
808
+ [
809
+ 0,
810
+ 0,
811
+ 0
812
+ ],
813
+ [
814
+ 0,
815
+ 0,
816
+ 0
817
+ ],
818
+ [
819
+ 0,
820
+ 0,
821
+ 0
822
+ ]
544
823
  ]
545
824
  ]
546
825
  },
@@ -555,7 +834,9 @@
555
834
  "description": "",
556
835
  "includesData": true,
557
836
  "temporalElement": {
558
- "date": ["0000-00-00"],
837
+ "date": [
838
+ "0000-00-00"
839
+ ],
559
840
  "timeInstant": [
560
841
  {
561
842
  "id": "",
@@ -613,10 +894,16 @@
613
894
  "featureScope": "",
614
895
  "featureAcquisitionMethod": ""
615
896
  }
616
- }, {
897
+ },
898
+ {
617
899
  "type": "FeatureCollection",
618
900
  "id": "",
619
- "bbox": [0, 0, 0, 0],
901
+ "bbox": [
902
+ 0,
903
+ 0,
904
+ 0,
905
+ 0
906
+ ],
620
907
  "properties": {
621
908
  "name": "",
622
909
  "description": "",
@@ -629,11 +916,15 @@
629
916
  "type": ""
630
917
  }
631
918
  },
632
- "features": []
919
+ "features": [
920
+
921
+ ]
633
922
  }
634
923
  ],
635
924
  "temporalElement": {
636
- "date": ["0000-00-00"],
925
+ "date": [
926
+ "0000-00-00"
927
+ ],
637
928
  "timeInstant": [
638
929
  {
639
930
  "id": "",
@@ -697,7 +988,9 @@
697
988
  "role": ""
698
989
  }
699
990
  ],
700
- "presentationForm": [""],
991
+ "presentationForm": [
992
+ ""
993
+ ],
701
994
  "identifier": [
702
995
  {
703
996
  "identifier": "",
@@ -793,6 +1086,7 @@
793
1086
  "associatedResource": [
794
1087
  {
795
1088
  "associationType": "",
1089
+ "initiativeType": "",
796
1090
  "resourceType": "",
797
1091
  "resourceCitation": {
798
1092
  "title": "",
@@ -809,7 +1103,9 @@
809
1103
  "role": ""
810
1104
  }
811
1105
  ],
812
- "presentationForm": [""],
1106
+ "presentationForm": [
1107
+ ""
1108
+ ],
813
1109
  "identifier": [
814
1110
  {
815
1111
  "identifier": "",
@@ -865,7 +1161,9 @@
865
1161
  "role": ""
866
1162
  }
867
1163
  ],
868
- "presentationForm": [""],
1164
+ "presentationForm": [
1165
+ ""
1166
+ ],
869
1167
  "identifier": [
870
1168
  {
871
1169
  "identifier": "",
@@ -910,60 +1208,65 @@
910
1208
  ],
911
1209
  "additionalDocumentation": [
912
1210
  {
913
- "title": "",
914
- "date": [
915
- {
916
- "date": "0000-00-00",
917
- "dateType": ""
918
- }
919
- ],
920
- "edition": "",
921
- "responsibleParty": [
922
- {
923
- "contactId": "",
924
- "role": ""
925
- }
926
- ],
927
- "presentationForm": [""],
928
- "identifier": [
929
- {
930
- "identifier": "",
931
- "type": "",
932
- "authority": {
933
- "title": "",
934
- "date": [
935
- {
936
- "date": "0000-00-00",
937
- "dateType": ""
938
- }
939
- ],
940
- "responsibleParty": [
941
- {
942
- "contactId": "",
943
- "role": ""
944
- }
945
- ],
946
- "onlineResource": [
947
- {
948
- "uri": "http://thisisanexample.com",
949
- "protocol": "",
950
- "name": "",
951
- "description": "",
952
- "function": ""
953
- }
954
- ]
1211
+ "resourceType": "",
1212
+ "citation": {
1213
+ "title": "",
1214
+ "date": [
1215
+ {
1216
+ "date": "0000-00-00",
1217
+ "dateType": ""
955
1218
  }
956
- }
957
- ],
958
- "onlineResource": [
959
- {
960
- "uri": "http://thisisanexample.com",
961
- "protocol": "",
962
- "name": "",
963
- "description": "",
964
- "function": ""
965
- }
966
- ]
1219
+ ],
1220
+ "edition": "",
1221
+ "responsibleParty": [
1222
+ {
1223
+ "contactId": "",
1224
+ "role": ""
1225
+ }
1226
+ ],
1227
+ "presentationForm": [
1228
+ ""
1229
+ ],
1230
+ "identifier": [
1231
+ {
1232
+ "identifier": "",
1233
+ "type": "",
1234
+ "authority": {
1235
+ "title": "",
1236
+ "date": [
1237
+ {
1238
+ "date": "0000-00-00",
1239
+ "dateType": ""
1240
+ }
1241
+ ],
1242
+ "responsibleParty": [
1243
+ {
1244
+ "contactId": "",
1245
+ "role": ""
1246
+ }
1247
+ ],
1248
+ "onlineResource": [
1249
+ {
1250
+ "uri": "http://thisisanexample.com",
1251
+ "protocol": "",
1252
+ "name": "",
1253
+ "description": "",
1254
+ "function": ""
1255
+ }
1256
+ ]
1257
+ }
1258
+ }
1259
+ ],
1260
+ "onlineResource": [
1261
+ {
1262
+ "uri": "http://thisisanexample.com",
1263
+ "protocol": "",
1264
+ "name": "",
1265
+ "description": "",
1266
+ "function": ""
1267
+ }
1268
+ ]
1269
+ }
967
1270
  }
968
1271
  ]
969
1272
  }