adiwg-json_schemas 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +18 -0
- data/.travis.yml +9 -0
- data/CREDITS +3 -0
- data/Gemfile +4 -0
- data/LICENSE +24 -0
- data/README.md +36 -0
- data/Rakefile +12 -0
- data/adiwg-json_schemas.gemspec +24 -0
- data/examples/adiwg_project_example_1.json +847 -0
- data/examples/citation.json +60 -0
- data/examples/contact.json +165 -0
- data/examples/contactRef.json +15 -0
- data/examples/dataQuality.json +132 -0
- data/examples/data_example.json +371 -0
- data/examples/date.json +19 -0
- data/examples/distributor.json +53 -0
- data/examples/extent_linestring.json +288 -0
- data/examples/extent_point.json +200 -0
- data/examples/extent_polygon.json +353 -0
- data/examples/full_example.json +1629 -0
- data/examples/geojson.json +253 -0
- data/examples/graphicOverview.json +23 -0
- data/examples/hierarchyLevel.json +90 -0
- data/examples/keywords.json +68 -0
- data/examples/lcc_project_example.json +245 -0
- data/examples/maintInfo.json +22 -0
- data/examples/onlineResource.json +12 -0
- data/examples/resolution.json +9 -0
- data/examples/resourceConstraints.json +25 -0
- data/examples/resourceInfo.json +1287 -0
- data/examples/resourceMaintenance.json +10 -0
- data/examples/taxonomy.json +98 -0
- data/examples/uri.json +7 -0
- data/examples/usage.json +23 -0
- data/lib/adiwg/json_schemas/utils.rb +20 -0
- data/lib/adiwg/json_schemas/version.rb +6 -0
- data/lib/adiwg/json_schemas.rb +7 -0
- data/lib/adiwg-json_schemas.rb +1 -0
- data/schema/schema/citation.json +77 -0
- data/schema/schema/contact.json +175 -0
- data/schema/schema/dataQuality.json +82 -0
- data/schema/schema/distributor.json +89 -0
- data/schema/schema/extent.json +118 -0
- data/schema/schema/geojson/bbox.json +10 -0
- data/schema/schema/geojson/crs.json +53 -0
- data/schema/schema/geojson/geojson.json +131 -0
- data/schema/schema/geojson/geometry.json +123 -0
- data/schema/schema/graphicOverview.json +22 -0
- data/schema/schema/keyword.json +37 -0
- data/schema/schema/maintInfo.json +26 -0
- data/schema/schema/metadata.json +88 -0
- data/schema/schema/onlineResource.json +28 -0
- data/schema/schema/resolution.json +29 -0
- data/schema/schema/resourceConstraint.json +65 -0
- data/schema/schema/resourceInfo.json +151 -0
- data/schema/schema/taxonomy.json +61 -0
- data/schema/schema/usage.json +23 -0
- data/schema/schema.json +42 -0
- data/templates/adiwg_metadata_template.json +585 -0
- data/test/tc_schemas.rb +133 -0
- data/test/tc_utils.rb +26 -0
- metadata +150 -0
@@ -0,0 +1,12 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"uri": "http://arcticlcc.org",
|
4
|
+
"name": "Arctic LCC website",
|
5
|
+
"protocol": "http",
|
6
|
+
"description": "Website for the Arctic Landscape Conservation Cooperative",
|
7
|
+
"function": "information",
|
8
|
+
"doi": "10.1111/j.1365-2575.2012.00413.x"
|
9
|
+
}, {
|
10
|
+
"uri": "http://arcticlcc.org"
|
11
|
+
}
|
12
|
+
]
|
@@ -0,0 +1,25 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"accessConstraint": ["patentPending", "restricted"],
|
4
|
+
"useConstraint": ["restricted"],
|
5
|
+
"otherConstraint": ["Legally barred from use for navigation."]
|
6
|
+
}, {
|
7
|
+
"accessConstraint": ["otherRestrictions"],
|
8
|
+
"useConstraint": ["otherRestrictions"],
|
9
|
+
"otherConstraint": ["Access Constraint: No one else. Use Constraint: None"]
|
10
|
+
}, {
|
11
|
+
"accessConstraint": ["copyright", "patent", "patentPending", "trademark", "license", "intellectualPropertyRights", "restricted", "otherRestrictions"]
|
12
|
+
}
|
13
|
+
, {
|
14
|
+
"classification": "unclassified",
|
15
|
+
"userNote": "security clearance not required",
|
16
|
+
"classificationSystem": "none",
|
17
|
+
"handlingDescription": "this is how to handle things..."
|
18
|
+
}, {
|
19
|
+
"classification": "intellectualPropertyRights"
|
20
|
+
}, {
|
21
|
+
"classification": "secret",
|
22
|
+
"userNote": "shhhhh"
|
23
|
+
},
|
24
|
+
["not for suitable for navigation", "draft version", "not intended for general use", "don't be a jerk"]
|
25
|
+
]
|