adiwg-mdjson_schemas 2.0.0.pre.alpha.12 → 2.0.0.pre.alpha.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/examples/dictionary.json +1 -1
- data/examples/mdJson.json +2 -2
- data/lib/adiwg/mdjson_schemas/version.rb +1 -1
- data/schema/dataDictionary.json +5 -2
- data/schema/schema.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ffd24c8b879f02abce6df38ee26eb424d487b1a
|
4
|
+
data.tar.gz: 3c75c661c227ad9f1ec84b7c2c33b7c2bf1a1902
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ccee47cdcc8706b3df546c96bcbc27b7c981fcbd39b3ac691d436a8fcda2c41bbec3230ff14bbb4b1350b89e6289f583440a8eded7f0eb422babed96df60dfdd
|
7
|
+
data.tar.gz: e05a1295f5b1e78f29ffd71ff3337a7a6a1e3d83e910567fe10ef73e00bfc4d15c43505e2f20d2bf73c87fe06243538dc5fe07527ed72252760c15576084f1a2
|
data/examples/dictionary.json
CHANGED
data/examples/mdJson.json
CHANGED
@@ -92,7 +92,7 @@
|
|
92
92
|
"metadataStandard": "format"
|
93
93
|
}],
|
94
94
|
"dataDictionary": [{
|
95
|
-
"subject": "subject",
|
95
|
+
"subject": ["subject"],
|
96
96
|
"responsibleParty": {
|
97
97
|
"role": "role",
|
98
98
|
"party": [{
|
@@ -103,7 +103,7 @@
|
|
103
103
|
"title": "title"
|
104
104
|
}
|
105
105
|
}, {
|
106
|
-
"subject": "subject",
|
106
|
+
"subject": ["subject"],
|
107
107
|
"responsibleParty": {
|
108
108
|
"role": "role",
|
109
109
|
"party": [{
|
data/schema/dataDictionary.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
4
4
|
"type": "object",
|
5
5
|
"description": "A catalogue containing definitions and descriptions of the resource types, resource attributes, and resource associations.",
|
6
|
-
"example":"../examples/dictionary.json",
|
6
|
+
"example": "../examples/dictionary.json",
|
7
7
|
"required": ["subject", "citation", "responsibleParty"],
|
8
8
|
"additionalProperties": true,
|
9
9
|
"properties": {
|
@@ -12,10 +12,13 @@
|
|
12
12
|
"$ref": "./citation.json#"
|
13
13
|
},
|
14
14
|
"subject": {
|
15
|
-
"type": "
|
15
|
+
"type": "array",
|
16
16
|
"description": "Identifies the scope of the data dictionary. E.g. 'database', 'dataset', 'table'.",
|
17
17
|
"translation": {
|
18
18
|
"ISO 19115-2": ["FC_FeatureCatalogue > scope"]
|
19
|
+
},
|
20
|
+
"items": {
|
21
|
+
"type": "string"
|
19
22
|
}
|
20
23
|
},
|
21
24
|
"recommendedUse": {
|
data/schema/schema.json
CHANGED