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,31 @@
|
|
1
|
+
[{
|
2
|
+
"role": "role",
|
3
|
+
"timePeriod": [{
|
4
|
+
"id": "id",
|
5
|
+
"description": "description",
|
6
|
+
"identifier": {
|
7
|
+
"identifier": "identifier",
|
8
|
+
"namespace": "namespace"
|
9
|
+
},
|
10
|
+
"periodName": [
|
11
|
+
"periodName0",
|
12
|
+
"periodName1"
|
13
|
+
],
|
14
|
+
"startDateTime": "2016-10-14T11:10:15.2-10:00",
|
15
|
+
"endDateTime": "2016-12-31",
|
16
|
+
"timeInterval": {
|
17
|
+
"interval": 9.9,
|
18
|
+
"units": "units"
|
19
|
+
},
|
20
|
+
"duration": {
|
21
|
+
"years": 1,
|
22
|
+
"months": 1,
|
23
|
+
"days": 1,
|
24
|
+
"hours": 1,
|
25
|
+
"minutes": 1,
|
26
|
+
"seconds": 1
|
27
|
+
} }],
|
28
|
+
"party": [{
|
29
|
+
"contactId": "individualId0"
|
30
|
+
}]
|
31
|
+
}]
|
data/examples/scope.json
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
[{
|
2
|
+
"scopeCode": "scopeCode",
|
3
|
+
"scopeDescription": [{
|
4
|
+
"type": "dataset",
|
5
|
+
"description": "description"
|
6
|
+
}],
|
7
|
+
"timePeriod": [{
|
8
|
+
"id": "id",
|
9
|
+
"description": "description",
|
10
|
+
"identifier": {
|
11
|
+
"identifier": "identifier",
|
12
|
+
"namespace": "namespace"
|
13
|
+
},
|
14
|
+
"periodName": [
|
15
|
+
"periodName0",
|
16
|
+
"periodName1"
|
17
|
+
],
|
18
|
+
"startDateTime": "2016-10-14T11:10:15.2-10:00",
|
19
|
+
"endDateTime": "2016-12-31",
|
20
|
+
"timeInterval": {
|
21
|
+
"interval": 9.9,
|
22
|
+
"units": "units"
|
23
|
+
},
|
24
|
+
"duration": {
|
25
|
+
"years": 1,
|
26
|
+
"months": 1,
|
27
|
+
"days": 1,
|
28
|
+
"hours": 1,
|
29
|
+
"minutes": 1,
|
30
|
+
"seconds": 1
|
31
|
+
}
|
32
|
+
}]
|
33
|
+
}]
|
@@ -0,0 +1,23 @@
|
|
1
|
+
[{
|
2
|
+
"description": "description",
|
3
|
+
"citation": {
|
4
|
+
"title": "title"
|
5
|
+
},
|
6
|
+
"metadataCitation": [{
|
7
|
+
"title": "title"
|
8
|
+
}, {
|
9
|
+
"title": "title"
|
10
|
+
}],
|
11
|
+
"scaleDenominator": 9,
|
12
|
+
"referenceSystem": {
|
13
|
+
"type": "referenceSystemType",
|
14
|
+
"systemIdentifier": {
|
15
|
+
"identifier": "identifier"
|
16
|
+
}
|
17
|
+
},
|
18
|
+
"processStep": [{
|
19
|
+
"description": "description"
|
20
|
+
}, {
|
21
|
+
"description": "description"
|
22
|
+
}]
|
23
|
+
}]
|
@@ -0,0 +1,34 @@
|
|
1
|
+
[{
|
2
|
+
"type": "referenceSystemType",
|
3
|
+
"systemIdentifier": {
|
4
|
+
"identifier": "identifier"
|
5
|
+
}
|
6
|
+
},
|
7
|
+
{
|
8
|
+
"type": "projected",
|
9
|
+
"systemIdentifier": {
|
10
|
+
"identifier": "Zone 10",
|
11
|
+
"namespace": "UTM",
|
12
|
+
"description": "Universal Transverse Mercator Zone 10 Seattle, Washington"
|
13
|
+
}
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"type": "geodeticGeographic2D",
|
17
|
+
"systemIdentifier": {
|
18
|
+
"identifier": "4326",
|
19
|
+
"namespace": "urn:ogc:def:crs:EPSG",
|
20
|
+
"description": "epsg projection 4326 - wgs 84 - Latitude Longitude",
|
21
|
+
"authority": {
|
22
|
+
"title": "European Petroleum Survey Group"
|
23
|
+
}
|
24
|
+
}
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"type": "projected",
|
28
|
+
"systemIdentifier": {
|
29
|
+
"identifier": "PROJCS ['Wyoming 4901, Eastern Zone (1983, meters)', GEOGCS ['GRS 80', DATUM ['GRS 80', SPHEROID ['GRS 80', 6378137.000000, 298.257222]], PRIMEM ['Greenwich', 0.000000 ], UNIT ['Decimal Degree', 0.01745329251994330]], PROJECTION ['Transverse Mercator'], PARAMETER ['Scale_Factor', 0.999938], PARAMETER ['Central_Meridian', -105.166667], PARAMETER ['Latitude_Of_Origin', 40.500000], PARAMETER ['False_Easting', 200000.000000], UNIT ['Meter', 1.000000000000]]",
|
30
|
+
"namespace": "WKT",
|
31
|
+
"description": "Well Known Text for East Wyoming"
|
32
|
+
}
|
33
|
+
}
|
34
|
+
]
|
@@ -0,0 +1,59 @@
|
|
1
|
+
[{
|
2
|
+
"type": "grid",
|
3
|
+
"gridRepresentation": {
|
4
|
+
"dimension": [{
|
5
|
+
"dimensionType": "dimensionType",
|
6
|
+
"dimensionSize": 9
|
7
|
+
}, {
|
8
|
+
"dimensionType": "dimensionType",
|
9
|
+
"dimensionSize": 9
|
10
|
+
}],
|
11
|
+
"numberOfDimensions": 9,
|
12
|
+
"cellGeometry": "cellGeometry",
|
13
|
+
"transformationParameterAvailable": true
|
14
|
+
}
|
15
|
+
}, {
|
16
|
+
"type": "vector",
|
17
|
+
"vectorRepresentation": {
|
18
|
+
"topologyLevel": "topologyLevel",
|
19
|
+
"vectorObject": [{
|
20
|
+
"objectType": "objectType",
|
21
|
+
"objectCount": 9
|
22
|
+
}]
|
23
|
+
}
|
24
|
+
}, {
|
25
|
+
"type": "georectified",
|
26
|
+
"georectifiedRepresentation": {
|
27
|
+
"gridRepresentation": {
|
28
|
+
"numberOfDimensions": 9,
|
29
|
+
"cellGeometry": "cellGeometry",
|
30
|
+
"transformationParameterAvailable": true
|
31
|
+
},
|
32
|
+
"checkPointAvailable": true,
|
33
|
+
"cornerPoints": [
|
34
|
+
[0.0, 0.0],
|
35
|
+
[0.0, 1.0],
|
36
|
+
[1.0, 1.0],
|
37
|
+
[1.0, 0.0]
|
38
|
+
],
|
39
|
+
"pointInPixel": "pointInPixel"
|
40
|
+
}
|
41
|
+
}, {
|
42
|
+
"type": "georeferencable",
|
43
|
+
"georeferencableRepresentation": {
|
44
|
+
"gridRepresentation": {
|
45
|
+
"dimension": [{
|
46
|
+
"dimensionType": "dimensionType",
|
47
|
+
"dimensionSize": 9
|
48
|
+
}, {
|
49
|
+
"dimensionType": "dimensionType",
|
50
|
+
"dimensionSize": 9
|
51
|
+
}],
|
52
|
+
"numberOfDimensions": 9,
|
53
|
+
"cellGeometry": "cellGeometry"
|
54
|
+
},
|
55
|
+
"controlPointAvailable": true,
|
56
|
+
"orientationParameterAvailable": true,
|
57
|
+
"georeferencedParameter": "georeferencedParameter"
|
58
|
+
}
|
59
|
+
}]
|
@@ -0,0 +1,59 @@
|
|
1
|
+
[{
|
2
|
+
"taxonomicSystemId": "999999",
|
3
|
+
"taxonomicRank": "taxonomicRank0",
|
4
|
+
"latinName": "latinName",
|
5
|
+
"commonName": ["commonName0", "commonName1"],
|
6
|
+
"subClassification": [{
|
7
|
+
"taxonomicRank": "taxonomicRank00",
|
8
|
+
"latinName": "latinName",
|
9
|
+
"commonName": [
|
10
|
+
"commonName0",
|
11
|
+
"commonName1"
|
12
|
+
],
|
13
|
+
"subClassification": [{
|
14
|
+
"taxonomicRank": "taxonomicRank000",
|
15
|
+
"latinName": "latinName",
|
16
|
+
"commonName": [
|
17
|
+
"commonName0",
|
18
|
+
"commonName1"
|
19
|
+
],
|
20
|
+
"subClassification": [{
|
21
|
+
"taxonomicRank": "taxonomicRank0000.1",
|
22
|
+
"latinName": "latinName",
|
23
|
+
"commonName": [
|
24
|
+
"commonName0",
|
25
|
+
"commonName1"
|
26
|
+
],
|
27
|
+
"subClassification": []
|
28
|
+
},
|
29
|
+
{
|
30
|
+
"taxonomicRank": "taxonomicRank0000.2",
|
31
|
+
"latinName": "latinName",
|
32
|
+
"commonName": [
|
33
|
+
"commonName0",
|
34
|
+
"commonName1"
|
35
|
+
],
|
36
|
+
"subClassification": []
|
37
|
+
}
|
38
|
+
]
|
39
|
+
}]
|
40
|
+
},
|
41
|
+
{
|
42
|
+
"taxonomicRank": "taxonomicRank01",
|
43
|
+
"latinName": "latinName",
|
44
|
+
"commonName": [
|
45
|
+
"commonName0",
|
46
|
+
"commonName1"
|
47
|
+
],
|
48
|
+
"subClassification": [{
|
49
|
+
"taxonomicRank": "taxonomicRank010",
|
50
|
+
"latinName": "latinName",
|
51
|
+
"commonName": [
|
52
|
+
"commonName0",
|
53
|
+
"commonName1"
|
54
|
+
],
|
55
|
+
"subClassification": []
|
56
|
+
}]
|
57
|
+
}
|
58
|
+
]
|
59
|
+
}]
|
data/examples/taxonomy.json
CHANGED
@@ -1,197 +1,88 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
{
|
8
|
-
"date": "1111-11-11",
|
9
|
-
"dateType": "dateType11"
|
10
|
-
}, {
|
11
|
-
"date": "1112-11-11",
|
12
|
-
"dateType": "dateType12"
|
13
|
-
}
|
14
|
-
],
|
15
|
-
"edition": "edition",
|
16
|
-
"responsibleParty": [
|
17
|
-
{
|
18
|
-
"contactId": "contactId11",
|
19
|
-
"role": "role11"
|
20
|
-
}, {
|
21
|
-
"contactId": "contactId12",
|
22
|
-
"role": "role12"
|
23
|
-
}
|
24
|
-
],
|
25
|
-
"presentationForm": ["presentationForm11", "presentationForm12"],
|
26
|
-
"identifier": [
|
27
|
-
{
|
28
|
-
"identifier": "identifier111",
|
29
|
-
"type": "type111",
|
30
|
-
"authority": {
|
31
|
-
"title": "title111",
|
32
|
-
"date": [
|
33
|
-
{
|
34
|
-
"date": "1111-11-11",
|
35
|
-
"dateType": "dateType111"
|
36
|
-
}
|
37
|
-
],
|
38
|
-
"responsibleParty": [
|
39
|
-
{
|
40
|
-
"contactId": "contactId111",
|
41
|
-
"role": "role111"
|
42
|
-
}
|
43
|
-
],
|
44
|
-
"onlineResource": [
|
45
|
-
{
|
46
|
-
"uri": "http://thisisanexample111.com",
|
47
|
-
"protocol": "protocol111",
|
48
|
-
"name": "name111",
|
49
|
-
"description": "description111",
|
50
|
-
"function": "function111"
|
51
|
-
}
|
52
|
-
]
|
53
|
-
}
|
54
|
-
}
|
55
|
-
],
|
56
|
-
"onlineResource": [
|
57
|
-
{
|
58
|
-
"uri": "http://thisisanexample11.com",
|
59
|
-
"protocol": "protocol11",
|
60
|
-
"name": "name11",
|
61
|
-
"description": "description11",
|
62
|
-
"function": "function11"
|
63
|
-
}, {
|
64
|
-
"uri": "http://thisisanexample12.com",
|
65
|
-
"protocol": "protocol12",
|
66
|
-
"name": "name12",
|
67
|
-
"description": "description12",
|
68
|
-
"function": "function12"
|
69
|
-
}
|
70
|
-
]
|
71
|
-
}
|
72
|
-
],
|
73
|
-
"taxonGeneralScope": "taxonGeneralScope1",
|
74
|
-
"observer": [
|
75
|
-
{
|
76
|
-
"contactId": "contactId11",
|
77
|
-
"role": "role11"
|
78
|
-
}, {
|
79
|
-
"contactId": "contactId12",
|
80
|
-
"role": "role12"
|
81
|
-
}
|
82
|
-
],
|
83
|
-
"taxonomicProcedure": "taxonomicProcedure1",
|
84
|
-
"voucher": {
|
85
|
-
"specimen": "specimen1",
|
86
|
-
"repository": {
|
87
|
-
"contactId": "contactId1",
|
88
|
-
"role": "role1"
|
89
|
-
}
|
1
|
+
[{
|
2
|
+
"taxonomicSystem": [{
|
3
|
+
"citation": {
|
4
|
+
"title": "title"
|
5
|
+
},
|
6
|
+
"modification": "modification"
|
90
7
|
},
|
91
|
-
|
92
|
-
{
|
93
|
-
"
|
94
|
-
"taxonRank": "taxonRank11",
|
95
|
-
"taxonValue": "taxonValue11"
|
96
|
-
}, {
|
97
|
-
"common": "common12",
|
98
|
-
"taxonRank": "taxonRank12",
|
99
|
-
"taxonValue": "taxonValue12"
|
8
|
+
{
|
9
|
+
"citation": {
|
10
|
+
"title": "title"
|
100
11
|
}
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
],
|
112
|
-
"responsibleParty": [
|
113
|
-
{
|
114
|
-
"contactId": "2",
|
115
|
-
"role": "publisher"
|
116
|
-
}
|
117
|
-
]
|
118
|
-
}, {
|
119
|
-
"title": "Another Record Survey",
|
120
|
-
"date": [
|
121
|
-
{
|
122
|
-
"date": "2003",
|
123
|
-
"dateType": "publication"
|
124
|
-
}
|
125
|
-
],
|
126
|
-
"responsibleParty": [
|
127
|
-
{
|
128
|
-
"contactId": "1",
|
129
|
-
"role": "publisher"
|
130
|
-
}
|
131
|
-
]
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"generalScope": "generalScope",
|
15
|
+
"identificationReference": [{
|
16
|
+
"identifier": "identifier0",
|
17
|
+
"namespace": "namespace0",
|
18
|
+
"version": "version0",
|
19
|
+
"description": "description0",
|
20
|
+
"authority": {
|
21
|
+
"title": "title0"
|
132
22
|
}
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
"
|
141
|
-
"role": "pointOfContact"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"identifier": "identifier1",
|
26
|
+
"namespace": "namespace1",
|
27
|
+
"version": "version1",
|
28
|
+
"description": "description1",
|
29
|
+
"authority": {
|
30
|
+
"title": "title1"
|
142
31
|
}
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
"
|
32
|
+
}
|
33
|
+
],
|
34
|
+
"observer": [{
|
35
|
+
"role": "role",
|
36
|
+
"timePeriod": [{
|
37
|
+
"startDateTime": "2016-10-22"
|
38
|
+
}],
|
39
|
+
"party": [{
|
40
|
+
"contactId": "individualId0"
|
41
|
+
}]
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"role": "role",
|
45
|
+
"timePeriod": [{
|
46
|
+
"startDateTime": "2016-10-22"
|
47
|
+
}],
|
48
|
+
"party": [{
|
49
|
+
"contactId": "individualId0"
|
50
|
+
}]
|
51
|
+
}
|
52
|
+
],
|
53
|
+
"identificationProcedure": "identificationProcedure",
|
54
|
+
"identificationCompleteness": "identificationCompleteness",
|
55
|
+
"voucher": [{
|
56
|
+
"specimen": "specimen",
|
147
57
|
"repository": {
|
148
|
-
"
|
149
|
-
"
|
58
|
+
"role": "role",
|
59
|
+
"timePeriod": [{
|
60
|
+
"startDateTime": "2016-10-14"
|
61
|
+
}],
|
62
|
+
"party": [{
|
63
|
+
"contactId": "individualId0"
|
64
|
+
}]
|
150
65
|
}
|
151
66
|
},
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
"
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
}, {
|
163
|
-
"taxonRank": "Class",
|
164
|
-
"taxonValue": "Mammalia"
|
165
|
-
}, {
|
166
|
-
"taxonRank": "Subclass",
|
167
|
-
"taxonValue": "Theria"
|
168
|
-
}, {
|
169
|
-
"taxonRank": "Infraclass",
|
170
|
-
"taxonValue": "Eutheria"
|
171
|
-
}, {
|
172
|
-
"taxonRank": "Order",
|
173
|
-
"taxonValue": "Carnivora"
|
174
|
-
}, {
|
175
|
-
"taxonRank": "Suborder",
|
176
|
-
"taxonValue": "Caniformia"
|
177
|
-
}, {
|
178
|
-
"taxonRank": "Family",
|
179
|
-
"taxonValue": "Mustilidae"
|
180
|
-
}, {
|
181
|
-
"taxonRank": "Subfamily",
|
182
|
-
"taxonValue": "Lutrinae"
|
183
|
-
}, {
|
184
|
-
"taxonRank": "Genus",
|
185
|
-
"taxonValue": "Enhydra"
|
186
|
-
}, {
|
187
|
-
"common": "Sea Otter",
|
188
|
-
"taxonRank": "Species",
|
189
|
-
"taxonValue": "Enhydra lutris"
|
190
|
-
}, {
|
191
|
-
"common": "Southern Sea Otter",
|
192
|
-
"taxonRank": "Subspecies",
|
193
|
-
"taxonValue": "Enhydra"
|
67
|
+
{
|
68
|
+
"specimen": "specimen",
|
69
|
+
"repository": {
|
70
|
+
"role": "role",
|
71
|
+
"timePeriod": [{
|
72
|
+
"startDateTime": "2016-10-14"
|
73
|
+
}],
|
74
|
+
"party": [{
|
75
|
+
"contactId": "individualId0"
|
76
|
+
}]
|
194
77
|
}
|
195
|
-
|
78
|
+
}
|
79
|
+
],
|
80
|
+
"taxonomicClassification": {
|
81
|
+
"commonName": [
|
82
|
+
"commonName0",
|
83
|
+
"commonName1"
|
84
|
+
],
|
85
|
+
"taxonomicRank": "taxonomicRank0",
|
86
|
+
"latinName": "latinName0"
|
196
87
|
}
|
197
|
-
]
|
88
|
+
}]
|
@@ -0,0 +1,26 @@
|
|
1
|
+
[{
|
2
|
+
"id": "id",
|
3
|
+
"description": "description",
|
4
|
+
"identifier": {
|
5
|
+
"identifier": "identifier",
|
6
|
+
"namespace": "namespace"
|
7
|
+
},
|
8
|
+
"periodName": [
|
9
|
+
"periodName0",
|
10
|
+
"periodName1"
|
11
|
+
],
|
12
|
+
"startDateTime": "2016-10-14T11:10:15.2-10:00",
|
13
|
+
"endDateTime": "2016-12-31",
|
14
|
+
"timeInterval": {
|
15
|
+
"interval": 9.9,
|
16
|
+
"units": "units"
|
17
|
+
},
|
18
|
+
"duration": {
|
19
|
+
"years": 1,
|
20
|
+
"months": 1,
|
21
|
+
"days": 1,
|
22
|
+
"hours": 1,
|
23
|
+
"minutes": 1,
|
24
|
+
"seconds": 1
|
25
|
+
}
|
26
|
+
}]
|