adiwg-mdjson_schemas 2.8.1 → 2.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -1
- data/Gemfile.lock +32 -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 +82 -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 +10 -8
- 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: 75b8696e682f832e54fd13e14396286053d4e77b3784841a17efdb422966ec63
|
4
|
+
data.tar.gz: 932eff64135ff60d286c1c1d89907030c36b86e0df95f704439a09400925eeec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d7cab24d8d96207c88744c961c821fdf924174059c10497adeec98ebd8c2f601e618567864f0bd2ad804afbaea6c256e92ea686fdbaf716fe5975b6d3363104
|
7
|
+
data.tar.gz: 44967aaba13562bfc314dcd5bc6a3640dfd5ea081d33e29d0047f09ec5baa570ceb8970dbe12383725174454f351b494bcc944df1d4860c93ba9065a273c405a
|
data/.gitignore
CHANGED
data/Gemfile.lock
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
adiwg-mdjson_schemas (2.9.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
addressable (2.8.6)
|
10
|
+
public_suffix (>= 2.0.2, < 6.0)
|
11
|
+
adiwg-mdcodes (2.9.2)
|
12
|
+
json (~> 2.0)
|
13
|
+
json (2.7.1)
|
14
|
+
json-schema (2.8.1)
|
15
|
+
addressable (>= 2.4)
|
16
|
+
minitest (5.22.2)
|
17
|
+
public_suffix (5.0.4)
|
18
|
+
rake (13.1.0)
|
19
|
+
|
20
|
+
PLATFORMS
|
21
|
+
arm64-darwin-22
|
22
|
+
|
23
|
+
DEPENDENCIES
|
24
|
+
adiwg-mdcodes (= 2.9.2)
|
25
|
+
adiwg-mdjson_schemas!
|
26
|
+
bundler (~> 2)
|
27
|
+
json-schema (~> 2.8.1)
|
28
|
+
minitest (~> 5)
|
29
|
+
rake
|
30
|
+
|
31
|
+
BUNDLED WITH
|
32
|
+
2.4.21
|
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", "
|
25
|
+
spec.add_development_dependency "adiwg-mdcodes", "2.9.2"
|
26
26
|
end
|