├── .gitignore ├── .npmignore ├── .travis.yml ├── ISSUE_TEMPLATE.md ├── LICENSE ├── LICENSE.txt ├── README.md ├── lib ├── index.js ├── loaders │ └── file.js └── utils.js ├── package.json ├── readme.hbs └── test ├── custom-loaders.js ├── index.js ├── mocha.opts └── schemas ├── anyofref.expected.json ├── anyofref.json ├── api.links.json ├── api.linksref.expected.json ├── api.linksref.json ├── api.props.expected.json ├── api.props.json ├── apideeplink.expected.json ├── apideeplink.json ├── apinestedrefs.expected.json ├── apinestedrefs.json ├── app.json ├── arrayfileref.expected.json ├── arrayfileref.json ├── bar.json ├── basic.json ├── basicfileref.json ├── circular-bar.json ├── circular-file-root.expected.json ├── circular-file-root.json ├── circular-from-bar.json ├── circular-to-bar.json ├── circularlocalref.expected.json ├── circularlocalref.json ├── circularself.expected.json ├── circularself.json ├── common-definitions.json ├── components.yaml ├── customtype.expected.json ├── customtype.json ├── customunknown.expected.json ├── customunknown.json ├── cyclicaljs.json ├── domain.json ├── dot-key.expected.json ├── dot-key.json ├── dotprop.expected.json ├── dotprop.json ├── filerefarray-schema1.json ├── filerefarray-schema2.json ├── filerefarray.expected.json ├── filerefs.json ├── filerefswithhash.json ├── filerefswithpointer.expected.json ├── filerefswithpointer.json ├── filerefsyaml.json ├── folder1 ├── another.json ├── more │ └── more.json └── withinf1.json ├── foo.json ├── fooaction-response.json ├── foomodel.json ├── id.json ├── includesnullvalues.expected.json ├── includesnullvalues.json ├── issue12.expected.json ├── issue12.json ├── localandfilerefs.json ├── localrefs.expected.json ├── localrefs.json ├── login-request.json ├── mergeproperties.expected.json ├── mergeproperties.json ├── missing.expected.json ├── missing.json ├── nestedfolder.expected.json ├── nestedfolder.json ├── notcircularlocalref.expected.json ├── notcircularlocalref.json ├── null.expected.json ├── null.json ├── person.json ├── removidsmerging.expected.json ├── removidsmerging.json ├── toplevel.expected.json ├── toplevel.json ├── toplevelref.json ├── user.json ├── webrefs.expected.json ├── webrefs.json ├── webrefswithhash.expected.json ├── webrefswithhash.json ├── webrefswithpointer.expected.json ├── webrefswithpointer.json ├── webwithlocal.expected.json ├── webwithlocal.json └── widget-update.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/.travis.yml -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/loaders/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/lib/loaders/file.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/package.json -------------------------------------------------------------------------------- /readme.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/readme.hbs -------------------------------------------------------------------------------- /test/custom-loaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/custom-loaders.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 3000ms 2 | -------------------------------------------------------------------------------- /test/schemas/anyofref.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/anyofref.expected.json -------------------------------------------------------------------------------- /test/schemas/anyofref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/anyofref.json -------------------------------------------------------------------------------- /test/schemas/api.links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/api.links.json -------------------------------------------------------------------------------- /test/schemas/api.linksref.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/api.linksref.expected.json -------------------------------------------------------------------------------- /test/schemas/api.linksref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/api.linksref.json -------------------------------------------------------------------------------- /test/schemas/api.props.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/api.props.expected.json -------------------------------------------------------------------------------- /test/schemas/api.props.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/api.props.json -------------------------------------------------------------------------------- /test/schemas/apideeplink.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/apideeplink.expected.json -------------------------------------------------------------------------------- /test/schemas/apideeplink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/apideeplink.json -------------------------------------------------------------------------------- /test/schemas/apinestedrefs.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/apinestedrefs.expected.json -------------------------------------------------------------------------------- /test/schemas/apinestedrefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/apinestedrefs.json -------------------------------------------------------------------------------- /test/schemas/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/app.json -------------------------------------------------------------------------------- /test/schemas/arrayfileref.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/arrayfileref.expected.json -------------------------------------------------------------------------------- /test/schemas/arrayfileref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/arrayfileref.json -------------------------------------------------------------------------------- /test/schemas/bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/bar.json -------------------------------------------------------------------------------- /test/schemas/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/basic.json -------------------------------------------------------------------------------- /test/schemas/basicfileref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/basicfileref.json -------------------------------------------------------------------------------- /test/schemas/circular-bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/circular-bar.json -------------------------------------------------------------------------------- /test/schemas/circular-file-root.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/circular-file-root.expected.json -------------------------------------------------------------------------------- /test/schemas/circular-file-root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/circular-file-root.json -------------------------------------------------------------------------------- /test/schemas/circular-from-bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/circular-from-bar.json -------------------------------------------------------------------------------- /test/schemas/circular-to-bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/circular-to-bar.json -------------------------------------------------------------------------------- /test/schemas/circularlocalref.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/circularlocalref.expected.json -------------------------------------------------------------------------------- /test/schemas/circularlocalref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/circularlocalref.json -------------------------------------------------------------------------------- /test/schemas/circularself.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/circularself.expected.json -------------------------------------------------------------------------------- /test/schemas/circularself.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/circularself.json -------------------------------------------------------------------------------- /test/schemas/common-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/common-definitions.json -------------------------------------------------------------------------------- /test/schemas/components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/components.yaml -------------------------------------------------------------------------------- /test/schemas/customtype.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/customtype.expected.json -------------------------------------------------------------------------------- /test/schemas/customtype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/customtype.json -------------------------------------------------------------------------------- /test/schemas/customunknown.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/customunknown.expected.json -------------------------------------------------------------------------------- /test/schemas/customunknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/customunknown.json -------------------------------------------------------------------------------- /test/schemas/cyclicaljs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/cyclicaljs.json -------------------------------------------------------------------------------- /test/schemas/domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/domain.json -------------------------------------------------------------------------------- /test/schemas/dot-key.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/dot-key.expected.json -------------------------------------------------------------------------------- /test/schemas/dot-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/dot-key.json -------------------------------------------------------------------------------- /test/schemas/dotprop.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/dotprop.expected.json -------------------------------------------------------------------------------- /test/schemas/dotprop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/dotprop.json -------------------------------------------------------------------------------- /test/schemas/filerefarray-schema1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/filerefarray-schema1.json -------------------------------------------------------------------------------- /test/schemas/filerefarray-schema2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/filerefarray-schema2.json -------------------------------------------------------------------------------- /test/schemas/filerefarray.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/filerefarray.expected.json -------------------------------------------------------------------------------- /test/schemas/filerefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/filerefs.json -------------------------------------------------------------------------------- /test/schemas/filerefswithhash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/filerefswithhash.json -------------------------------------------------------------------------------- /test/schemas/filerefswithpointer.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/filerefswithpointer.expected.json -------------------------------------------------------------------------------- /test/schemas/filerefswithpointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/filerefswithpointer.json -------------------------------------------------------------------------------- /test/schemas/filerefsyaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/filerefsyaml.json -------------------------------------------------------------------------------- /test/schemas/folder1/another.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/folder1/another.json -------------------------------------------------------------------------------- /test/schemas/folder1/more/more.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/folder1/more/more.json -------------------------------------------------------------------------------- /test/schemas/folder1/withinf1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/folder1/withinf1.json -------------------------------------------------------------------------------- /test/schemas/foo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/foo.json -------------------------------------------------------------------------------- /test/schemas/fooaction-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/fooaction-response.json -------------------------------------------------------------------------------- /test/schemas/foomodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/foomodel.json -------------------------------------------------------------------------------- /test/schemas/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/id.json -------------------------------------------------------------------------------- /test/schemas/includesnullvalues.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/includesnullvalues.expected.json -------------------------------------------------------------------------------- /test/schemas/includesnullvalues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/includesnullvalues.json -------------------------------------------------------------------------------- /test/schemas/issue12.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/issue12.expected.json -------------------------------------------------------------------------------- /test/schemas/issue12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/issue12.json -------------------------------------------------------------------------------- /test/schemas/localandfilerefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/localandfilerefs.json -------------------------------------------------------------------------------- /test/schemas/localrefs.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/localrefs.expected.json -------------------------------------------------------------------------------- /test/schemas/localrefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/localrefs.json -------------------------------------------------------------------------------- /test/schemas/login-request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/login-request.json -------------------------------------------------------------------------------- /test/schemas/mergeproperties.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/mergeproperties.expected.json -------------------------------------------------------------------------------- /test/schemas/mergeproperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/mergeproperties.json -------------------------------------------------------------------------------- /test/schemas/missing.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/missing.expected.json -------------------------------------------------------------------------------- /test/schemas/missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/missing.json -------------------------------------------------------------------------------- /test/schemas/nestedfolder.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/nestedfolder.expected.json -------------------------------------------------------------------------------- /test/schemas/nestedfolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/nestedfolder.json -------------------------------------------------------------------------------- /test/schemas/notcircularlocalref.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/notcircularlocalref.expected.json -------------------------------------------------------------------------------- /test/schemas/notcircularlocalref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/notcircularlocalref.json -------------------------------------------------------------------------------- /test/schemas/null.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/null.expected.json -------------------------------------------------------------------------------- /test/schemas/null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/null.json -------------------------------------------------------------------------------- /test/schemas/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/person.json -------------------------------------------------------------------------------- /test/schemas/removidsmerging.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/removidsmerging.expected.json -------------------------------------------------------------------------------- /test/schemas/removidsmerging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/removidsmerging.json -------------------------------------------------------------------------------- /test/schemas/toplevel.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/toplevel.expected.json -------------------------------------------------------------------------------- /test/schemas/toplevel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/toplevel.json -------------------------------------------------------------------------------- /test/schemas/toplevelref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/toplevelref.json -------------------------------------------------------------------------------- /test/schemas/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/user.json -------------------------------------------------------------------------------- /test/schemas/webrefs.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/webrefs.expected.json -------------------------------------------------------------------------------- /test/schemas/webrefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/webrefs.json -------------------------------------------------------------------------------- /test/schemas/webrefswithhash.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/webrefswithhash.expected.json -------------------------------------------------------------------------------- /test/schemas/webrefswithhash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/webrefswithhash.json -------------------------------------------------------------------------------- /test/schemas/webrefswithpointer.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/webrefswithpointer.expected.json -------------------------------------------------------------------------------- /test/schemas/webrefswithpointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/webrefswithpointer.json -------------------------------------------------------------------------------- /test/schemas/webwithlocal.expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/webwithlocal.expected.json -------------------------------------------------------------------------------- /test/schemas/webwithlocal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/webwithlocal.json -------------------------------------------------------------------------------- /test/schemas/widget-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cvent/json-schema-deref-sync/HEAD/test/schemas/widget-update.json --------------------------------------------------------------------------------