├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── draft-00 ├── hyper-schema ├── json-ref ├── links └── schema ├── draft-01 ├── hyper-schema ├── json-ref ├── links └── schema ├── draft-02 ├── hyper-schema ├── json-ref ├── links └── schema ├── draft-03 ├── examples │ ├── address │ ├── calendar │ ├── card │ ├── geo │ └── interfaces ├── hyper-schema ├── json-ref ├── links └── schema ├── draft-04 ├── hyper-schema ├── links └── schema ├── draft-zyp-json-schema-03.xml ├── draft-zyp-json-schema-04.xml ├── lib ├── links.js └── validate.js ├── package.json └── test └── tests.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/SECURITY.md -------------------------------------------------------------------------------- /draft-00/hyper-schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-00/hyper-schema -------------------------------------------------------------------------------- /draft-00/json-ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-00/json-ref -------------------------------------------------------------------------------- /draft-00/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-00/links -------------------------------------------------------------------------------- /draft-00/schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-00/schema -------------------------------------------------------------------------------- /draft-01/hyper-schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-01/hyper-schema -------------------------------------------------------------------------------- /draft-01/json-ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-01/json-ref -------------------------------------------------------------------------------- /draft-01/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-01/links -------------------------------------------------------------------------------- /draft-01/schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-01/schema -------------------------------------------------------------------------------- /draft-02/hyper-schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-02/hyper-schema -------------------------------------------------------------------------------- /draft-02/json-ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-02/json-ref -------------------------------------------------------------------------------- /draft-02/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-02/links -------------------------------------------------------------------------------- /draft-02/schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-02/schema -------------------------------------------------------------------------------- /draft-03/examples/address: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-03/examples/address -------------------------------------------------------------------------------- /draft-03/examples/calendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-03/examples/calendar -------------------------------------------------------------------------------- /draft-03/examples/card: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-03/examples/card -------------------------------------------------------------------------------- /draft-03/examples/geo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-03/examples/geo -------------------------------------------------------------------------------- /draft-03/examples/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-03/examples/interfaces -------------------------------------------------------------------------------- /draft-03/hyper-schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-03/hyper-schema -------------------------------------------------------------------------------- /draft-03/json-ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-03/json-ref -------------------------------------------------------------------------------- /draft-03/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-03/links -------------------------------------------------------------------------------- /draft-03/schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-03/schema -------------------------------------------------------------------------------- /draft-04/hyper-schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-04/hyper-schema -------------------------------------------------------------------------------- /draft-04/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-04/links -------------------------------------------------------------------------------- /draft-04/schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-04/schema -------------------------------------------------------------------------------- /draft-zyp-json-schema-03.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-zyp-json-schema-03.xml -------------------------------------------------------------------------------- /draft-zyp-json-schema-04.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/draft-zyp-json-schema-04.xml -------------------------------------------------------------------------------- /lib/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/lib/links.js -------------------------------------------------------------------------------- /lib/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/lib/validate.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/package.json -------------------------------------------------------------------------------- /test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kriszyp/json-schema/HEAD/test/tests.js --------------------------------------------------------------------------------