├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── issue_template.md └── workflows │ ├── release.yml │ └── testing.yml ├── .gitignore ├── .npmignore ├── CHANGELOG ├── CONTRIBUTORS ├── LICENSE ├── Makefile ├── README.md ├── bin └── gen.cjs ├── docs ├── DEPRECATED.md ├── README.md ├── TESTING.md └── USAGE.md ├── index.d.cts ├── index.d.ts ├── index.html ├── logo ├── JSF_logo.png ├── JSF_logo_BW.png ├── favicon │ ├── favicon.ico │ ├── favicon05.gif │ ├── favicon05.jpg │ ├── favicon05.png │ └── favicon05.psd ├── logo.svg ├── logo_alpha_300dpi.png ├── logo_alt_colors.png ├── other │ ├── save-button-small.png │ └── save-button.png └── typescript-logo.png ├── main.js ├── package.json ├── patch.js ├── public ├── CNAME ├── favicon.ico ├── v1 │ ├── bundle.css │ ├── bundle.js │ ├── favicon.ico │ ├── index.html │ ├── vendor.css │ └── vendor.js ├── v2 │ ├── css │ │ └── app.css │ ├── favicon.ico │ ├── img │ │ ├── favicon.ico │ │ └── logo.svg │ ├── index.html │ ├── js │ │ └── app.js │ └── vendor │ │ ├── ace-builds │ │ └── src-min │ │ │ ├── ace.js │ │ │ ├── mode-json.js │ │ │ ├── theme-github.js │ │ │ └── worker-json.js │ │ └── ractive │ │ └── ractive.runtime.min.js └── v3 │ ├── css │ └── app.css │ ├── img │ ├── favicon.ico │ └── logo.svg │ ├── index.html │ ├── js │ └── app.js │ └── vendor │ ├── Faker │ └── build │ │ └── build │ │ └── faker.js │ ├── ace-builds │ └── src-min │ │ ├── ace.js │ │ ├── mode-json.js │ │ ├── mode-yaml.js │ │ ├── theme-github.js │ │ └── worker-json.js │ ├── chance │ └── dist │ │ └── chance.min.js │ ├── vue │ └── dist │ │ └── vue.runtime.js │ └── yaml.js │ └── dist │ └── yaml.js ├── src ├── lib │ ├── api │ │ ├── defaults.mjs │ │ ├── format.mjs │ │ └── option.mjs │ ├── class │ │ ├── Container.mjs │ │ ├── OptionRegistry.mjs │ │ └── Registry.mjs │ ├── core │ │ ├── buildResolveSchema.mjs │ │ ├── constants.mjs │ │ ├── error.mjs │ │ ├── infer.mjs │ │ ├── random.mjs │ │ ├── run.mjs │ │ ├── traverse.mjs │ │ └── utils.mjs │ ├── generators │ │ ├── boolean.mjs │ │ ├── coreFormat.mjs │ │ ├── date.mjs │ │ ├── dateTime.mjs │ │ ├── ipv4.mjs │ │ ├── null.mjs │ │ ├── thunk.mjs │ │ ├── time.mjs │ │ └── words.mjs │ ├── index.mjs │ ├── main.mjs │ ├── renderers │ │ ├── index.mjs │ │ ├── js.mjs │ │ └── yaml.mjs │ ├── types │ │ ├── array.mjs │ │ ├── boolean.mjs │ │ ├── index.mjs │ │ ├── integer.mjs │ │ ├── null.mjs │ │ ├── number.mjs │ │ ├── object.mjs │ │ └── string.mjs │ └── vendor.mjs ├── main.cjs.js ├── main.iife.js ├── main.mjs ├── shared.js └── web │ ├── css │ ├── _base │ │ ├── components │ │ │ ├── Ace.less │ │ │ ├── Tabs.less │ │ │ └── Toolbar.less │ │ ├── elements.less │ │ ├── layout.less │ │ ├── reset.less │ │ └── vars.less │ └── app.css │ ├── img │ └── sprites │ │ ├── gear.svg │ │ ├── github.svg │ │ ├── logo.svg │ │ ├── logo_only.svg │ │ └── plus.svg │ ├── index.pug │ └── js │ ├── app.js │ └── lib │ ├── Ace.svelte │ ├── Auth.svelte │ ├── Editor.svelte │ ├── Gists.svelte │ ├── Icon.svelte │ ├── Modal.svelte │ ├── Opts.svelte │ ├── Save.svelte │ ├── Toggle.svelte │ ├── gists.js │ └── util.js └── tests ├── .eslintrc ├── e2e └── vite.test.mjs ├── external-ref-files └── issue-571-external-ref.json ├── integration ├── _deps_check.mjs ├── commonjs.test.mjs ├── esmodules.test.mjs └── umdwrapper.test.mjs ├── pending ├── issue-658.json ├── issue-740.json ├── issue-742.json ├── issue-749.json ├── issue-772.json ├── issue-775.json └── issue-783.json ├── schema ├── core │ ├── define │ │ └── autoIncrement.json │ ├── dependencies.json │ ├── extend │ │ ├── chance-extend.mjs │ │ ├── chance.json │ │ ├── faker-extend.mjs │ │ ├── faker.json │ │ └── mockjs-extend.mjs │ ├── formats.json │ ├── formats │ │ └── semver.mjs │ ├── issues │ │ ├── all-of-one-of-all-of-nested-overlap-with-additional-props.json │ │ ├── all-of-one-of-all-of-nested-overlap.json │ │ ├── all-of-one-of-all-of-nested.json │ │ ├── all-of-one-of-nested.json │ │ ├── allOf.json │ │ ├── anonymous.json │ │ ├── chance-and-faker.json │ │ ├── chance.json │ │ ├── cleanup.json │ │ ├── errors.json │ │ ├── format.json │ │ ├── inferred.json │ │ ├── issue-115.json │ │ ├── issue-158.json │ │ ├── issue-171.json │ │ ├── issue-193.json │ │ ├── issue-224.json │ │ ├── issue-238.json │ │ ├── issue-252.json │ │ ├── issue-258.json │ │ ├── issue-274.json │ │ ├── issue-304.json │ │ ├── issue-329.json │ │ ├── issue-331.json │ │ ├── issue-336.json │ │ ├── issue-345.json │ │ ├── issue-369.json │ │ ├── issue-379.json │ │ ├── issue-386.json │ │ ├── issue-400.json │ │ ├── issue-405.json │ │ ├── issue-416.json │ │ ├── issue-419.json │ │ ├── issue-425.json │ │ ├── issue-427.json │ │ ├── issue-442.json │ │ ├── issue-443.json │ │ ├── issue-444.json │ │ ├── issue-446.json │ │ ├── issue-453.json │ │ ├── issue-455.json │ │ ├── issue-456.json │ │ ├── issue-458.json │ │ ├── issue-467.json │ │ ├── issue-470.json │ │ ├── issue-486.json │ │ ├── issue-489.json │ │ ├── issue-494.json │ │ ├── issue-498.json │ │ ├── issue-502.json │ │ ├── issue-504.json │ │ ├── issue-506.json │ │ ├── issue-508.json │ │ ├── issue-509.json │ │ ├── issue-510.json │ │ ├── issue-514.json │ │ ├── issue-529.json │ │ ├── issue-530.json │ │ ├── issue-539.json │ │ ├── issue-540.json │ │ ├── issue-558.json │ │ ├── issue-559.json │ │ ├── issue-565.json │ │ ├── issue-567.json │ │ ├── issue-568.json │ │ ├── issue-569.json │ │ ├── issue-57.json │ │ ├── issue-571.json │ │ ├── issue-584.json │ │ ├── issue-585.json │ │ ├── issue-586.json │ │ ├── issue-587.json │ │ ├── issue-592.json │ │ ├── issue-595.json │ │ ├── issue-601.json │ │ ├── issue-603.json │ │ ├── issue-610.json │ │ ├── issue-620.json │ │ ├── issue-622.json │ │ ├── issue-624.json │ │ ├── issue-625.json │ │ ├── issue-635.json │ │ ├── issue-642.json │ │ ├── issue-644.json │ │ ├── issue-687.json │ │ ├── issue-690.json │ │ ├── issue-693.json │ │ ├── issue-713.json │ │ ├── issue-715.json │ │ ├── issue-747.json │ │ ├── issue-749.json │ │ ├── nested-refs.json │ │ ├── number-min-greater-than-max.json │ │ ├── number-min-max.json │ │ └── reserved.json │ ├── jsonpath.json │ ├── keywords.json │ ├── option │ │ ├── alwaysFakeOptionals.json │ │ ├── alwaysFakeOptionalsNoAdditional.json │ │ ├── defaultInvalidTypeProduct.json │ │ ├── failOnInvalidType.json │ │ ├── falsy-defaults.json │ │ ├── ignoreProperties.json │ │ ├── ignoreProperties.mjs │ │ ├── minMaxDateTime.json │ │ ├── optionalsProbability.json │ │ ├── pruneProperties.json │ │ ├── random.json │ │ ├── refDepth.json │ │ ├── useDefaultValue.json │ │ └── useExamplesValue.json │ ├── primitives.json │ ├── references.json │ ├── refs │ │ ├── allOf.json │ │ └── sync.json │ ├── typecast │ │ ├── chance │ │ │ ├── bool.json │ │ │ └── year.json │ │ └── faker │ │ │ ├── address-latitude-longitude.json │ │ │ └── finance-amount.json │ └── types │ │ ├── array.json │ │ ├── integer.json │ │ ├── not.json │ │ ├── object.json │ │ └── string.json ├── helpers.mjs ├── main.spec.mjs └── validator.mjs └── unit ├── core ├── buildResolveSchema.test.mjs ├── infer.spec.mjs ├── randomGeneration.spec.mjs ├── traverse.spec.mjs └── utils.spec.mjs ├── generators ├── boolean.spec.mjs ├── ipv4.spec.mjs ├── null.spec.mjs └── number.spec.mjs └── renderers └── yaml.spec.mjs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/web 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/README.md -------------------------------------------------------------------------------- /bin/gen.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/bin/gen.cjs -------------------------------------------------------------------------------- /docs/DEPRECATED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/docs/DEPRECATED.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/docs/TESTING.md -------------------------------------------------------------------------------- /docs/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/docs/USAGE.md -------------------------------------------------------------------------------- /index.d.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/index.d.cts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/index.html -------------------------------------------------------------------------------- /logo/JSF_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/logo/JSF_logo.png -------------------------------------------------------------------------------- /logo/JSF_logo_BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/logo/JSF_logo_BW.png -------------------------------------------------------------------------------- /logo/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/logo/favicon/favicon.ico -------------------------------------------------------------------------------- /logo/favicon/favicon05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/logo/favicon/favicon05.gif -------------------------------------------------------------------------------- /logo/favicon/favicon05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/logo/favicon/favicon05.jpg -------------------------------------------------------------------------------- /logo/favicon/favicon05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/logo/favicon/favicon05.png -------------------------------------------------------------------------------- /logo/favicon/favicon05.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/logo/favicon/favicon05.psd -------------------------------------------------------------------------------- /logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/logo/logo.svg -------------------------------------------------------------------------------- /logo/logo_alpha_300dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/logo/logo_alpha_300dpi.png -------------------------------------------------------------------------------- /logo/logo_alt_colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/logo/logo_alt_colors.png -------------------------------------------------------------------------------- /logo/other/save-button-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/logo/other/save-button-small.png -------------------------------------------------------------------------------- /logo/other/save-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/logo/other/save-button.png -------------------------------------------------------------------------------- /logo/typescript-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/logo/typescript-logo.png -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/package.json -------------------------------------------------------------------------------- /patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/patch.js -------------------------------------------------------------------------------- /public/CNAME: -------------------------------------------------------------------------------- 1 | json-schema-faker.js.org 2 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/v1/bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v1/bundle.css -------------------------------------------------------------------------------- /public/v1/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v1/bundle.js -------------------------------------------------------------------------------- /public/v1/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v1/favicon.ico -------------------------------------------------------------------------------- /public/v1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v1/index.html -------------------------------------------------------------------------------- /public/v1/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v1/vendor.css -------------------------------------------------------------------------------- /public/v1/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v1/vendor.js -------------------------------------------------------------------------------- /public/v2/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v2/css/app.css -------------------------------------------------------------------------------- /public/v2/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v2/favicon.ico -------------------------------------------------------------------------------- /public/v2/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v2/img/favicon.ico -------------------------------------------------------------------------------- /public/v2/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v2/img/logo.svg -------------------------------------------------------------------------------- /public/v2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v2/index.html -------------------------------------------------------------------------------- /public/v2/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v2/js/app.js -------------------------------------------------------------------------------- /public/v2/vendor/ace-builds/src-min/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v2/vendor/ace-builds/src-min/ace.js -------------------------------------------------------------------------------- /public/v2/vendor/ace-builds/src-min/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v2/vendor/ace-builds/src-min/mode-json.js -------------------------------------------------------------------------------- /public/v2/vendor/ace-builds/src-min/theme-github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v2/vendor/ace-builds/src-min/theme-github.js -------------------------------------------------------------------------------- /public/v2/vendor/ace-builds/src-min/worker-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v2/vendor/ace-builds/src-min/worker-json.js -------------------------------------------------------------------------------- /public/v2/vendor/ractive/ractive.runtime.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v2/vendor/ractive/ractive.runtime.min.js -------------------------------------------------------------------------------- /public/v3/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/css/app.css -------------------------------------------------------------------------------- /public/v3/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/img/favicon.ico -------------------------------------------------------------------------------- /public/v3/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/img/logo.svg -------------------------------------------------------------------------------- /public/v3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/index.html -------------------------------------------------------------------------------- /public/v3/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/js/app.js -------------------------------------------------------------------------------- /public/v3/vendor/Faker/build/build/faker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/vendor/Faker/build/build/faker.js -------------------------------------------------------------------------------- /public/v3/vendor/ace-builds/src-min/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/vendor/ace-builds/src-min/ace.js -------------------------------------------------------------------------------- /public/v3/vendor/ace-builds/src-min/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/vendor/ace-builds/src-min/mode-json.js -------------------------------------------------------------------------------- /public/v3/vendor/ace-builds/src-min/mode-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/vendor/ace-builds/src-min/mode-yaml.js -------------------------------------------------------------------------------- /public/v3/vendor/ace-builds/src-min/theme-github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/vendor/ace-builds/src-min/theme-github.js -------------------------------------------------------------------------------- /public/v3/vendor/ace-builds/src-min/worker-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/vendor/ace-builds/src-min/worker-json.js -------------------------------------------------------------------------------- /public/v3/vendor/chance/dist/chance.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/vendor/chance/dist/chance.min.js -------------------------------------------------------------------------------- /public/v3/vendor/vue/dist/vue.runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/vendor/vue/dist/vue.runtime.js -------------------------------------------------------------------------------- /public/v3/vendor/yaml.js/dist/yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/public/v3/vendor/yaml.js/dist/yaml.js -------------------------------------------------------------------------------- /src/lib/api/defaults.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/api/defaults.mjs -------------------------------------------------------------------------------- /src/lib/api/format.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/api/format.mjs -------------------------------------------------------------------------------- /src/lib/api/option.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/api/option.mjs -------------------------------------------------------------------------------- /src/lib/class/Container.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/class/Container.mjs -------------------------------------------------------------------------------- /src/lib/class/OptionRegistry.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/class/OptionRegistry.mjs -------------------------------------------------------------------------------- /src/lib/class/Registry.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/class/Registry.mjs -------------------------------------------------------------------------------- /src/lib/core/buildResolveSchema.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/core/buildResolveSchema.mjs -------------------------------------------------------------------------------- /src/lib/core/constants.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/core/constants.mjs -------------------------------------------------------------------------------- /src/lib/core/error.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/core/error.mjs -------------------------------------------------------------------------------- /src/lib/core/infer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/core/infer.mjs -------------------------------------------------------------------------------- /src/lib/core/random.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/core/random.mjs -------------------------------------------------------------------------------- /src/lib/core/run.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/core/run.mjs -------------------------------------------------------------------------------- /src/lib/core/traverse.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/core/traverse.mjs -------------------------------------------------------------------------------- /src/lib/core/utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/core/utils.mjs -------------------------------------------------------------------------------- /src/lib/generators/boolean.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/generators/boolean.mjs -------------------------------------------------------------------------------- /src/lib/generators/coreFormat.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/generators/coreFormat.mjs -------------------------------------------------------------------------------- /src/lib/generators/date.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/generators/date.mjs -------------------------------------------------------------------------------- /src/lib/generators/dateTime.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/generators/dateTime.mjs -------------------------------------------------------------------------------- /src/lib/generators/ipv4.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/generators/ipv4.mjs -------------------------------------------------------------------------------- /src/lib/generators/null.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/generators/null.mjs -------------------------------------------------------------------------------- /src/lib/generators/thunk.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/generators/thunk.mjs -------------------------------------------------------------------------------- /src/lib/generators/time.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/generators/time.mjs -------------------------------------------------------------------------------- /src/lib/generators/words.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/generators/words.mjs -------------------------------------------------------------------------------- /src/lib/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/index.mjs -------------------------------------------------------------------------------- /src/lib/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/main.mjs -------------------------------------------------------------------------------- /src/lib/renderers/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/renderers/index.mjs -------------------------------------------------------------------------------- /src/lib/renderers/js.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/renderers/js.mjs -------------------------------------------------------------------------------- /src/lib/renderers/yaml.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/renderers/yaml.mjs -------------------------------------------------------------------------------- /src/lib/types/array.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/types/array.mjs -------------------------------------------------------------------------------- /src/lib/types/boolean.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/types/boolean.mjs -------------------------------------------------------------------------------- /src/lib/types/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/types/index.mjs -------------------------------------------------------------------------------- /src/lib/types/integer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/types/integer.mjs -------------------------------------------------------------------------------- /src/lib/types/null.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/types/null.mjs -------------------------------------------------------------------------------- /src/lib/types/number.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/types/number.mjs -------------------------------------------------------------------------------- /src/lib/types/object.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/types/object.mjs -------------------------------------------------------------------------------- /src/lib/types/string.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/types/string.mjs -------------------------------------------------------------------------------- /src/lib/vendor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/lib/vendor.mjs -------------------------------------------------------------------------------- /src/main.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/main.cjs.js -------------------------------------------------------------------------------- /src/main.iife.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/main.iife.js -------------------------------------------------------------------------------- /src/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/main.mjs -------------------------------------------------------------------------------- /src/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/shared.js -------------------------------------------------------------------------------- /src/web/css/_base/components/Ace.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/css/_base/components/Ace.less -------------------------------------------------------------------------------- /src/web/css/_base/components/Tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/css/_base/components/Tabs.less -------------------------------------------------------------------------------- /src/web/css/_base/components/Toolbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/css/_base/components/Toolbar.less -------------------------------------------------------------------------------- /src/web/css/_base/elements.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/css/_base/elements.less -------------------------------------------------------------------------------- /src/web/css/_base/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/css/_base/layout.less -------------------------------------------------------------------------------- /src/web/css/_base/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/css/_base/reset.less -------------------------------------------------------------------------------- /src/web/css/_base/vars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/css/_base/vars.less -------------------------------------------------------------------------------- /src/web/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/css/app.css -------------------------------------------------------------------------------- /src/web/img/sprites/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/img/sprites/gear.svg -------------------------------------------------------------------------------- /src/web/img/sprites/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/img/sprites/github.svg -------------------------------------------------------------------------------- /src/web/img/sprites/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/img/sprites/logo.svg -------------------------------------------------------------------------------- /src/web/img/sprites/logo_only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/img/sprites/logo_only.svg -------------------------------------------------------------------------------- /src/web/img/sprites/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/img/sprites/plus.svg -------------------------------------------------------------------------------- /src/web/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/index.pug -------------------------------------------------------------------------------- /src/web/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/js/app.js -------------------------------------------------------------------------------- /src/web/js/lib/Ace.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/js/lib/Ace.svelte -------------------------------------------------------------------------------- /src/web/js/lib/Auth.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/js/lib/Auth.svelte -------------------------------------------------------------------------------- /src/web/js/lib/Editor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/js/lib/Editor.svelte -------------------------------------------------------------------------------- /src/web/js/lib/Gists.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/js/lib/Gists.svelte -------------------------------------------------------------------------------- /src/web/js/lib/Icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/js/lib/Icon.svelte -------------------------------------------------------------------------------- /src/web/js/lib/Modal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/js/lib/Modal.svelte -------------------------------------------------------------------------------- /src/web/js/lib/Opts.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/js/lib/Opts.svelte -------------------------------------------------------------------------------- /src/web/js/lib/Save.svelte: -------------------------------------------------------------------------------- 1 | Not yet implemented... 2 | -------------------------------------------------------------------------------- /src/web/js/lib/Toggle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/js/lib/Toggle.svelte -------------------------------------------------------------------------------- /src/web/js/lib/gists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/js/lib/gists.js -------------------------------------------------------------------------------- /src/web/js/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/src/web/js/lib/util.js -------------------------------------------------------------------------------- /tests/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/.eslintrc -------------------------------------------------------------------------------- /tests/e2e/vite.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/e2e/vite.test.mjs -------------------------------------------------------------------------------- /tests/external-ref-files/issue-571-external-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/external-ref-files/issue-571-external-ref.json -------------------------------------------------------------------------------- /tests/integration/_deps_check.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/integration/_deps_check.mjs -------------------------------------------------------------------------------- /tests/integration/commonjs.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/integration/commonjs.test.mjs -------------------------------------------------------------------------------- /tests/integration/esmodules.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/integration/esmodules.test.mjs -------------------------------------------------------------------------------- /tests/integration/umdwrapper.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/integration/umdwrapper.test.mjs -------------------------------------------------------------------------------- /tests/pending/issue-658.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/pending/issue-658.json -------------------------------------------------------------------------------- /tests/pending/issue-740.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/pending/issue-740.json -------------------------------------------------------------------------------- /tests/pending/issue-742.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/pending/issue-742.json -------------------------------------------------------------------------------- /tests/pending/issue-749.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/pending/issue-749.json -------------------------------------------------------------------------------- /tests/pending/issue-772.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/pending/issue-772.json -------------------------------------------------------------------------------- /tests/pending/issue-775.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/pending/issue-775.json -------------------------------------------------------------------------------- /tests/pending/issue-783.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/pending/issue-783.json -------------------------------------------------------------------------------- /tests/schema/core/define/autoIncrement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/define/autoIncrement.json -------------------------------------------------------------------------------- /tests/schema/core/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/dependencies.json -------------------------------------------------------------------------------- /tests/schema/core/extend/chance-extend.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/extend/chance-extend.mjs -------------------------------------------------------------------------------- /tests/schema/core/extend/chance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/extend/chance.json -------------------------------------------------------------------------------- /tests/schema/core/extend/faker-extend.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/extend/faker-extend.mjs -------------------------------------------------------------------------------- /tests/schema/core/extend/faker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/extend/faker.json -------------------------------------------------------------------------------- /tests/schema/core/extend/mockjs-extend.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/extend/mockjs-extend.mjs -------------------------------------------------------------------------------- /tests/schema/core/formats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/formats.json -------------------------------------------------------------------------------- /tests/schema/core/formats/semver.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/formats/semver.mjs -------------------------------------------------------------------------------- /tests/schema/core/issues/all-of-one-of-all-of-nested-overlap-with-additional-props.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/all-of-one-of-all-of-nested-overlap-with-additional-props.json -------------------------------------------------------------------------------- /tests/schema/core/issues/all-of-one-of-all-of-nested-overlap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/all-of-one-of-all-of-nested-overlap.json -------------------------------------------------------------------------------- /tests/schema/core/issues/all-of-one-of-all-of-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/all-of-one-of-all-of-nested.json -------------------------------------------------------------------------------- /tests/schema/core/issues/all-of-one-of-nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/all-of-one-of-nested.json -------------------------------------------------------------------------------- /tests/schema/core/issues/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/allOf.json -------------------------------------------------------------------------------- /tests/schema/core/issues/anonymous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/anonymous.json -------------------------------------------------------------------------------- /tests/schema/core/issues/chance-and-faker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/chance-and-faker.json -------------------------------------------------------------------------------- /tests/schema/core/issues/chance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/chance.json -------------------------------------------------------------------------------- /tests/schema/core/issues/cleanup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/cleanup.json -------------------------------------------------------------------------------- /tests/schema/core/issues/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/errors.json -------------------------------------------------------------------------------- /tests/schema/core/issues/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/format.json -------------------------------------------------------------------------------- /tests/schema/core/issues/inferred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/inferred.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-115.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-115.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-158.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-158.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-171.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-171.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-193.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-193.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-224.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-224.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-238.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-238.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-252.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-252.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-258.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-258.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-274.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-274.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-304.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-304.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-329.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-329.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-331.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-331.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-336.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-345.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-345.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-369.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-369.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-379.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-379.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-386.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-386.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-400.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-400.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-405.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-405.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-416.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-419.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-425.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-425.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-427.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-427.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-442.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-442.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-443.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-443.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-444.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-444.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-446.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-446.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-453.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-453.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-455.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-455.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-456.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-456.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-458.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-458.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-467.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-467.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-470.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-470.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-486.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-486.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-489.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-489.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-494.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-494.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-498.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-498.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-502.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-502.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-504.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-504.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-506.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-506.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-508.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-508.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-509.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-510.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-510.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-514.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-514.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-529.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-529.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-530.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-530.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-539.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-539.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-540.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-540.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-558.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-558.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-559.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-559.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-565.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-565.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-567.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-567.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-568.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-568.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-569.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-569.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-57.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-571.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-571.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-584.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-584.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-585.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-585.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-586.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-586.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-587.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-587.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-592.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-592.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-595.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-595.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-601.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-601.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-603.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-603.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-610.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-610.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-620.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-620.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-622.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-622.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-624.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-624.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-625.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-625.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-635.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-635.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-642.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-642.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-644.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-644.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-687.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-687.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-690.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-690.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-693.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-693.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-713.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-713.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-715.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-715.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-747.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-747.json -------------------------------------------------------------------------------- /tests/schema/core/issues/issue-749.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/issue-749.json -------------------------------------------------------------------------------- /tests/schema/core/issues/nested-refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/nested-refs.json -------------------------------------------------------------------------------- /tests/schema/core/issues/number-min-greater-than-max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/number-min-greater-than-max.json -------------------------------------------------------------------------------- /tests/schema/core/issues/number-min-max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/number-min-max.json -------------------------------------------------------------------------------- /tests/schema/core/issues/reserved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/issues/reserved.json -------------------------------------------------------------------------------- /tests/schema/core/jsonpath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/jsonpath.json -------------------------------------------------------------------------------- /tests/schema/core/keywords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/keywords.json -------------------------------------------------------------------------------- /tests/schema/core/option/alwaysFakeOptionals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/alwaysFakeOptionals.json -------------------------------------------------------------------------------- /tests/schema/core/option/alwaysFakeOptionalsNoAdditional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/alwaysFakeOptionalsNoAdditional.json -------------------------------------------------------------------------------- /tests/schema/core/option/defaultInvalidTypeProduct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/defaultInvalidTypeProduct.json -------------------------------------------------------------------------------- /tests/schema/core/option/failOnInvalidType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/failOnInvalidType.json -------------------------------------------------------------------------------- /tests/schema/core/option/falsy-defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/falsy-defaults.json -------------------------------------------------------------------------------- /tests/schema/core/option/ignoreProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/ignoreProperties.json -------------------------------------------------------------------------------- /tests/schema/core/option/ignoreProperties.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/ignoreProperties.mjs -------------------------------------------------------------------------------- /tests/schema/core/option/minMaxDateTime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/minMaxDateTime.json -------------------------------------------------------------------------------- /tests/schema/core/option/optionalsProbability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/optionalsProbability.json -------------------------------------------------------------------------------- /tests/schema/core/option/pruneProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/pruneProperties.json -------------------------------------------------------------------------------- /tests/schema/core/option/random.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/random.json -------------------------------------------------------------------------------- /tests/schema/core/option/refDepth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/refDepth.json -------------------------------------------------------------------------------- /tests/schema/core/option/useDefaultValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/useDefaultValue.json -------------------------------------------------------------------------------- /tests/schema/core/option/useExamplesValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/option/useExamplesValue.json -------------------------------------------------------------------------------- /tests/schema/core/primitives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/primitives.json -------------------------------------------------------------------------------- /tests/schema/core/references.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/references.json -------------------------------------------------------------------------------- /tests/schema/core/refs/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/refs/allOf.json -------------------------------------------------------------------------------- /tests/schema/core/refs/sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/refs/sync.json -------------------------------------------------------------------------------- /tests/schema/core/typecast/chance/bool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/typecast/chance/bool.json -------------------------------------------------------------------------------- /tests/schema/core/typecast/chance/year.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/typecast/chance/year.json -------------------------------------------------------------------------------- /tests/schema/core/typecast/faker/address-latitude-longitude.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/typecast/faker/address-latitude-longitude.json -------------------------------------------------------------------------------- /tests/schema/core/typecast/faker/finance-amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/typecast/faker/finance-amount.json -------------------------------------------------------------------------------- /tests/schema/core/types/array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/types/array.json -------------------------------------------------------------------------------- /tests/schema/core/types/integer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/types/integer.json -------------------------------------------------------------------------------- /tests/schema/core/types/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/types/not.json -------------------------------------------------------------------------------- /tests/schema/core/types/object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/types/object.json -------------------------------------------------------------------------------- /tests/schema/core/types/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/core/types/string.json -------------------------------------------------------------------------------- /tests/schema/helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/helpers.mjs -------------------------------------------------------------------------------- /tests/schema/main.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/main.spec.mjs -------------------------------------------------------------------------------- /tests/schema/validator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/schema/validator.mjs -------------------------------------------------------------------------------- /tests/unit/core/buildResolveSchema.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/unit/core/buildResolveSchema.test.mjs -------------------------------------------------------------------------------- /tests/unit/core/infer.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/unit/core/infer.spec.mjs -------------------------------------------------------------------------------- /tests/unit/core/randomGeneration.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/unit/core/randomGeneration.spec.mjs -------------------------------------------------------------------------------- /tests/unit/core/traverse.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/unit/core/traverse.spec.mjs -------------------------------------------------------------------------------- /tests/unit/core/utils.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/unit/core/utils.spec.mjs -------------------------------------------------------------------------------- /tests/unit/generators/boolean.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/unit/generators/boolean.spec.mjs -------------------------------------------------------------------------------- /tests/unit/generators/ipv4.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/unit/generators/ipv4.spec.mjs -------------------------------------------------------------------------------- /tests/unit/generators/null.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/unit/generators/null.spec.mjs -------------------------------------------------------------------------------- /tests/unit/generators/number.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/unit/generators/number.spec.mjs -------------------------------------------------------------------------------- /tests/unit/renderers/yaml.spec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/json-schema-faker/json-schema-faker/HEAD/tests/unit/renderers/yaml.spec.mjs --------------------------------------------------------------------------------