adiwg-mdjson_schemas 2.8.0 → 2.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/adiwg-json_schemas.gemspec +1 -1
- data/lib/adiwg/mdjson_schemas/version.rb +1 -1
- data/package-lock.json +524 -71
- data/package.json +2 -2
- data/schema/dataQualityReport.json +11 -8
- data/schema/schema.json +1 -1
- data/schema/standaloneQualityReport.json +0 -1
- data/yarn.lock +438 -70
- metadata +4 -5
- data/.ruby-version +0 -1
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "mdjson-schemas",
|
3
|
-
"version": "2.8.
|
3
|
+
"version": "2.8.1",
|
4
4
|
"description": "JSON schemas, examples, and templates for ADIwg metadata standards",
|
5
5
|
"main": "index.js",
|
6
6
|
"directories": {
|
@@ -43,7 +43,7 @@
|
|
43
43
|
"buildify": "github:powmedia/buildify#20458a121411f759dcc5ec1b441695eb7fc2b3b7",
|
44
44
|
"glob": "^7.1.2",
|
45
45
|
"mkdirp": "^0.5.1",
|
46
|
-
"mocha": "^
|
46
|
+
"mocha": "^10.2.0",
|
47
47
|
"rimraf": "^2.6.1"
|
48
48
|
}
|
49
49
|
}
|
@@ -11,13 +11,16 @@
|
|
11
11
|
"qualityMeasure": {
|
12
12
|
"$ref": "./qualityMeasure.json#"
|
13
13
|
},
|
14
|
-
"
|
15
|
-
"
|
14
|
+
"conformanceResult": {
|
15
|
+
"type": "array",
|
16
|
+
"items": {
|
17
|
+
"$ref": "./conformanceResult.json#"
|
18
|
+
}
|
16
19
|
},
|
17
|
-
"
|
20
|
+
"coverageResult": {
|
18
21
|
"type": "array",
|
19
22
|
"items": {
|
20
|
-
"$ref": "./
|
23
|
+
"$ref": "./coverageResult.json#"
|
21
24
|
}
|
22
25
|
},
|
23
26
|
"descriptiveResult": {
|
@@ -26,16 +29,16 @@
|
|
26
29
|
"$ref": "./descriptiveResult.json#"
|
27
30
|
}
|
28
31
|
},
|
29
|
-
"
|
32
|
+
"evaluationMethod": {
|
30
33
|
"type": "array",
|
31
34
|
"items": {
|
32
|
-
"$ref": "./
|
35
|
+
"$ref": "./evaluationMethod.json#"
|
33
36
|
}
|
34
37
|
},
|
35
|
-
"
|
38
|
+
"quantitativeResult": {
|
36
39
|
"type": "array",
|
37
40
|
"items": {
|
38
|
-
"$ref": "./
|
41
|
+
"$ref": "./quantitativeResult.json#"
|
39
42
|
}
|
40
43
|
}
|
41
44
|
}
|
data/schema/schema.json
CHANGED