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
data/examples/keywords.json
DELETED
@@ -1,144 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"keyword": ["keyword1", "keyword2"],
|
4
|
-
"keywordType": "keywordType",
|
5
|
-
"thesaurus": {
|
6
|
-
"title": "title",
|
7
|
-
"date": [
|
8
|
-
{
|
9
|
-
"date": "1111-11-11",
|
10
|
-
"dateType": "dateType1"
|
11
|
-
}, {
|
12
|
-
"date": "1112-11-11",
|
13
|
-
"dateType": "dateType2"
|
14
|
-
}
|
15
|
-
],
|
16
|
-
"edition": "edition",
|
17
|
-
"responsibleParty": [
|
18
|
-
{
|
19
|
-
"contactId": "contactId1",
|
20
|
-
"role": "role1"
|
21
|
-
}, {
|
22
|
-
"contactId": "contactId2",
|
23
|
-
"role": "role2"
|
24
|
-
}
|
25
|
-
],
|
26
|
-
"presentationForm": ["presentationForm1", "presentationForm2"],
|
27
|
-
"identifier": [
|
28
|
-
{
|
29
|
-
"identifier": "identifier1",
|
30
|
-
"type": "type1",
|
31
|
-
"authority": {
|
32
|
-
"title": "title",
|
33
|
-
"date": [
|
34
|
-
{
|
35
|
-
"date": "1111-11-11",
|
36
|
-
"dateType": "dateType1"
|
37
|
-
}
|
38
|
-
],
|
39
|
-
"responsibleParty": [
|
40
|
-
{
|
41
|
-
"contactId": "contactId1",
|
42
|
-
"role": "role1"
|
43
|
-
}
|
44
|
-
],
|
45
|
-
"onlineResource": [
|
46
|
-
{
|
47
|
-
"uri": "http://thisisanexample1.com",
|
48
|
-
"protocol": "protocol1",
|
49
|
-
"name": "name1",
|
50
|
-
"description": "description1",
|
51
|
-
"function": "function1"
|
52
|
-
}
|
53
|
-
]
|
54
|
-
}
|
55
|
-
}
|
56
|
-
],
|
57
|
-
"onlineResource": [
|
58
|
-
{
|
59
|
-
"uri": "http://thisisanexample1.com",
|
60
|
-
"protocol": "protocol1",
|
61
|
-
"name": "name1",
|
62
|
-
"description": "description1",
|
63
|
-
"function": "function1"
|
64
|
-
}, {
|
65
|
-
"uri": "http://thisisanexample2.com",
|
66
|
-
"protocol": "protocol2",
|
67
|
-
"name": "name2",
|
68
|
-
"description": "description2",
|
69
|
-
"function": "function2"
|
70
|
-
}
|
71
|
-
]
|
72
|
-
}
|
73
|
-
}, {
|
74
|
-
"keyword": ["Oceans > Ocean temperature > Thermocline", "Oceans > Ocean Temperature > Water Temperature", "Oceans > Ocean Heat Budget > Heat Flux"],
|
75
|
-
"keywordType": "theme",
|
76
|
-
"thesaurus": {
|
77
|
-
"title": "NASA/Global Change Master Directory (GCMD) Earth Science Keywords.",
|
78
|
-
"date": [
|
79
|
-
{
|
80
|
-
"date": "2013-09-19",
|
81
|
-
"dateType": "revision"
|
82
|
-
}
|
83
|
-
],
|
84
|
-
"onlineResource": [
|
85
|
-
{
|
86
|
-
"uri": "http://gcmdservices.gsfc.nasa.gov/static/kms/sciencekeywords/sciencekeywords.csv"
|
87
|
-
}
|
88
|
-
],
|
89
|
-
"edition": "Version 8.0.0.0.0",
|
90
|
-
"responsibleParty": [
|
91
|
-
{
|
92
|
-
"contactId": "1",
|
93
|
-
"role": "originator"
|
94
|
-
}, {
|
95
|
-
"contactId": "2",
|
96
|
-
"role": "owner"
|
97
|
-
}
|
98
|
-
],
|
99
|
-
"presentationForm": ["documentDigital"],
|
100
|
-
"identifier": [
|
101
|
-
{
|
102
|
-
"type": "isbn",
|
103
|
-
"identifier": "HB12365.214"
|
104
|
-
}, {
|
105
|
-
"type": "issn",
|
106
|
-
"identifier": "0ab4-dd983c01"
|
107
|
-
}
|
108
|
-
]
|
109
|
-
}
|
110
|
-
}, {
|
111
|
-
"keyword": ["Oceans > Ocean temperature > Thermocline", "Oceans > Ocean Temperature > Water Temperature", "Oceans > Ocean Heat Budget > Heat Flux"],
|
112
|
-
"keywordType": "theme",
|
113
|
-
"thesaurus": {
|
114
|
-
"title": "NASA/Global Change Master Directory (GCMD) Earth Science Keywords.",
|
115
|
-
"date": [
|
116
|
-
{
|
117
|
-
"date": "2013-09-19",
|
118
|
-
"dateType": "revision"
|
119
|
-
}
|
120
|
-
],
|
121
|
-
"onlineResource": [
|
122
|
-
{
|
123
|
-
"uri": "http://gcmdservices.gsfc.nasa.gov/static/kms/sciencekeywords/sciencekeywords.csv"
|
124
|
-
}
|
125
|
-
]
|
126
|
-
}
|
127
|
-
}, {
|
128
|
-
"keyword": ["In Situ/Laboratory Instruments > Temperature/Humidity Sensors > Thermometers"],
|
129
|
-
"keywordType": "instrument",
|
130
|
-
"thesaurus": {
|
131
|
-
"title": "NASA/Global Change Master Directory (GCMD) Earth Science Keywords."
|
132
|
-
}
|
133
|
-
}, {
|
134
|
-
"keyword": ["In Situ/Laboratory Instruments > Temperature/Humidity Sensors > Thermometers"],
|
135
|
-
"keywordType": "instrument"
|
136
|
-
}, {
|
137
|
-
"keyword": ["In Situ/Laboratory Instruments > Temperature/Humidity Sensors > Thermometers"],
|
138
|
-
"thesaurus": {
|
139
|
-
"title": "NASA/Global Change Master Directory (GCMD) Earth Science Keywords."
|
140
|
-
}
|
141
|
-
}, {
|
142
|
-
"keyword": ["thermocline", "sea surface temperature"]
|
143
|
-
}
|
144
|
-
]
|
@@ -1,326 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":{
|
3
|
-
"name":"mdJson",
|
4
|
-
"version":"1.0.0"
|
5
|
-
},
|
6
|
-
"contact":[
|
7
|
-
{
|
8
|
-
"contactId":"1",
|
9
|
-
"organizationName":"Arctic Landscape Conservation Cooperative",
|
10
|
-
"onlineResource":[
|
11
|
-
{
|
12
|
-
"uri":"http://arcticlcc.org",
|
13
|
-
"name":"Arctic LCC website",
|
14
|
-
"description":"Website for the Arctic Landscape Conservation Cooperative",
|
15
|
-
"function":"information"
|
16
|
-
}
|
17
|
-
],
|
18
|
-
"phoneBook":[
|
19
|
-
{
|
20
|
-
"phoneName":"office",
|
21
|
-
"phoneNumber":"907-786-3605",
|
22
|
-
"service":[
|
23
|
-
"voice",
|
24
|
-
"fax"
|
25
|
-
]
|
26
|
-
},
|
27
|
-
{
|
28
|
-
"phoneName":"mobile",
|
29
|
-
"phoneNumber":"907-306-1895",
|
30
|
-
"service":[
|
31
|
-
"voice",
|
32
|
-
"sms"
|
33
|
-
]
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"phoneName":"fax",
|
37
|
-
"phoneNumber":"907-786-3592",
|
38
|
-
"service":[
|
39
|
-
"fax"
|
40
|
-
]
|
41
|
-
}
|
42
|
-
],
|
43
|
-
"address":{
|
44
|
-
"deliveryPoint":[
|
45
|
-
"1011 E. Tudor Rd"
|
46
|
-
],
|
47
|
-
"city":"Anchorage",
|
48
|
-
"administrativeArea":"AK",
|
49
|
-
"postalCode":"99503",
|
50
|
-
"country":"USA",
|
51
|
-
"electronicMailAddress":[
|
52
|
-
"staff@arcticlcc.org"
|
53
|
-
]
|
54
|
-
}
|
55
|
-
},
|
56
|
-
{
|
57
|
-
"contactId":"2",
|
58
|
-
"individualName":"Scott Rupp",
|
59
|
-
"organizationName":"University of Alaska - Fairbanks -> Scenarios Network for Alaska & Arctic Planning",
|
60
|
-
"address":{
|
61
|
-
"electronicMailAddress":[
|
62
|
-
"tsrupp@alaska.edu"
|
63
|
-
]
|
64
|
-
}
|
65
|
-
},
|
66
|
-
{
|
67
|
-
"contactId":"3",
|
68
|
-
"individualName":"David McGuire",
|
69
|
-
"organizationName":"Alaska Cooperative Fish and Wildlife Research Unit",
|
70
|
-
"address":{
|
71
|
-
"electronicMailAddress":[
|
72
|
-
"admcguire@alaska.edu"
|
73
|
-
]
|
74
|
-
}
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"contactId":"4",
|
78
|
-
"organizationName":"Western Alaska Landscape Conservation Cooperative"
|
79
|
-
},
|
80
|
-
{
|
81
|
-
"contactId":"5",
|
82
|
-
"organizationName":"Alaska Climate Science Center"
|
83
|
-
},
|
84
|
-
{
|
85
|
-
"contactId":"6",
|
86
|
-
"organizationName":"Northwest Boreal Landscape Conservation Cooperative"
|
87
|
-
},
|
88
|
-
{
|
89
|
-
"contactId":"7",
|
90
|
-
"organizationName":"U.S. Fish and Wildlife Service"
|
91
|
-
}
|
92
|
-
],
|
93
|
-
"metadata":{
|
94
|
-
"metadataInfo":{
|
95
|
-
"metadataIdentifier":{
|
96
|
-
"identifier":"D5D16D06-CEEB-E011-8260-000C2952247E",
|
97
|
-
"type":"uuid"
|
98
|
-
},
|
99
|
-
"metadataContact":[
|
100
|
-
{
|
101
|
-
"contactId":"1",
|
102
|
-
"role":"custodian"
|
103
|
-
}
|
104
|
-
],
|
105
|
-
"metadataCreationDate":"2014-04-28",
|
106
|
-
"metadataLastUpdate":"2014-04-28",
|
107
|
-
"metadataUri":"http://arcticlcc.org/metadata/project/ALCC2010-05",
|
108
|
-
"metadataStatus":"onGoing",
|
109
|
-
"metadataMaintenance":{
|
110
|
-
"maintenanceFrequency":"asNeeded",
|
111
|
-
"maintenanceNote":[
|
112
|
-
"Metadata records are generated on request from current database"
|
113
|
-
],
|
114
|
-
"maintenanceContact":[
|
115
|
-
{
|
116
|
-
"contactId":"1",
|
117
|
-
"role":"publisher"
|
118
|
-
}
|
119
|
-
]
|
120
|
-
}
|
121
|
-
},
|
122
|
-
"resourceInfo":{
|
123
|
-
"resourceType":"project",
|
124
|
-
"citation":{
|
125
|
-
"title":"Integrated Ecosystem Model (AIEM) for Alaska",
|
126
|
-
"date":[
|
127
|
-
{
|
128
|
-
"date":"2010-02-15",
|
129
|
-
"dateType":"projectStart"
|
130
|
-
},
|
131
|
-
{
|
132
|
-
"date":"2016-08-31",
|
133
|
-
"dateType":"projectEnd"
|
134
|
-
}
|
135
|
-
],
|
136
|
-
"responsibleParty":[
|
137
|
-
{
|
138
|
-
"contactId":"1",
|
139
|
-
"role":"primaryLCC",
|
140
|
-
"funding":[
|
141
|
-
{
|
142
|
-
"fiscalYear":2010,
|
143
|
-
"originalSource":{
|
144
|
-
"contactId":"7"
|
145
|
-
},
|
146
|
-
"amount":410000
|
147
|
-
},
|
148
|
-
{
|
149
|
-
"fiscalYear":2011,
|
150
|
-
"originalSource":{
|
151
|
-
"contactId":"7"
|
152
|
-
},
|
153
|
-
"amount":410000
|
154
|
-
}
|
155
|
-
]
|
156
|
-
},
|
157
|
-
{
|
158
|
-
"contactId":"2",
|
159
|
-
"role":"principalInvestigator"
|
160
|
-
},
|
161
|
-
{
|
162
|
-
"contactId":"3",
|
163
|
-
"role":"principalInvestigator"
|
164
|
-
},
|
165
|
-
{
|
166
|
-
"contactId":"5",
|
167
|
-
"role":"collaborator"
|
168
|
-
},
|
169
|
-
{
|
170
|
-
"contactId":"4",
|
171
|
-
"role":"partnerLCC",
|
172
|
-
"funding":[
|
173
|
-
{
|
174
|
-
"fiscalYear":2011,
|
175
|
-
"amount":50000
|
176
|
-
}
|
177
|
-
]
|
178
|
-
},
|
179
|
-
{
|
180
|
-
"contactId":"6",
|
181
|
-
"role":"partnerLCC",
|
182
|
-
"funding":[
|
183
|
-
{
|
184
|
-
"fiscalYear":2011,
|
185
|
-
"amount":15000,
|
186
|
-
"comment":"This is an example."
|
187
|
-
}
|
188
|
-
]
|
189
|
-
}
|
190
|
-
],
|
191
|
-
"identifier":[
|
192
|
-
{
|
193
|
-
"authority":{
|
194
|
-
"title":"Arctic LCC Project",
|
195
|
-
"responsibleParty":[
|
196
|
-
{
|
197
|
-
"contactId":"1",
|
198
|
-
"role":"originator"
|
199
|
-
}
|
200
|
-
]
|
201
|
-
},
|
202
|
-
"identifier":"ALCC2010-05"
|
203
|
-
},
|
204
|
-
{
|
205
|
-
"authority":{
|
206
|
-
"title":"WA LCC Project",
|
207
|
-
"responsibleParty":[
|
208
|
-
{
|
209
|
-
"contactId":"4",
|
210
|
-
"role":"collaborator"
|
211
|
-
}
|
212
|
-
],
|
213
|
-
"onlineResource":[
|
214
|
-
{
|
215
|
-
"uri":"http://thisisanexample.com"
|
216
|
-
}
|
217
|
-
]
|
218
|
-
},
|
219
|
-
"identifier":"WA2011_09"
|
220
|
-
},
|
221
|
-
{
|
222
|
-
"authority":{
|
223
|
-
"title":"NWB LCC Project",
|
224
|
-
"responsibleParty":[
|
225
|
-
{
|
226
|
-
"contactId":"4",
|
227
|
-
"role":"collaborator"
|
228
|
-
}
|
229
|
-
]
|
230
|
-
},
|
231
|
-
"identifier":"NWB-002"
|
232
|
-
}
|
233
|
-
],
|
234
|
-
"onlineResource":[
|
235
|
-
{
|
236
|
-
"uri":"http://arcticlcc.org/projects/ALCC2010-05",
|
237
|
-
"protocol":"http",
|
238
|
-
"name":"Project website",
|
239
|
-
"description":"Main project website",
|
240
|
-
"function":"information"
|
241
|
-
},
|
242
|
-
{
|
243
|
-
"uri":"https://www.sciencebase.gov/catalog/folder/52b4afa2e4b0260bc327ef6d",
|
244
|
-
"protocol":"http",
|
245
|
-
"name":"Project ScienceBase Page",
|
246
|
-
"description":"Fake ScienceBase link",
|
247
|
-
"function":"scienceBase"
|
248
|
-
}
|
249
|
-
]
|
250
|
-
},
|
251
|
-
"pointOfContact":[
|
252
|
-
{
|
253
|
-
"contactId":"1",
|
254
|
-
"role":"pointOfContact"
|
255
|
-
}
|
256
|
-
],
|
257
|
-
"abstract":"Project with SNAP to develop a framework that will couple models of disturbance and vegetation succession (ALFRESCO), biogeochemistry (TEM), and permafrost (GIPL).",
|
258
|
-
"shortAbstract":"",
|
259
|
-
"status":"onGoing",
|
260
|
-
"resourceSpecificUsage":[
|
261
|
-
{
|
262
|
-
"specificUsage":"Broad variety of datasets for use by land and resource managers as well as researchers.",
|
263
|
-
"userContactInfo":[
|
264
|
-
{
|
265
|
-
"contactId":"1",
|
266
|
-
"role":"pointOfContact"
|
267
|
-
}
|
268
|
-
]
|
269
|
-
}
|
270
|
-
],
|
271
|
-
"language":[
|
272
|
-
"eng; USA"
|
273
|
-
],
|
274
|
-
"keyword":[
|
275
|
-
{
|
276
|
-
"keyword":[
|
277
|
-
"EARTH SCIENCE -> TERRESTRIAL HYDROSPHERE -> SURFACE WATER -> WETLANDS",
|
278
|
-
"EARTH SCIENCE -> CRYOSPHERE -> FROZEN GROUND -> SOIL TEMPERATURE",
|
279
|
-
"EARTH SCIENCE -> CRYOSPHERE -> FROZEN GROUND -> PERMAFROST",
|
280
|
-
"EARTH SCIENCE SERVICES -> MODELS -> DYNAMIC VEGETATION/ECOSYSTEM MODELS",
|
281
|
-
"EARTH SCIENCE -> LAND SURFACE -> LAND USE/LAND COVER -> LAND COVER",
|
282
|
-
"EARTH SCIENCE -> LAND SURFACE -> LANDSCAPE -> LANDSCAPE ECOLOGY",
|
283
|
-
"EARTH SCIENCE -> LAND SURFACE -> LANDSCAPE -> LANDSCAPE PROCESSES"
|
284
|
-
],
|
285
|
-
"keywordType":"theme",
|
286
|
-
"thesaurus":{
|
287
|
-
"title":"NASA/Global Change Master Directory (GCMD) Earth Science Keywords.",
|
288
|
-
"date":[
|
289
|
-
{
|
290
|
-
"date":"2013-09-19",
|
291
|
-
"dateType":"revision"
|
292
|
-
}
|
293
|
-
],
|
294
|
-
"onlineResource":[
|
295
|
-
{
|
296
|
-
"uri":"http://gcmdservices.gsfc.nasa.gov/static/kms/sciencekeywords/sciencekeywords.csv"
|
297
|
-
}
|
298
|
-
],
|
299
|
-
"edition":"Version 8.0.0.0.0",
|
300
|
-
"presentationForm":[
|
301
|
-
"documentDigital"
|
302
|
-
]
|
303
|
-
}
|
304
|
-
},
|
305
|
-
{
|
306
|
-
"keyword":[
|
307
|
-
"Population & Habitat Evaluation/Projection",
|
308
|
-
"Vulnerability Assessment"
|
309
|
-
],
|
310
|
-
"keywordType":"project",
|
311
|
-
"thesaurus":{
|
312
|
-
"title":"LCC Project Category Vocabulary",
|
313
|
-
"onlineResource":[
|
314
|
-
{
|
315
|
-
"uri":"https://www.sciencebase.gov/vocab/vocabulary/52dee7c5e4b0dee2a6cd6b18"
|
316
|
-
}
|
317
|
-
],
|
318
|
-
"presentationForm":[
|
319
|
-
"documentDigital"
|
320
|
-
]
|
321
|
-
}
|
322
|
-
}
|
323
|
-
]
|
324
|
-
}
|
325
|
-
}
|
326
|
-
}
|
@@ -1,17 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"accessConstraint": ["accessConstraint1", "accessConstraint2"],
|
4
|
-
"useConstraint": ["useConstraint1", "useConstraint2"],
|
5
|
-
"otherConstraint": ["otherConstraint1", "otherConstraint2"]
|
6
|
-
}, {
|
7
|
-
"accessConstraint": ["patentPending", "restricted"],
|
8
|
-
"useConstraint": ["restricted"],
|
9
|
-
"otherConstraint": ["Legally barred from use for navigation."]
|
10
|
-
}, {
|
11
|
-
"useConstraint": ["otherRestrictions"]
|
12
|
-
}, {
|
13
|
-
"otherConstraint": ["Access Constraint: No one else. Use Constraint: None"]
|
14
|
-
}, {
|
15
|
-
"accessConstraint": ["copyright", "patent", "patentPending", "trademark", "license", "intellectualPropertyRights", "restricted", "otherRestrictions"]
|
16
|
-
}
|
17
|
-
]
|
data/examples/maintInfo.json
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"maintenanceFrequency": "maintenanceFrequency",
|
4
|
-
"maintenanceNote": ["maintenanceNote1", "maintenanceNote2"],
|
5
|
-
"maintenanceContact": [
|
6
|
-
{
|
7
|
-
"contactId": "contactId1",
|
8
|
-
"role": "role1"
|
9
|
-
}, {
|
10
|
-
"contactId": "contactId2",
|
11
|
-
"role": "role2"
|
12
|
-
}
|
13
|
-
]
|
14
|
-
}, {
|
15
|
-
"maintenanceFrequency": "annually",
|
16
|
-
"maintenanceNote": ["metadata is updated each year after data from that year has been added to the dataset", "Oh, and this is a second note."],
|
17
|
-
"maintenanceContact": [
|
18
|
-
{
|
19
|
-
"contactId": "4",
|
20
|
-
"role": "custodian"
|
21
|
-
}, {
|
22
|
-
"contactId": "2",
|
23
|
-
"role": "owner"
|
24
|
-
}
|
25
|
-
]
|
26
|
-
}, {
|
27
|
-
"maintenanceFrequency": "annually",
|
28
|
-
"maintenanceNote": ["metadata is updated each year after data from that year has been added to the datasest"]
|
29
|
-
}, {
|
30
|
-
"maintenanceFrequency": "asNeeded"
|
31
|
-
}, {
|
32
|
-
"maintenanceNote": ["Test of missing frequency code."]
|
33
|
-
}
|
34
|
-
]
|
@@ -1,35 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": {
|
3
|
-
"name": "mdJson",
|
4
|
-
"version": "1.0.0"
|
5
|
-
},
|
6
|
-
"contact": [
|
7
|
-
{
|
8
|
-
"contactId": "1",
|
9
|
-
"organizationName": "US Geological Survey - Alaska Science Center"
|
10
|
-
}
|
11
|
-
],
|
12
|
-
"metadata": {
|
13
|
-
"resourceInfo": {
|
14
|
-
"resourceType": "project",
|
15
|
-
"citation": {
|
16
|
-
"title": "Real-Time Permafrost and Climate Monitoring Network - Arctic Alaska",
|
17
|
-
"date": [
|
18
|
-
{
|
19
|
-
"date": "2012-12-21",
|
20
|
-
"dateType": "revision"
|
21
|
-
}
|
22
|
-
]
|
23
|
-
},
|
24
|
-
"pointOfContact": [
|
25
|
-
{
|
26
|
-
"contactId": "1",
|
27
|
-
"role": "pointOfContact"
|
28
|
-
}
|
29
|
-
],
|
30
|
-
"abstract": "DOI is developing a long-term permafrost monitoring network.",
|
31
|
-
"status": "onGoing",
|
32
|
-
"language": ["eng; USA", "esp; MEX"]
|
33
|
-
}
|
34
|
-
}
|
35
|
-
}
|
data/examples/resolution.json
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"classification": "unclassified",
|
4
|
-
"userNote": "security clearance not required",
|
5
|
-
"classificationSystem": "none",
|
6
|
-
"handlingDescription": "this is how to handle things..."
|
7
|
-
}, {
|
8
|
-
"classification": "intellectualPropertyRights"
|
9
|
-
}, {
|
10
|
-
"classification": "secret",
|
11
|
-
"userNote": "shhhhh"
|
12
|
-
}
|
13
|
-
]
|
data/examples/spatialRef.json
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name":[
|
3
|
-
"Alaska State Plane Zone 4",
|
4
|
-
"UTM Zone 9"
|
5
|
-
],
|
6
|
-
"epsgNumber":[
|
7
|
-
102634,
|
8
|
-
32609
|
9
|
-
],
|
10
|
-
"wkt":[
|
11
|
-
"PROJCS[\"NAD_1983_StatePlane_Alaska_4_FIPS_5004_Feet\",GEOGCS[\"GCS_North_American_1983\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS_1980\",6378137,298.257222101]],PRIMEM[\"Greenwich\",0],UNIT[\"Degree\",0.017453292519943295]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"False_Easting\",1640416.666666667],PARAMETER[\"False_Northing\",0],PARAMETER[\"Central_Meridian\",-150],PARAMETER[\"Scale_Factor\",0.9999],PARAMETER[\"Latitude_Of_Origin\",54],UNIT[\"Foot_US\",0.30480060960121924],AUTHORITY[\"EPSG\",\"102634\"]]",
|
12
|
-
"PROJCS[\"WGS 84 / UTM zone 9N\",GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]],UNIT[\"metre\",1,AUTHORITY[\"EPSG\",\"9001\"]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"latitude_of_origin\",0],PARAMETER[\"central_meridian\",-129],PARAMETER[\"scale_factor\",0.9996],PARAMETER[\"false_easting\",500000],PARAMETER[\"false_northing\",0],AUTHORITY[\"EPSG\",\"32609\"],AXIS[\"Easting\",EAST],AXIS[\"Northing\",NORTH]]"
|
13
|
-
]
|
14
|
-
}
|
@@ -1,29 +0,0 @@
|
|
1
|
-
[
|
2
|
-
{
|
3
|
-
"date": ["1111-11-11", "1112-11-11"],
|
4
|
-
"timeInstant": [
|
5
|
-
{
|
6
|
-
"id": "id1",
|
7
|
-
"description": "description1",
|
8
|
-
"timePosition": "1111-11-11T11:11:11.1+11:11"
|
9
|
-
}, {
|
10
|
-
"id": "id2",
|
11
|
-
"description": "description2",
|
12
|
-
"timePosition": "1112-11-11T11:11:11.1+11:11"
|
13
|
-
}
|
14
|
-
],
|
15
|
-
"timePeriod": [
|
16
|
-
{
|
17
|
-
"id": "id1",
|
18
|
-
"description": "description1",
|
19
|
-
"beginPosition": "1111-11-11T11:11:11.1+11:11",
|
20
|
-
"endPosition": "1111-12-11T11:11:11.1+11:11"
|
21
|
-
}, {
|
22
|
-
"id": "id2",
|
23
|
-
"description": "description2",
|
24
|
-
"beginPosition": "1112-11-11T11:11:11.1+11:11",
|
25
|
-
"endPosition": "1112-12-11T11:11:11.1+11:11"
|
26
|
-
}
|
27
|
-
]
|
28
|
-
}
|
29
|
-
]
|