├── .envrc ├── .gitattributes ├── .github ├── dependabot.yml ├── settings.yml └── workflows │ ├── continuous-integration.ncl │ ├── continuous-integration.yml │ ├── generated-workflow.ncl │ ├── update-flake-lock.yml │ ├── util.ncl │ └── workflow.ncl ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples ├── github-workflow │ ├── README.md │ ├── ci.ncl │ ├── github-workflow.json │ ├── github-workflow.schema.ncl │ └── github │ │ ├── matrix.ncl │ │ └── setup-steps.ncl └── simple-schema │ ├── README.md │ ├── schema-test.ncl │ ├── test.schema.json │ └── test.schema.ncl ├── flake.lock ├── flake.nix ├── lib ├── Nickel-pkg.ncl ├── arrays.ncl ├── main.ncl ├── numbers.ncl ├── records.ncl └── strings.ncl ├── src ├── contract.rs ├── extract.rs ├── lib.rs ├── main.rs ├── object.rs ├── references.rs ├── schema.rs ├── transform.rs ├── traverse.rs ├── typ.rs └── utils.rs ├── tests ├── integration.rs ├── integration │ └── inputs │ │ ├── record_contract.json │ │ └── shadowing.json ├── json_schema_test_suite_test.rs ├── snapshots │ ├── integration__tests__integration__inputs__record_contract.json.snap │ ├── integration__tests__integration__inputs__shadowing.json.snap │ ├── transforms__tests__transforms__inputs__inline_defs.json.snap │ └── transforms__tests__transforms__inputs__nested_all_of.json.snap ├── transforms.rs └── transforms │ └── inputs │ ├── inline_defs.json │ └── nested_all_of.json └── vendor └── JSON-Schema-Test-Suite ├── .editorconfig ├── .github ├── CODEOWNERS └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── jsonschema_suite ├── output-test-schema.json ├── output-tests ├── README.md ├── draft-next │ ├── content │ │ ├── general.json │ │ ├── readOnly.json │ │ └── type.json │ └── output-schema.json ├── draft2019-09 │ ├── content │ │ ├── escape.json │ │ ├── general.json │ │ ├── readOnly.json │ │ └── type.json │ └── output-schema.json └── draft2020-12 │ ├── content │ ├── escape.json │ ├── general.json │ ├── readOnly.json │ └── type.json │ └── output-schema.json ├── package.json ├── remotes ├── baseUriChange │ └── folderInteger.json ├── baseUriChangeFolder │ └── folderInteger.json ├── baseUriChangeFolderInSubschema │ └── folderInteger.json ├── different-id-ref-string.json ├── draft-next │ ├── baseUriChange │ │ └── folderInteger.json │ ├── baseUriChangeFolder │ │ └── folderInteger.json │ ├── baseUriChangeFolderInSubschema │ │ └── folderInteger.json │ ├── extendible-dynamic-ref.json │ ├── format-assertion-false.json │ ├── format-assertion-true.json │ ├── integer.json │ ├── locationIndependentIdentifier.json │ ├── metaschema-no-validation.json │ ├── metaschema-optional-vocabulary.json │ ├── name-defs.json │ ├── nested │ │ ├── foo-ref-string.json │ │ └── string.json │ ├── ref-and-defs.json │ ├── subSchemas-defs.json │ ├── subSchemas.json │ └── tree.json ├── draft2019-09 │ ├── baseUriChange │ │ └── folderInteger.json │ ├── baseUriChangeFolder │ │ └── folderInteger.json │ ├── baseUriChangeFolderInSubschema │ │ └── folderInteger.json │ ├── dependentRequired.json │ ├── extendible-dynamic-ref.json │ ├── ignore-prefixItems.json │ ├── integer.json │ ├── locationIndependentIdentifier.json │ ├── metaschema-no-validation.json │ ├── metaschema-optional-vocabulary.json │ ├── name-defs.json │ ├── nested │ │ ├── foo-ref-string.json │ │ └── string.json │ ├── ref-and-defs.json │ ├── subSchemas-defs.json │ ├── subSchemas.json │ └── tree.json ├── draft2020-12 │ ├── baseUriChange │ │ └── folderInteger.json │ ├── baseUriChangeFolder │ │ └── folderInteger.json │ ├── baseUriChangeFolderInSubschema │ │ └── folderInteger.json │ ├── extendible-dynamic-ref.json │ ├── format-assertion-false.json │ ├── format-assertion-true.json │ ├── integer.json │ ├── locationIndependentIdentifier.json │ ├── metaschema-no-validation.json │ ├── metaschema-optional-vocabulary.json │ ├── name-defs.json │ ├── nested │ │ ├── foo-ref-string.json │ │ └── string.json │ ├── prefixItems.json │ ├── ref-and-defs.json │ ├── subSchemas-defs.json │ ├── subSchemas.json │ └── tree.json ├── draft7 │ └── ignore-dependentRequired.json ├── extendible-dynamic-ref.json ├── integer.json ├── locationIndependentIdentifier.json ├── locationIndependentIdentifierDraft4.json ├── locationIndependentIdentifierPre2019.json ├── name-defs.json ├── name.json ├── nested-absolute-ref-to-string.json ├── nested │ ├── foo-ref-string.json │ └── string.json ├── ref-and-definitions.json ├── ref-and-defs.json ├── subSchemas-defs.json ├── subSchemas.json ├── tree.json └── urn-ref-string.json ├── test-schema.json ├── tests ├── draft-next │ ├── additionalProperties.json │ ├── allOf.json │ ├── anchor.json │ ├── anyOf.json │ ├── boolean_schema.json │ ├── const.json │ ├── contains.json │ ├── content.json │ ├── default.json │ ├── defs.json │ ├── dependentRequired.json │ ├── dependentSchemas.json │ ├── dynamicRef.json │ ├── enum.json │ ├── exclusiveMaximum.json │ ├── exclusiveMinimum.json │ ├── format.json │ ├── id.json │ ├── if-then-else.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxContains.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maxProperties.json │ ├── maximum.json │ ├── minContains.json │ ├── minItems.json │ ├── minLength.json │ ├── minProperties.json │ ├── minimum.json │ ├── multipleOf.json │ ├── not.json │ ├── oneOf.json │ ├── optional │ │ ├── bignum.json │ │ ├── dependencies-compatibility.json │ │ ├── ecmascript-regex.json │ │ ├── float-overflow.json │ │ ├── format-assertion.json │ │ ├── format │ │ │ ├── date-time.json │ │ │ ├── date.json │ │ │ ├── duration.json │ │ │ ├── email.json │ │ │ ├── hostname.json │ │ │ ├── idn-email.json │ │ │ ├── idn-hostname.json │ │ │ ├── ipv4.json │ │ │ ├── ipv6.json │ │ │ ├── iri-reference.json │ │ │ ├── iri.json │ │ │ ├── json-pointer.json │ │ │ ├── regex.json │ │ │ ├── relative-json-pointer.json │ │ │ ├── time.json │ │ │ ├── uri-reference.json │ │ │ ├── uri-template.json │ │ │ ├── uri.json │ │ │ └── uuid.json │ │ ├── non-bmp-regex.json │ │ └── refOfUnknownKeyword.json │ ├── pattern.json │ ├── patternProperties.json │ ├── prefixItems.json │ ├── properties.json │ ├── propertyDependencies.json │ ├── propertyNames.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ ├── unevaluatedItems.json │ ├── unevaluatedProperties.json │ ├── uniqueItems.json │ ├── unknownKeyword.json │ └── vocabulary.json ├── draft2019-09 │ ├── additionalItems.json │ ├── additionalProperties.json │ ├── allOf.json │ ├── anchor.json │ ├── anyOf.json │ ├── boolean_schema.json │ ├── const.json │ ├── contains.json │ ├── content.json │ ├── default.json │ ├── defs.json │ ├── dependentRequired.json │ ├── dependentSchemas.json │ ├── enum.json │ ├── exclusiveMaximum.json │ ├── exclusiveMinimum.json │ ├── format.json │ ├── id.json │ ├── if-then-else.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxContains.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maxProperties.json │ ├── maximum.json │ ├── minContains.json │ ├── minItems.json │ ├── minLength.json │ ├── minProperties.json │ ├── minimum.json │ ├── multipleOf.json │ ├── not.json │ ├── oneOf.json │ ├── optional │ │ ├── bignum.json │ │ ├── cross-draft.json │ │ ├── dependencies-compatibility.json │ │ ├── ecmascript-regex.json │ │ ├── float-overflow.json │ │ ├── format │ │ │ ├── date-time.json │ │ │ ├── date.json │ │ │ ├── duration.json │ │ │ ├── email.json │ │ │ ├── hostname.json │ │ │ ├── idn-email.json │ │ │ ├── idn-hostname.json │ │ │ ├── ipv4.json │ │ │ ├── ipv6.json │ │ │ ├── iri-reference.json │ │ │ ├── iri.json │ │ │ ├── json-pointer.json │ │ │ ├── regex.json │ │ │ ├── relative-json-pointer.json │ │ │ ├── time.json │ │ │ ├── unknown.json │ │ │ ├── uri-reference.json │ │ │ ├── uri-template.json │ │ │ ├── uri.json │ │ │ └── uuid.json │ │ ├── no-schema.json │ │ ├── non-bmp-regex.json │ │ └── refOfUnknownKeyword.json │ ├── pattern.json │ ├── patternProperties.json │ ├── properties.json │ ├── propertyNames.json │ ├── recursiveRef.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ ├── unevaluatedItems.json │ ├── unevaluatedProperties.json │ ├── uniqueItems.json │ ├── unknownKeyword.json │ └── vocabulary.json ├── draft2020-12 │ ├── additionalProperties.json │ ├── allOf.json │ ├── anchor.json │ ├── anyOf.json │ ├── boolean_schema.json │ ├── const.json │ ├── contains.json │ ├── content.json │ ├── default.json │ ├── defs.json │ ├── dependentRequired.json │ ├── dependentSchemas.json │ ├── dynamicRef.json │ ├── enum.json │ ├── exclusiveMaximum.json │ ├── exclusiveMinimum.json │ ├── format.json │ ├── id.json │ ├── if-then-else.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxContains.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maxProperties.json │ ├── maximum.json │ ├── minContains.json │ ├── minItems.json │ ├── minLength.json │ ├── minProperties.json │ ├── minimum.json │ ├── multipleOf.json │ ├── not.json │ ├── oneOf.json │ ├── optional │ │ ├── bignum.json │ │ ├── cross-draft.json │ │ ├── dependencies-compatibility.json │ │ ├── ecmascript-regex.json │ │ ├── float-overflow.json │ │ ├── format-assertion.json │ │ ├── format │ │ │ ├── date-time.json │ │ │ ├── date.json │ │ │ ├── duration.json │ │ │ ├── email.json │ │ │ ├── hostname.json │ │ │ ├── idn-email.json │ │ │ ├── idn-hostname.json │ │ │ ├── ipv4.json │ │ │ ├── ipv6.json │ │ │ ├── iri-reference.json │ │ │ ├── iri.json │ │ │ ├── json-pointer.json │ │ │ ├── regex.json │ │ │ ├── relative-json-pointer.json │ │ │ ├── time.json │ │ │ ├── unknown.json │ │ │ ├── uri-reference.json │ │ │ ├── uri-template.json │ │ │ ├── uri.json │ │ │ └── uuid.json │ │ ├── no-schema.json │ │ ├── non-bmp-regex.json │ │ └── refOfUnknownKeyword.json │ ├── pattern.json │ ├── patternProperties.json │ ├── prefixItems.json │ ├── properties.json │ ├── propertyNames.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ ├── unevaluatedItems.json │ ├── unevaluatedProperties.json │ ├── uniqueItems.json │ ├── unknownKeyword.json │ └── vocabulary.json ├── draft3 │ ├── additionalItems.json │ ├── additionalProperties.json │ ├── default.json │ ├── dependencies.json │ ├── disallow.json │ ├── divisibleBy.json │ ├── enum.json │ ├── extends.json │ ├── format.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maximum.json │ ├── minItems.json │ ├── minLength.json │ ├── minimum.json │ ├── optional │ │ ├── bignum.json │ │ ├── ecmascript-regex.json │ │ ├── format │ │ │ ├── color.json │ │ │ ├── date-time.json │ │ │ ├── date.json │ │ │ ├── email.json │ │ │ ├── host-name.json │ │ │ ├── ip-address.json │ │ │ ├── ipv6.json │ │ │ ├── regex.json │ │ │ ├── time.json │ │ │ └── uri.json │ │ ├── non-bmp-regex.json │ │ └── zeroTerminatedFloats.json │ ├── pattern.json │ ├── patternProperties.json │ ├── properties.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ └── uniqueItems.json ├── draft4 │ ├── additionalItems.json │ ├── additionalProperties.json │ ├── allOf.json │ ├── anyOf.json │ ├── default.json │ ├── definitions.json │ ├── dependencies.json │ ├── enum.json │ ├── format.json │ ├── id.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maxProperties.json │ ├── maximum.json │ ├── minItems.json │ ├── minLength.json │ ├── minProperties.json │ ├── minimum.json │ ├── multipleOf.json │ ├── not.json │ ├── oneOf.json │ ├── optional │ │ ├── bignum.json │ │ ├── ecmascript-regex.json │ │ ├── float-overflow.json │ │ ├── format │ │ │ ├── date-time.json │ │ │ ├── email.json │ │ │ ├── hostname.json │ │ │ ├── ipv4.json │ │ │ ├── ipv6.json │ │ │ ├── unknown.json │ │ │ └── uri.json │ │ ├── non-bmp-regex.json │ │ └── zeroTerminatedFloats.json │ ├── pattern.json │ ├── patternProperties.json │ ├── properties.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ └── uniqueItems.json ├── draft6 │ ├── additionalItems.json │ ├── additionalProperties.json │ ├── allOf.json │ ├── anyOf.json │ ├── boolean_schema.json │ ├── const.json │ ├── contains.json │ ├── default.json │ ├── definitions.json │ ├── dependencies.json │ ├── enum.json │ ├── exclusiveMaximum.json │ ├── exclusiveMinimum.json │ ├── format.json │ ├── id.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maxProperties.json │ ├── maximum.json │ ├── minItems.json │ ├── minLength.json │ ├── minProperties.json │ ├── minimum.json │ ├── multipleOf.json │ ├── not.json │ ├── oneOf.json │ ├── optional │ │ ├── bignum.json │ │ ├── ecmascript-regex.json │ │ ├── float-overflow.json │ │ ├── format │ │ │ ├── date-time.json │ │ │ ├── email.json │ │ │ ├── hostname.json │ │ │ ├── ipv4.json │ │ │ ├── ipv6.json │ │ │ ├── json-pointer.json │ │ │ ├── unknown.json │ │ │ ├── uri-reference.json │ │ │ ├── uri-template.json │ │ │ └── uri.json │ │ └── non-bmp-regex.json │ ├── pattern.json │ ├── patternProperties.json │ ├── properties.json │ ├── propertyNames.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ ├── uniqueItems.json │ └── unknownKeyword.json ├── draft7 │ ├── additionalItems.json │ ├── additionalProperties.json │ ├── allOf.json │ ├── anyOf.json │ ├── boolean_schema.json │ ├── const.json │ ├── contains.json │ ├── default.json │ ├── definitions.json │ ├── dependencies.json │ ├── enum.json │ ├── exclusiveMaximum.json │ ├── exclusiveMinimum.json │ ├── format.json │ ├── id.json │ ├── if-then-else.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maxProperties.json │ ├── maximum.json │ ├── minItems.json │ ├── minLength.json │ ├── minProperties.json │ ├── minimum.json │ ├── multipleOf.json │ ├── not.json │ ├── oneOf.json │ ├── optional │ │ ├── bignum.json │ │ ├── content.json │ │ ├── cross-draft.json │ │ ├── ecmascript-regex.json │ │ ├── float-overflow.json │ │ ├── format │ │ │ ├── date-time.json │ │ │ ├── date.json │ │ │ ├── email.json │ │ │ ├── hostname.json │ │ │ ├── idn-email.json │ │ │ ├── idn-hostname.json │ │ │ ├── ipv4.json │ │ │ ├── ipv6.json │ │ │ ├── iri-reference.json │ │ │ ├── iri.json │ │ │ ├── json-pointer.json │ │ │ ├── regex.json │ │ │ ├── relative-json-pointer.json │ │ │ ├── time.json │ │ │ ├── unknown.json │ │ │ ├── uri-reference.json │ │ │ ├── uri-template.json │ │ │ └── uri.json │ │ └── non-bmp-regex.json │ ├── pattern.json │ ├── patternProperties.json │ ├── properties.json │ ├── propertyNames.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ ├── uniqueItems.json │ └── unknownKeyword.json └── latest └── tox.ini /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/.github/workflows/continuous-integration.ncl -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/generated-workflow.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/.github/workflows/generated-workflow.ncl -------------------------------------------------------------------------------- /.github/workflows/update-flake-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/.github/workflows/update-flake-lock.yml -------------------------------------------------------------------------------- /.github/workflows/util.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/.github/workflows/util.ncl -------------------------------------------------------------------------------- /.github/workflows/workflow.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/.github/workflows/workflow.ncl -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /result 2 | /target 3 | 4 | .direnv/ 5 | .helix/ 6 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/README.md -------------------------------------------------------------------------------- /examples/github-workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/examples/github-workflow/README.md -------------------------------------------------------------------------------- /examples/github-workflow/ci.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/examples/github-workflow/ci.ncl -------------------------------------------------------------------------------- /examples/github-workflow/github-workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/examples/github-workflow/github-workflow.json -------------------------------------------------------------------------------- /examples/github-workflow/github-workflow.schema.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/examples/github-workflow/github-workflow.schema.ncl -------------------------------------------------------------------------------- /examples/github-workflow/github/matrix.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/examples/github-workflow/github/matrix.ncl -------------------------------------------------------------------------------- /examples/github-workflow/github/setup-steps.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/examples/github-workflow/github/setup-steps.ncl -------------------------------------------------------------------------------- /examples/simple-schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/examples/simple-schema/README.md -------------------------------------------------------------------------------- /examples/simple-schema/schema-test.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/examples/simple-schema/schema-test.ncl -------------------------------------------------------------------------------- /examples/simple-schema/test.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/examples/simple-schema/test.schema.json -------------------------------------------------------------------------------- /examples/simple-schema/test.schema.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/examples/simple-schema/test.schema.ncl -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/flake.nix -------------------------------------------------------------------------------- /lib/Nickel-pkg.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/lib/Nickel-pkg.ncl -------------------------------------------------------------------------------- /lib/arrays.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/lib/arrays.ncl -------------------------------------------------------------------------------- /lib/main.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/lib/main.ncl -------------------------------------------------------------------------------- /lib/numbers.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/lib/numbers.ncl -------------------------------------------------------------------------------- /lib/records.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/lib/records.ncl -------------------------------------------------------------------------------- /lib/strings.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/lib/strings.ncl -------------------------------------------------------------------------------- /src/contract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/src/contract.rs -------------------------------------------------------------------------------- /src/extract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/src/extract.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/src/object.rs -------------------------------------------------------------------------------- /src/references.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/src/references.rs -------------------------------------------------------------------------------- /src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/src/schema.rs -------------------------------------------------------------------------------- /src/transform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/src/transform.rs -------------------------------------------------------------------------------- /src/traverse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/src/traverse.rs -------------------------------------------------------------------------------- /src/typ.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/src/typ.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/src/utils.rs -------------------------------------------------------------------------------- /tests/integration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/tests/integration.rs -------------------------------------------------------------------------------- /tests/integration/inputs/record_contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/tests/integration/inputs/record_contract.json -------------------------------------------------------------------------------- /tests/integration/inputs/shadowing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/tests/integration/inputs/shadowing.json -------------------------------------------------------------------------------- /tests/json_schema_test_suite_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/tests/json_schema_test_suite_test.rs -------------------------------------------------------------------------------- /tests/snapshots/integration__tests__integration__inputs__record_contract.json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/tests/snapshots/integration__tests__integration__inputs__record_contract.json.snap -------------------------------------------------------------------------------- /tests/snapshots/integration__tests__integration__inputs__shadowing.json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/tests/snapshots/integration__tests__integration__inputs__shadowing.json.snap -------------------------------------------------------------------------------- /tests/snapshots/transforms__tests__transforms__inputs__inline_defs.json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/tests/snapshots/transforms__tests__transforms__inputs__inline_defs.json.snap -------------------------------------------------------------------------------- /tests/snapshots/transforms__tests__transforms__inputs__nested_all_of.json.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/tests/snapshots/transforms__tests__transforms__inputs__nested_all_of.json.snap -------------------------------------------------------------------------------- /tests/transforms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/tests/transforms.rs -------------------------------------------------------------------------------- /tests/transforms/inputs/inline_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/tests/transforms/inputs/inline_defs.json -------------------------------------------------------------------------------- /tests/transforms/inputs/nested_all_of.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/tests/transforms/inputs/nested_all_of.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/.editorconfig: -------------------------------------------------------------------------------- 1 | insert_final_newline = true 2 | -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/.github/CODEOWNERS -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/.github/workflows/ci.yml -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/.gitignore -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/LICENSE -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/README.md -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/bin/jsonschema_suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/bin/jsonschema_suite -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-test-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-test-schema.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/README.md -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft-next/content/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft-next/content/general.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft-next/content/readOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft-next/content/readOnly.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft-next/content/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft-next/content/type.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft-next/output-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft-next/output-schema.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/escape.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/general.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/readOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/readOnly.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/type.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft2019-09/output-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft2019-09/output-schema.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/escape.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/general.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/readOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/readOnly.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/type.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/output-tests/draft2020-12/output-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/output-tests/draft2020-12/output-schema.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/package.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/baseUriChange/folderInteger.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/baseUriChangeFolder/folderInteger.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/baseUriChangeFolderInSubschema/folderInteger.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/different-id-ref-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/different-id-ref-string.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/baseUriChange/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/baseUriChange/folderInteger.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/baseUriChangeFolder/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/baseUriChangeFolder/folderInteger.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/baseUriChangeFolderInSubschema/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/baseUriChangeFolderInSubschema/folderInteger.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/extendible-dynamic-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/extendible-dynamic-ref.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/format-assertion-false.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/format-assertion-false.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/format-assertion-true.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/format-assertion-true.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/integer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/integer.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/locationIndependentIdentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/locationIndependentIdentifier.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/metaschema-no-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/metaschema-no-validation.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/metaschema-optional-vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/metaschema-optional-vocabulary.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/name-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/name-defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/nested/foo-ref-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/nested/foo-ref-string.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/nested/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/nested/string.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/ref-and-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/ref-and-defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/subSchemas-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/subSchemas-defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/subSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/subSchemas.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft-next/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft-next/tree.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/baseUriChange/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/baseUriChange/folderInteger.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/baseUriChangeFolder/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/baseUriChangeFolder/folderInteger.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/baseUriChangeFolderInSubschema/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/baseUriChangeFolderInSubschema/folderInteger.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/dependentRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/dependentRequired.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/extendible-dynamic-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/extendible-dynamic-ref.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/ignore-prefixItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/ignore-prefixItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/integer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/integer.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/locationIndependentIdentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/locationIndependentIdentifier.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/metaschema-no-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/metaschema-no-validation.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/metaschema-optional-vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/metaschema-optional-vocabulary.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/name-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/name-defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/nested/foo-ref-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/nested/foo-ref-string.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/nested/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/nested/string.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/ref-and-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/ref-and-defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/subSchemas-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/subSchemas-defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/subSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/subSchemas.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2019-09/tree.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/baseUriChange/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/baseUriChange/folderInteger.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/baseUriChangeFolder/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/baseUriChangeFolder/folderInteger.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/baseUriChangeFolderInSubschema/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/baseUriChangeFolderInSubschema/folderInteger.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/extendible-dynamic-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/extendible-dynamic-ref.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/format-assertion-false.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/format-assertion-false.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/format-assertion-true.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/format-assertion-true.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/integer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/integer.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/locationIndependentIdentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/locationIndependentIdentifier.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/metaschema-no-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/metaschema-no-validation.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/metaschema-optional-vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/metaschema-optional-vocabulary.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/name-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/name-defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/nested/foo-ref-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/nested/foo-ref-string.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/nested/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/nested/string.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/prefixItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/prefixItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/ref-and-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/ref-and-defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/subSchemas-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/subSchemas-defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/subSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/subSchemas.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft2020-12/tree.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/draft7/ignore-dependentRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/draft7/ignore-dependentRequired.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/extendible-dynamic-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/extendible-dynamic-ref.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/integer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/locationIndependentIdentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/locationIndependentIdentifier.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/locationIndependentIdentifierDraft4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/locationIndependentIdentifierDraft4.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/locationIndependentIdentifierPre2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/locationIndependentIdentifierPre2019.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/name-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/name-defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/name.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/nested-absolute-ref-to-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/nested-absolute-ref-to-string.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/nested/foo-ref-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/nested/foo-ref-string.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/nested/string.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "string" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/ref-and-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/ref-and-definitions.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/ref-and-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/ref-and-defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/subSchemas-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/subSchemas-defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/subSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/subSchemas.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/tree.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/remotes/urn-ref-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/remotes/urn-ref-string.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/test-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/test-schema.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/additionalProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/allOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/anchor.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/anyOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/boolean_schema.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/const.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/contains.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/content.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/default.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/dependentRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/dependentRequired.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/dependentSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/dependentSchemas.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/dynamicRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/dynamicRef.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/enum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/exclusiveMaximum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/exclusiveMinimum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/format.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/id.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/if-then-else.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/if-then-else.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/infinite-loop-detection.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/items.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/maxContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/maxContains.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/maxItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/maxLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/maxProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/maximum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/minContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/minContains.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/minItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/minLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/minProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/minimum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/multipleOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/not.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/oneOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/bignum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/dependencies-compatibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/dependencies-compatibility.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/float-overflow.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format-assertion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format-assertion.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/date-time.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/date.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/duration.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/email.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/hostname.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/idn-email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/idn-email.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/idn-hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/idn-hostname.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/ipv4.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/ipv6.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/iri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/iri-reference.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/iri.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/json-pointer.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/relative-json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/relative-json-pointer.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/time.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uri-reference.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uri-template.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uri.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uuid.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/refOfUnknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/optional/refOfUnknownKeyword.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/pattern.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/patternProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/prefixItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/prefixItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/properties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/propertyDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/propertyDependencies.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/propertyNames.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/ref.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/refRemote.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/required.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/type.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/unevaluatedItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/unevaluatedItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/unevaluatedProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/unevaluatedProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/uniqueItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/unknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/unknownKeyword.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft-next/vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft-next/vocabulary.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/additionalItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/additionalProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/allOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/anchor.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/anyOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/boolean_schema.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/const.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/contains.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/content.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/default.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/dependentRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/dependentRequired.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/dependentSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/dependentSchemas.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/enum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/exclusiveMaximum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/exclusiveMinimum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/format.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/id.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/if-then-else.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/if-then-else.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/infinite-loop-detection.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/items.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/maxContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/maxContains.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/maxItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/maxLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/maxProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/maximum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/minContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/minContains.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/minItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/minLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/minProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/minimum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/multipleOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/not.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/oneOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/bignum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/cross-draft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/cross-draft.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/dependencies-compatibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/dependencies-compatibility.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/float-overflow.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/date-time.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/date.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/duration.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/email.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/hostname.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/idn-email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/idn-email.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/idn-hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/idn-hostname.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/ipv4.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/ipv6.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/iri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/iri-reference.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/iri.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/json-pointer.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/relative-json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/relative-json-pointer.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/time.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/unknown.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uri-reference.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uri-template.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uri.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uuid.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/no-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/no-schema.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/refOfUnknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/optional/refOfUnknownKeyword.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/pattern.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/patternProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/properties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/propertyNames.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/recursiveRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/recursiveRef.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/ref.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/refRemote.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/required.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/type.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/unevaluatedItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/unevaluatedItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/unevaluatedProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/unevaluatedProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/uniqueItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/unknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/unknownKeyword.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2019-09/vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2019-09/vocabulary.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/additionalProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/allOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/anchor.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/anyOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/boolean_schema.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/const.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/contains.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/content.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/default.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/defs.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/dependentRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/dependentRequired.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/dependentSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/dependentSchemas.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/dynamicRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/dynamicRef.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/enum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/exclusiveMaximum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/exclusiveMinimum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/format.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/id.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/if-then-else.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/if-then-else.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/infinite-loop-detection.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/items.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/maxContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/maxContains.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/maxItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/maxLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/maxProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/maximum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/minContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/minContains.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/minItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/minLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/minProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/minimum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/multipleOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/not.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/oneOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/bignum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/cross-draft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/cross-draft.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/dependencies-compatibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/dependencies-compatibility.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/float-overflow.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format-assertion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format-assertion.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/date-time.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/date.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/duration.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/email.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/hostname.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/idn-email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/idn-email.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/idn-hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/idn-hostname.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/ipv4.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/ipv6.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/iri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/iri-reference.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/iri.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/json-pointer.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/relative-json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/relative-json-pointer.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/time.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/unknown.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uri-reference.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uri-template.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uri.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uuid.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/no-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/no-schema.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/refOfUnknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/optional/refOfUnknownKeyword.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/pattern.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/patternProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/prefixItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/prefixItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/properties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/propertyNames.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/ref.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/refRemote.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/required.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/type.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/unevaluatedItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/unevaluatedItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/unevaluatedProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/unevaluatedProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/uniqueItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/unknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/unknownKeyword.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft2020-12/vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft2020-12/vocabulary.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/additionalItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/additionalProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/default.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/dependencies.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/disallow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/disallow.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/divisibleBy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/divisibleBy.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/enum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/extends.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/extends.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/format.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/infinite-loop-detection.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/items.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/maxItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/maxLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/maximum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/minItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/minLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/minimum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/bignum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/color.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/date-time.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/date.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/email.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/host-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/host-name.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/ip-address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/ip-address.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/ipv6.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/time.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/format/uri.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/optional/zeroTerminatedFloats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/optional/zeroTerminatedFloats.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/pattern.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/patternProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/properties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/ref.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/refRemote.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/required.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/type.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft3/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft3/uniqueItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/additionalItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/additionalProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/allOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/anyOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/default.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/definitions.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/dependencies.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/enum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/format.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/id.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/infinite-loop-detection.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/items.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/maxItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/maxLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/maxProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/maximum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/minItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/minLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/minProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/minimum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/multipleOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/not.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/oneOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/optional/bignum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/optional/float-overflow.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/date-time.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/email.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/hostname.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/ipv4.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/ipv6.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/unknown.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/optional/format/uri.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/optional/zeroTerminatedFloats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/optional/zeroTerminatedFloats.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/pattern.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/patternProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/properties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/ref.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/refRemote.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/required.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/type.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft4/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft4/uniqueItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/additionalItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/additionalProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/allOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/anyOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/boolean_schema.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/const.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/contains.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/default.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/definitions.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/dependencies.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/enum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/exclusiveMaximum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/exclusiveMinimum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/format.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/id.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/infinite-loop-detection.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/items.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/maxItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/maxLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/maxProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/maximum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/minItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/minLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/minProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/minimum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/multipleOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/not.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/oneOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/bignum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/float-overflow.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/date-time.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/email.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/hostname.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/ipv4.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/ipv6.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/json-pointer.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/unknown.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/uri-reference.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/uri-template.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/format/uri.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/pattern.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/patternProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/properties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/propertyNames.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/ref.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/refRemote.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/required.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/type.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/uniqueItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft6/unknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft6/unknownKeyword.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/additionalItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/additionalProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/allOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/anyOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/boolean_schema.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/const.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/contains.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/default.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/definitions.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/dependencies.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/enum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/exclusiveMaximum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/exclusiveMinimum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/format.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/id.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/if-then-else.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/if-then-else.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/infinite-loop-detection.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/items.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/maxItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/maxLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/maxProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/maximum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/minItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/minLength.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/minProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/minimum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/multipleOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/not.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/oneOf.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/bignum.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/content.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/cross-draft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/cross-draft.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/float-overflow.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/date-time.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/date.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/email.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/hostname.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/idn-email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/idn-email.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/idn-hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/idn-hostname.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/ipv4.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/ipv6.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/iri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/iri-reference.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/iri.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/json-pointer.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/relative-json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/relative-json-pointer.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/time.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/unknown.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/uri-reference.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/uri-template.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/format/uri.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/pattern.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/patternProperties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/properties.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/propertyNames.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/ref.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/refRemote.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/required.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/type.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/uniqueItems.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/draft7/unknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tests/draft7/unknownKeyword.json -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tests/latest: -------------------------------------------------------------------------------- 1 | draft2020-12 -------------------------------------------------------------------------------- /vendor/JSON-Schema-Test-Suite/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickel-lang/json-schema-to-nickel/HEAD/vendor/JSON-Schema-Test-Suite/tox.ini --------------------------------------------------------------------------------