├── .editorconfig ├── .eslintrc ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── docs ├── api.md ├── external-libraries.md └── schema-to-instance-pointer.md ├── package.json ├── src ├── discovery.js ├── extract-sub-schema.js ├── get-default-input-values.js ├── get-template-data.js └── relative-json-pointer.js └── test ├── .eslintrc ├── specs ├── extract-sub-schema.spec.js ├── get-default-input-values.spec.js ├── get-template-data.spec.js ├── relative-json-pointer.spec.js └── test-cases │ └── spec-examples-discovery.spec.js └── test-cases └── spec-examples-discovery.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/README.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/external-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/docs/external-libraries.md -------------------------------------------------------------------------------- /docs/schema-to-instance-pointer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/docs/schema-to-instance-pointer.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/package.json -------------------------------------------------------------------------------- /src/discovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/src/discovery.js -------------------------------------------------------------------------------- /src/extract-sub-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/src/extract-sub-schema.js -------------------------------------------------------------------------------- /src/get-default-input-values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/src/get-default-input-values.js -------------------------------------------------------------------------------- /src/get-template-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/src/get-template-data.js -------------------------------------------------------------------------------- /src/relative-json-pointer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/src/relative-json-pointer.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/specs/extract-sub-schema.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/test/specs/extract-sub-schema.spec.js -------------------------------------------------------------------------------- /test/specs/get-default-input-values.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/test/specs/get-default-input-values.spec.js -------------------------------------------------------------------------------- /test/specs/get-template-data.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/test/specs/get-template-data.spec.js -------------------------------------------------------------------------------- /test/specs/relative-json-pointer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/test/specs/relative-json-pointer.spec.js -------------------------------------------------------------------------------- /test/specs/test-cases/spec-examples-discovery.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/test/specs/test-cases/spec-examples-discovery.spec.js -------------------------------------------------------------------------------- /test/test-cases/spec-examples-discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/json-hyper-schema/HEAD/test/test-cases/spec-examples-discovery.json --------------------------------------------------------------------------------