JSON schemas for the ADIwg project and data metadata standard
Use with ruby-json-schema/json-schema to validate mdJSON records in Ruby.
Add this line to your application's Gemfile:
gem 'adiwg-json_schemas'
And then execute:
$ bundle
Or install it yourself as:
$ gem install adiwg-json_schemas
Install:
$ npm install mdjson-schemas
const Schemas = require('../resources/js/schemas.js');
The main schema file is schema/schema.json
. Load that file in your validator.
NOTE: The schemas use relative addresses for $ref
paths. If this causes a problem
with the ruby-json-schema/json-schema gem,
as a workaround you can pre-load all of the schemas by calling ADIWG::MdjsonSchemas::Utils::load_schemas
before validation.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Just making changes to make changes to something. Trying to resolve merge conflicts.