adiwg-mdjson_schemas 2.8.1 → 2.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/README.md +5 -9
- data/adiwg-json_schemas.gemspec +1 -1
- data/examples/rangeElementDescription.json +10 -0
- data/lib/adiwg/mdjson_schemas/version.rb +1 -1
- data/package-lock.json +562 -263
- data/package.json +3 -3
- data/schema/attribute.json +3 -0
- data/schema/conformanceResult.json +12 -6
- data/schema/coverageResult.json +27 -12
- data/schema/dataQuality.json +9 -4
- data/schema/dataQualityReport.json +75 -11
- data/schema/descriptiveResult.json +8 -4
- data/schema/evaluationMethod.json +30 -9
- data/schema/qualityMeasure.json +16 -2
- data/schema/qualityResultFile.json +26 -0
- data/schema/quantitativeResult.json +15 -6
- data/schema/rangeElementDescription.json +51 -0
- data/schema/schema.json +1 -1
- data/schema/standaloneQualityReport.json +9 -4
- metadata +7 -6
- data/bower.json +0 -29
- data/yarn.lock +0 -645
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fa2772ea2ae6a21d680e1405fb074828e78bc4f2c61f76aa1e0912f36080bd3b
|
4
|
+
data.tar.gz: 0f48447823dd6be78973116ff44ce4bf270e4c64a6cacf8e4cf9c3ca5efafe16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23d4b2a087a926628b04c61ebc9a27517aefecc2f53dfd15c29dd98d72eba3b96c8a696a376cb77b87cbbe10d137d7677a2b69cf5fa9469f9c1a0fa5e7b653d8
|
7
|
+
data.tar.gz: f8d5573196a9efd700b3d0bad92c1f90ae6fc3dbc46e7871bf231763c65fb4f416b5fb08f396fd4ed90f439473e611cc7e3e57d82185e1a8ae5e1ea937284493
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -5,7 +5,6 @@
|
|
5
5
|
|
6
6
|
# mdJson-schemas
|
7
7
|
|
8
|
-
|
9
8
|
JSON schemas for the ADIwg project and data metadata standard
|
10
9
|
|
11
10
|
## Ruby Gem
|
@@ -26,12 +25,6 @@ Or install it yourself as:
|
|
26
25
|
|
27
26
|
$ gem install adiwg-json_schemas
|
28
27
|
|
29
|
-
## Bower
|
30
|
-
|
31
|
-
Install:
|
32
|
-
|
33
|
-
$ bower install mdjson-schemas
|
34
|
-
|
35
28
|
## npm
|
36
29
|
|
37
30
|
Install:
|
@@ -40,10 +33,9 @@ Install:
|
|
40
33
|
|
41
34
|
const Schemas = require('../resources/js/schemas.js');
|
42
35
|
|
43
|
-
|
44
36
|
### Usage
|
45
37
|
|
46
|
-
The main schema file is `schema/schema.json`.
|
38
|
+
The main schema file is `schema/schema.json`. Load that file in your [validator](http://json-schema.org/implementations.html#libraries).
|
47
39
|
|
48
40
|
**NOTE**: The schemas use relative addresses for `$ref` paths. If this causes a problem
|
49
41
|
with the [ruby-json-schema/json-schema](https://github.com/ruby-json-schema/json-schema) gem,
|
@@ -56,3 +48,7 @@ as a workaround you can pre-load all of the schemas by calling `ADIWG::MdjsonSch
|
|
56
48
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
57
49
|
4. Push to the branch (`git push origin my-new-feature`)
|
58
50
|
5. Create new Pull Request
|
51
|
+
|
52
|
+
### Ignore anything below this line
|
53
|
+
|
54
|
+
Just making changes to make changes to something. Trying to resolve merge conflicts.
|
data/adiwg-json_schemas.gemspec
CHANGED
@@ -22,5 +22,5 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.add_development_dependency "rake", ">= 0"
|
23
23
|
spec.add_development_dependency "json-schema", "~> 2.8.1"
|
24
24
|
spec.add_development_dependency "minitest", "~>5"
|
25
|
-
spec.add_development_dependency "adiwg-mdcodes", "~> 2.
|
25
|
+
spec.add_development_dependency "adiwg-mdcodes", "~> 2.9.0"
|
26
26
|
end
|