├── .editorconfig ├── .golangci.version ├── .golangci.yml ├── AGENTS.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── additionalProperties.go ├── allOf.go ├── anyOf.go ├── cmd └── schemagen │ ├── analyzer.go │ ├── generator.go │ ├── generator_test.go │ ├── main.go │ ├── references.go │ ├── references_test.go │ ├── testdata │ └── examples.go │ └── writer.go ├── compiler.go ├── compiler_test.go ├── conditional.go ├── const.go ├── constructor.go ├── constructor_test.go ├── contains.go ├── content.go ├── default_funcs.go ├── default_funcs_test.go ├── dependentRequired.go ├── dependentSchemas.go ├── docs ├── api.md ├── compilation.md ├── constructor.md ├── error-handling.md ├── format-validation.md ├── tags.md ├── unmarshal.md └── validation.md ├── embedding_test.go ├── enum.go ├── errors.go ├── examples ├── README.md ├── basic │ ├── README.md │ └── main.go ├── constructor ├── custom-formats │ ├── README.md │ └── main.go ├── dynamic-defaults │ ├── README.md │ └── dynamic_defaults.go ├── error-handling │ ├── README.md │ └── main.go ├── i18n │ ├── README.md │ └── main.go ├── multilingual-errors │ ├── README.md │ └── main.go ├── multiple-input-types │ ├── README.md │ └── main.go ├── struct-validation │ ├── README.md │ └── main.go └── unmarshaling │ ├── README.md │ └── main.go ├── exclusiveMaximum.go ├── exclusiveMinimum.go ├── format.go ├── formats.go ├── go.mod ├── go.sum ├── i18n.go ├── id.go ├── items.go ├── keywords.go ├── keywords_test.go ├── locales ├── de-DE.json ├── en.json ├── es-ES.json ├── fr-FR.json ├── ja-JP.json ├── ko-KR.json ├── pt-BR.json ├── zh-Hans.json └── zh-Hant.json ├── maxItems.go ├── maxProperties.go ├── maximum.go ├── maxlength.go ├── minItems.go ├── minProperties.go ├── minimum.go ├── minlength.go ├── multipleOf.go ├── not.go ├── not_test.go ├── omitzero_test.go ├── oneOf.go ├── pattern.go ├── patternProperties.go ├── pkg └── tagparser │ ├── parser.go │ └── parser_test.go ├── prefixItems.go ├── properties.go ├── propertyNames.go ├── rat.go ├── readme.md ├── ref.go ├── required.go ├── result.go ├── result_test.go ├── roundtrip_test.go ├── schema.go ├── schema_test.go ├── struct_tags.go ├── struct_tags_test.go ├── struct_validation.go ├── struct_validation_test.go ├── testdata └── JSON-Schema-Test-Suite │ ├── .editorconfig │ ├── .github │ ├── CODEOWNERS │ └── workflows │ │ └── ci.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── 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 │ │ ├── detached-dynamicref.json │ │ ├── detached-ref.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.json │ │ └── tree.json │ ├── draft2019-09 │ │ ├── baseUriChange │ │ │ └── folderInteger.json │ │ ├── baseUriChangeFolder │ │ │ └── folderInteger.json │ │ ├── baseUriChangeFolderInSubschema │ │ │ └── folderInteger.json │ │ ├── dependentRequired.json │ │ ├── detached-ref.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.json │ │ └── tree.json │ ├── draft2020-12 │ │ ├── baseUriChange │ │ │ └── folderInteger.json │ │ ├── baseUriChangeFolder │ │ │ └── folderInteger.json │ │ ├── baseUriChangeFolderInSubschema │ │ │ └── folderInteger.json │ │ ├── detached-dynamicref.json │ │ ├── detached-ref.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.json │ │ └── tree.json │ ├── draft6 │ │ └── detached-ref.json │ ├── draft7 │ │ ├── detached-ref.json │ │ └── 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.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 │ │ ├── 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 │ │ │ ├── anchor.json │ │ │ ├── bignum.json │ │ │ ├── dependencies-compatibility.json │ │ │ ├── dynamicRef.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 │ │ │ ├── id.json │ │ │ ├── non-bmp-regex.json │ │ │ ├── refOfUnknownKeyword.json │ │ │ └── unknownKeyword.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 │ │ └── 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 │ │ ├── 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 │ │ │ ├── anchor.json │ │ │ ├── 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 │ │ │ ├── id.json │ │ │ ├── no-schema.json │ │ │ ├── non-bmp-regex.json │ │ │ ├── refOfUnknownKeyword.json │ │ │ └── unknownKeyword.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 │ │ └── 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 │ │ ├── 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 │ │ │ ├── anchor.json │ │ │ ├── bignum.json │ │ │ ├── cross-draft.json │ │ │ ├── dependencies-compatibility.json │ │ │ ├── dynamicRef.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 │ │ │ ├── id.json │ │ │ ├── no-schema.json │ │ │ ├── non-bmp-regex.json │ │ │ ├── refOfUnknownKeyword.json │ │ │ └── unknownKeyword.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 │ │ └── 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 │ │ ├── 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 │ │ │ ├── id.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 │ │ ├── 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 │ │ │ ├── id.json │ │ │ ├── non-bmp-regex.json │ │ │ └── unknownKeyword.json │ │ ├── pattern.json │ │ ├── patternProperties.json │ │ ├── properties.json │ │ ├── propertyNames.json │ │ ├── ref.json │ │ ├── refRemote.json │ │ ├── required.json │ │ ├── type.json │ │ └── uniqueItems.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 │ │ ├── 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 │ │ │ ├── id.json │ │ │ ├── non-bmp-regex.json │ │ │ └── unknownKeyword.json │ │ ├── pattern.json │ │ ├── patternProperties.json │ │ ├── properties.json │ │ ├── propertyNames.json │ │ ├── ref.json │ │ ├── refRemote.json │ │ ├── required.json │ │ ├── type.json │ │ └── uniqueItems.json │ └── latest │ └── tox.ini ├── tests ├── additionalProperties_test.go ├── allOf_test.go ├── anchor_test.go ├── anyOf_test.go ├── bignum_test.go ├── boolean_schema_test.go ├── const_test.go ├── contains_test.go ├── content_test.go ├── custom_format_test.go ├── default_test.go ├── defs_test.go ├── dependentRequired_test.go ├── dependentSchemas_test.go ├── dynamicRef_test.go ├── enum_test.go ├── exclusiveMaximum_test.go ├── exclusiveMinimum_test.go ├── format_test.go ├── id_test.go ├── if_then_else_test.go ├── items_test.go ├── maxContains_test.go ├── maxItems_test.go ├── maxLength_test.go ├── maxProperties_test.go ├── maximum_test.go ├── minContains_test.go ├── minItems_test.go ├── minLength_test.go ├── minProperties_test.go ├── minimum_test.go ├── multipleOf_test.go ├── not_test.go ├── oneOf_test.go ├── patternProperties_test.go ├── pattern_test.go ├── prefixItems_test.go ├── properties_test.go ├── propertyNames_test.go ├── ref_test.go ├── required_test.go ├── types_test.go ├── unevaluatedItems_test.go ├── unevaluatedProperties_test.go ├── uniqueItems_test.go ├── utils.go └── version_test.go ├── type.go ├── unevaluatedItems.go ├── unevaluatedProperties.go ├── uniqueItems.go ├── uniqueItems_bench_test.go ├── unmarshal.go ├── unmarshal_test.go ├── utils.go ├── utils_test.go ├── validate.go ├── validate_bench_test.go └── validate_test.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/.editorconfig -------------------------------------------------------------------------------- /.golangci.version: -------------------------------------------------------------------------------- 1 | 2.4.0 -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/.golangci.yml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/Makefile -------------------------------------------------------------------------------- /additionalProperties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/additionalProperties.go -------------------------------------------------------------------------------- /allOf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/allOf.go -------------------------------------------------------------------------------- /anyOf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/anyOf.go -------------------------------------------------------------------------------- /cmd/schemagen/analyzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/cmd/schemagen/analyzer.go -------------------------------------------------------------------------------- /cmd/schemagen/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/cmd/schemagen/generator.go -------------------------------------------------------------------------------- /cmd/schemagen/generator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/cmd/schemagen/generator_test.go -------------------------------------------------------------------------------- /cmd/schemagen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/cmd/schemagen/main.go -------------------------------------------------------------------------------- /cmd/schemagen/references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/cmd/schemagen/references.go -------------------------------------------------------------------------------- /cmd/schemagen/references_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/cmd/schemagen/references_test.go -------------------------------------------------------------------------------- /cmd/schemagen/testdata/examples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/cmd/schemagen/testdata/examples.go -------------------------------------------------------------------------------- /cmd/schemagen/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/cmd/schemagen/writer.go -------------------------------------------------------------------------------- /compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/compiler.go -------------------------------------------------------------------------------- /compiler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/compiler_test.go -------------------------------------------------------------------------------- /conditional.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/conditional.go -------------------------------------------------------------------------------- /const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/const.go -------------------------------------------------------------------------------- /constructor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/constructor.go -------------------------------------------------------------------------------- /constructor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/constructor_test.go -------------------------------------------------------------------------------- /contains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/contains.go -------------------------------------------------------------------------------- /content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/content.go -------------------------------------------------------------------------------- /default_funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/default_funcs.go -------------------------------------------------------------------------------- /default_funcs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/default_funcs_test.go -------------------------------------------------------------------------------- /dependentRequired.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/dependentRequired.go -------------------------------------------------------------------------------- /dependentSchemas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/dependentSchemas.go -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/docs/compilation.md -------------------------------------------------------------------------------- /docs/constructor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/docs/constructor.md -------------------------------------------------------------------------------- /docs/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/docs/error-handling.md -------------------------------------------------------------------------------- /docs/format-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/docs/format-validation.md -------------------------------------------------------------------------------- /docs/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/docs/tags.md -------------------------------------------------------------------------------- /docs/unmarshal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/docs/unmarshal.md -------------------------------------------------------------------------------- /docs/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/docs/validation.md -------------------------------------------------------------------------------- /embedding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/embedding_test.go -------------------------------------------------------------------------------- /enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/enum.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/errors.go -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/basic/README.md -------------------------------------------------------------------------------- /examples/basic/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/basic/main.go -------------------------------------------------------------------------------- /examples/constructor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/constructor/README.md -------------------------------------------------------------------------------- /examples/constructor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/constructor/main.go -------------------------------------------------------------------------------- /examples/custom-formats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/custom-formats/README.md -------------------------------------------------------------------------------- /examples/custom-formats/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/custom-formats/main.go -------------------------------------------------------------------------------- /examples/dynamic-defaults/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/dynamic-defaults/README.md -------------------------------------------------------------------------------- /examples/dynamic-defaults/dynamic_defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/dynamic-defaults/dynamic_defaults.go -------------------------------------------------------------------------------- /examples/error-handling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/error-handling/README.md -------------------------------------------------------------------------------- /examples/error-handling/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/error-handling/main.go -------------------------------------------------------------------------------- /examples/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/i18n/README.md -------------------------------------------------------------------------------- /examples/i18n/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/i18n/main.go -------------------------------------------------------------------------------- /examples/multilingual-errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/multilingual-errors/README.md -------------------------------------------------------------------------------- /examples/multilingual-errors/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/multilingual-errors/main.go -------------------------------------------------------------------------------- /examples/multiple-input-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/multiple-input-types/README.md -------------------------------------------------------------------------------- /examples/multiple-input-types/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/multiple-input-types/main.go -------------------------------------------------------------------------------- /examples/struct-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/struct-validation/README.md -------------------------------------------------------------------------------- /examples/struct-validation/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/struct-validation/main.go -------------------------------------------------------------------------------- /examples/unmarshaling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/unmarshaling/README.md -------------------------------------------------------------------------------- /examples/unmarshaling/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/examples/unmarshaling/main.go -------------------------------------------------------------------------------- /exclusiveMaximum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/exclusiveMaximum.go -------------------------------------------------------------------------------- /exclusiveMinimum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/exclusiveMinimum.go -------------------------------------------------------------------------------- /format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/format.go -------------------------------------------------------------------------------- /formats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/formats.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/go.sum -------------------------------------------------------------------------------- /i18n.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/i18n.go -------------------------------------------------------------------------------- /id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/id.go -------------------------------------------------------------------------------- /items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/items.go -------------------------------------------------------------------------------- /keywords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/keywords.go -------------------------------------------------------------------------------- /keywords_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/keywords_test.go -------------------------------------------------------------------------------- /locales/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/locales/de-DE.json -------------------------------------------------------------------------------- /locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/locales/en.json -------------------------------------------------------------------------------- /locales/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/locales/es-ES.json -------------------------------------------------------------------------------- /locales/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/locales/fr-FR.json -------------------------------------------------------------------------------- /locales/ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/locales/ja-JP.json -------------------------------------------------------------------------------- /locales/ko-KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/locales/ko-KR.json -------------------------------------------------------------------------------- /locales/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/locales/pt-BR.json -------------------------------------------------------------------------------- /locales/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/locales/zh-Hans.json -------------------------------------------------------------------------------- /locales/zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/locales/zh-Hant.json -------------------------------------------------------------------------------- /maxItems.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/maxItems.go -------------------------------------------------------------------------------- /maxProperties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/maxProperties.go -------------------------------------------------------------------------------- /maximum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/maximum.go -------------------------------------------------------------------------------- /maxlength.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/maxlength.go -------------------------------------------------------------------------------- /minItems.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/minItems.go -------------------------------------------------------------------------------- /minProperties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/minProperties.go -------------------------------------------------------------------------------- /minimum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/minimum.go -------------------------------------------------------------------------------- /minlength.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/minlength.go -------------------------------------------------------------------------------- /multipleOf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/multipleOf.go -------------------------------------------------------------------------------- /not.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/not.go -------------------------------------------------------------------------------- /not_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/not_test.go -------------------------------------------------------------------------------- /omitzero_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/omitzero_test.go -------------------------------------------------------------------------------- /oneOf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/oneOf.go -------------------------------------------------------------------------------- /pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/pattern.go -------------------------------------------------------------------------------- /patternProperties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/patternProperties.go -------------------------------------------------------------------------------- /pkg/tagparser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/pkg/tagparser/parser.go -------------------------------------------------------------------------------- /pkg/tagparser/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/pkg/tagparser/parser_test.go -------------------------------------------------------------------------------- /prefixItems.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/prefixItems.go -------------------------------------------------------------------------------- /properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/properties.go -------------------------------------------------------------------------------- /propertyNames.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/propertyNames.go -------------------------------------------------------------------------------- /rat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/rat.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/readme.md -------------------------------------------------------------------------------- /ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/ref.go -------------------------------------------------------------------------------- /required.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/required.go -------------------------------------------------------------------------------- /result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/result.go -------------------------------------------------------------------------------- /result_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/result_test.go -------------------------------------------------------------------------------- /roundtrip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/roundtrip_test.go -------------------------------------------------------------------------------- /schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/schema.go -------------------------------------------------------------------------------- /schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/schema_test.go -------------------------------------------------------------------------------- /struct_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/struct_tags.go -------------------------------------------------------------------------------- /struct_tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/struct_tags_test.go -------------------------------------------------------------------------------- /struct_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/struct_validation.go -------------------------------------------------------------------------------- /struct_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/struct_validation_test.go -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/.editorconfig: -------------------------------------------------------------------------------- 1 | insert_final_newline = true 2 | -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/.github/CODEOWNERS -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/.github/workflows/ci.yml -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/CONTRIBUTING.md -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/LICENSE -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/README.md -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-test-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-test-schema.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/README.md -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft-next/content/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft-next/content/general.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft-next/content/readOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft-next/content/readOnly.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft-next/content/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft-next/content/type.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft-next/output-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft-next/output-schema.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/escape.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/general.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/readOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/readOnly.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft2019-09/content/type.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft2019-09/output-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft2019-09/output-schema.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/escape.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/general.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/readOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/readOnly.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft2020-12/content/type.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/output-tests/draft2020-12/output-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/output-tests/draft2020-12/output-schema.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/package.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/baseUriChange/folderInteger.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } 4 | -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/baseUriChangeFolder/folderInteger.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } 4 | -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/baseUriChangeFolderInSubschema/folderInteger.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } 4 | -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/different-id-ref-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/different-id-ref-string.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/baseUriChange/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/baseUriChange/folderInteger.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/baseUriChangeFolder/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/baseUriChangeFolder/folderInteger.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/baseUriChangeFolderInSubschema/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/baseUriChangeFolderInSubschema/folderInteger.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/detached-dynamicref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/detached-dynamicref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/detached-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/detached-ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/extendible-dynamic-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/extendible-dynamic-ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/format-assertion-false.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/format-assertion-false.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/format-assertion-true.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/format-assertion-true.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/integer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/integer.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/locationIndependentIdentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/locationIndependentIdentifier.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/metaschema-no-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/metaschema-no-validation.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/metaschema-optional-vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/metaschema-optional-vocabulary.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/name-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/name-defs.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/nested/foo-ref-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/nested/foo-ref-string.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/nested/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/nested/string.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/ref-and-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/ref-and-defs.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/subSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/subSchemas.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft-next/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft-next/tree.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/baseUriChange/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/baseUriChange/folderInteger.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/baseUriChangeFolder/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/baseUriChangeFolder/folderInteger.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/baseUriChangeFolderInSubschema/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/baseUriChangeFolderInSubschema/folderInteger.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/dependentRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/dependentRequired.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/detached-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/detached-ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/extendible-dynamic-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/extendible-dynamic-ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/ignore-prefixItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/ignore-prefixItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/integer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/integer.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/locationIndependentIdentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/locationIndependentIdentifier.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/metaschema-no-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/metaschema-no-validation.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/metaschema-optional-vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/metaschema-optional-vocabulary.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/name-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/name-defs.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/nested/foo-ref-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/nested/foo-ref-string.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/nested/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/nested/string.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/ref-and-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/ref-and-defs.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/subSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/subSchemas.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2019-09/tree.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/baseUriChange/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/baseUriChange/folderInteger.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/baseUriChangeFolder/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/baseUriChangeFolder/folderInteger.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/baseUriChangeFolderInSubschema/folderInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/baseUriChangeFolderInSubschema/folderInteger.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/detached-dynamicref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/detached-dynamicref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/detached-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/detached-ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/extendible-dynamic-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/extendible-dynamic-ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/format-assertion-false.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/format-assertion-false.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/format-assertion-true.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/format-assertion-true.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/integer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/integer.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/locationIndependentIdentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/locationIndependentIdentifier.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/metaschema-no-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/metaschema-no-validation.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/metaschema-optional-vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/metaschema-optional-vocabulary.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/name-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/name-defs.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/nested/foo-ref-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/nested/foo-ref-string.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/nested/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/nested/string.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/prefixItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/prefixItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/ref-and-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/ref-and-defs.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/subSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/subSchemas.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft2020-12/tree.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft6/detached-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft6/detached-ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft7/detached-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft7/detached-ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/draft7/ignore-dependentRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/draft7/ignore-dependentRequired.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/extendible-dynamic-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/extendible-dynamic-ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/integer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } 4 | -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/locationIndependentIdentifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/locationIndependentIdentifier.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/locationIndependentIdentifierDraft4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/locationIndependentIdentifierDraft4.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/locationIndependentIdentifierPre2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/locationIndependentIdentifierPre2019.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/name-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/name-defs.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/name.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/nested-absolute-ref-to-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/nested-absolute-ref-to-string.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/nested/foo-ref-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/nested/foo-ref-string.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/nested/string.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "string" 3 | } 4 | -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/ref-and-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/ref-and-definitions.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/ref-and-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/ref-and-defs.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/subSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/subSchemas.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/tree.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/remotes/urn-ref-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/remotes/urn-ref-string.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/test-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/test-schema.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/additionalProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/allOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/anchor.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/anyOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/boolean_schema.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/const.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/contains.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/content.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/default.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/defs.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/dependentRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/dependentRequired.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/dependentSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/dependentSchemas.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/dynamicRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/dynamicRef.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/enum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/exclusiveMaximum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/exclusiveMinimum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/format.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/if-then-else.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/if-then-else.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/infinite-loop-detection.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/items.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/maxContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/maxContains.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/maxItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/maxLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/maxProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/maximum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/minContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/minContains.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/minItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/minLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/minProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/minimum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/multipleOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/not.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/oneOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/anchor.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/bignum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/dependencies-compatibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/dependencies-compatibility.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/dynamicRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/dynamicRef.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/float-overflow.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format-assertion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format-assertion.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/date-time.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/date.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/duration.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/email.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/hostname.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/idn-email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/idn-email.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/idn-hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/idn-hostname.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/ipv4.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/ipv6.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/iri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/iri-reference.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/iri.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/json-pointer.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/relative-json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/relative-json-pointer.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/time.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uri-reference.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uri-template.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uri.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/format/uuid.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/id.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/refOfUnknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/refOfUnknownKeyword.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/unknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/optional/unknownKeyword.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/pattern.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/patternProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/prefixItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/prefixItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/properties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/propertyDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/propertyDependencies.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/propertyNames.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/refRemote.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/required.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/type.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/unevaluatedItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/unevaluatedItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/unevaluatedProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/unevaluatedProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/uniqueItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft-next/vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft-next/vocabulary.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/additionalItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/additionalProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/allOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/anchor.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/anyOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/boolean_schema.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/const.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/contains.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/content.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/default.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/defs.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/dependentRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/dependentRequired.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/dependentSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/dependentSchemas.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/enum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/exclusiveMaximum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/exclusiveMinimum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/format.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/if-then-else.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/if-then-else.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/infinite-loop-detection.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/items.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/maxContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/maxContains.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/maxItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/maxLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/maxProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/maximum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/minContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/minContains.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/minItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/minLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/minProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/minimum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/multipleOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/not.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/oneOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/anchor.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/bignum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/cross-draft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/cross-draft.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/dependencies-compatibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/dependencies-compatibility.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/float-overflow.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/date-time.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/date.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/duration.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/email.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/hostname.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/idn-email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/idn-email.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/idn-hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/idn-hostname.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/ipv4.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/ipv6.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/iri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/iri-reference.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/iri.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/json-pointer.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/relative-json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/relative-json-pointer.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/time.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/unknown.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uri-reference.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uri-template.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uri.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/uuid.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/id.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/no-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/no-schema.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/refOfUnknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/refOfUnknownKeyword.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/unknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/optional/unknownKeyword.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/pattern.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/patternProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/properties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/propertyNames.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/recursiveRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/recursiveRef.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/refRemote.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/required.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/type.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/unevaluatedItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/unevaluatedItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/unevaluatedProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/unevaluatedProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/uniqueItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2019-09/vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2019-09/vocabulary.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/additionalProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/allOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/anchor.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/anyOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/boolean_schema.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/const.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/contains.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/content.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/default.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/defs.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/dependentRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/dependentRequired.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/dependentSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/dependentSchemas.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/dynamicRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/dynamicRef.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/enum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/exclusiveMaximum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/exclusiveMinimum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/format.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/if-then-else.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/if-then-else.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/infinite-loop-detection.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/items.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/maxContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/maxContains.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/maxItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/maxLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/maxProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/maximum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/minContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/minContains.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/minItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/minLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/minProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/minimum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/multipleOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/not.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/oneOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/anchor.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/bignum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/cross-draft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/cross-draft.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/dependencies-compatibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/dependencies-compatibility.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/dynamicRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/dynamicRef.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/float-overflow.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format-assertion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format-assertion.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/date-time.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/date.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/duration.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/email.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/hostname.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/idn-email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/idn-email.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/idn-hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/idn-hostname.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/ipv4.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/ipv6.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/iri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/iri-reference.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/iri.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/json-pointer.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/relative-json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/relative-json-pointer.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/time.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/unknown.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uri-reference.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uri-template.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uri.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/uuid.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/id.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/no-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/no-schema.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/refOfUnknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/refOfUnknownKeyword.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/unknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/unknownKeyword.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/pattern.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/patternProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/prefixItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/prefixItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/properties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/propertyNames.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/refRemote.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/required.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/type.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/unevaluatedItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/unevaluatedItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/unevaluatedProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/unevaluatedProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/uniqueItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft2020-12/vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/vocabulary.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/additionalItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/additionalProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/default.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/dependencies.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/disallow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/disallow.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/divisibleBy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/divisibleBy.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/enum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/extends.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/extends.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/format.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/infinite-loop-detection.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/items.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/maxItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/maxLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/maximum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/minItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/minLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/minimum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/bignum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/color.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/date-time.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/date.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/email.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/host-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/host-name.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/ip-address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/ip-address.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/ipv6.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/time.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/format/uri.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/optional/zeroTerminatedFloats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/optional/zeroTerminatedFloats.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/pattern.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/patternProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/properties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/refRemote.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/required.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/type.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft3/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft3/uniqueItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/additionalItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/additionalProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/allOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/anyOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/default.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/definitions.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/dependencies.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/enum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/format.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/infinite-loop-detection.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/items.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/maxItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/maxLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/maxProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/maximum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/minItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/minLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/minProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/minimum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/multipleOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/not.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/oneOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/bignum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/float-overflow.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/date-time.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/email.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/hostname.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/ipv4.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/ipv6.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/unknown.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/format/uri.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/optional/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/id.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/optional/zeroTerminatedFloats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/optional/zeroTerminatedFloats.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/pattern.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/patternProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/properties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/refRemote.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/required.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/type.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft4/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft4/uniqueItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/additionalItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/additionalProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/allOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/anyOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/boolean_schema.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/const.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/contains.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/default.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/definitions.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/dependencies.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/enum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/exclusiveMaximum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/exclusiveMinimum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/format.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/infinite-loop-detection.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/items.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/maxItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/maxLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/maxProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/maximum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/minItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/minLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/minProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/minimum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/multipleOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/not.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/oneOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/bignum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/float-overflow.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/date-time.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/email.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/hostname.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/ipv4.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/ipv6.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/json-pointer.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/unknown.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/uri-reference.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/uri-template.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/format/uri.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/id.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/optional/unknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/optional/unknownKeyword.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/pattern.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/patternProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/properties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/propertyNames.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/refRemote.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/required.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/type.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft6/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft6/uniqueItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/additionalItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/additionalProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/allOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/anyOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/boolean_schema.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/const.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/contains.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/default.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/definitions.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/dependencies.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/enum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/exclusiveMaximum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/exclusiveMinimum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/format.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/if-then-else.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/if-then-else.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/infinite-loop-detection.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/items.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/maxItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/maxLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/maxProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/maximum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/minItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/minLength.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/minProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/minimum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/multipleOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/not.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/oneOf.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/bignum.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/content.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/cross-draft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/cross-draft.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/float-overflow.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/date-time.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/date.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/email.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/hostname.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/idn-email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/idn-email.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/idn-hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/idn-hostname.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/ipv4.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/ipv6.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/iri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/iri-reference.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/iri.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/json-pointer.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/relative-json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/relative-json-pointer.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/time.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/unknown.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/uri-reference.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/uri-template.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/format/uri.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/id.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/optional/unknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/optional/unknownKeyword.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/pattern.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/patternProperties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/properties.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/propertyNames.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/ref.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/refRemote.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/required.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/type.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/draft7/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tests/draft7/uniqueItems.json -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tests/latest: -------------------------------------------------------------------------------- 1 | draft2020-12 -------------------------------------------------------------------------------- /testdata/JSON-Schema-Test-Suite/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/testdata/JSON-Schema-Test-Suite/tox.ini -------------------------------------------------------------------------------- /tests/additionalProperties_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/additionalProperties_test.go -------------------------------------------------------------------------------- /tests/allOf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/allOf_test.go -------------------------------------------------------------------------------- /tests/anchor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/anchor_test.go -------------------------------------------------------------------------------- /tests/anyOf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/anyOf_test.go -------------------------------------------------------------------------------- /tests/bignum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/bignum_test.go -------------------------------------------------------------------------------- /tests/boolean_schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/boolean_schema_test.go -------------------------------------------------------------------------------- /tests/const_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/const_test.go -------------------------------------------------------------------------------- /tests/contains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/contains_test.go -------------------------------------------------------------------------------- /tests/content_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/content_test.go -------------------------------------------------------------------------------- /tests/custom_format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/custom_format_test.go -------------------------------------------------------------------------------- /tests/default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/default_test.go -------------------------------------------------------------------------------- /tests/defs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/defs_test.go -------------------------------------------------------------------------------- /tests/dependentRequired_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/dependentRequired_test.go -------------------------------------------------------------------------------- /tests/dependentSchemas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/dependentSchemas_test.go -------------------------------------------------------------------------------- /tests/dynamicRef_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/dynamicRef_test.go -------------------------------------------------------------------------------- /tests/enum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/enum_test.go -------------------------------------------------------------------------------- /tests/exclusiveMaximum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/exclusiveMaximum_test.go -------------------------------------------------------------------------------- /tests/exclusiveMinimum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/exclusiveMinimum_test.go -------------------------------------------------------------------------------- /tests/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/format_test.go -------------------------------------------------------------------------------- /tests/id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/id_test.go -------------------------------------------------------------------------------- /tests/if_then_else_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/if_then_else_test.go -------------------------------------------------------------------------------- /tests/items_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/items_test.go -------------------------------------------------------------------------------- /tests/maxContains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/maxContains_test.go -------------------------------------------------------------------------------- /tests/maxItems_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/maxItems_test.go -------------------------------------------------------------------------------- /tests/maxLength_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/maxLength_test.go -------------------------------------------------------------------------------- /tests/maxProperties_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/maxProperties_test.go -------------------------------------------------------------------------------- /tests/maximum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/maximum_test.go -------------------------------------------------------------------------------- /tests/minContains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/minContains_test.go -------------------------------------------------------------------------------- /tests/minItems_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/minItems_test.go -------------------------------------------------------------------------------- /tests/minLength_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/minLength_test.go -------------------------------------------------------------------------------- /tests/minProperties_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/minProperties_test.go -------------------------------------------------------------------------------- /tests/minimum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/minimum_test.go -------------------------------------------------------------------------------- /tests/multipleOf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/multipleOf_test.go -------------------------------------------------------------------------------- /tests/not_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/not_test.go -------------------------------------------------------------------------------- /tests/oneOf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/oneOf_test.go -------------------------------------------------------------------------------- /tests/patternProperties_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/patternProperties_test.go -------------------------------------------------------------------------------- /tests/pattern_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/pattern_test.go -------------------------------------------------------------------------------- /tests/prefixItems_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/prefixItems_test.go -------------------------------------------------------------------------------- /tests/properties_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/properties_test.go -------------------------------------------------------------------------------- /tests/propertyNames_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/propertyNames_test.go -------------------------------------------------------------------------------- /tests/ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/ref_test.go -------------------------------------------------------------------------------- /tests/required_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/required_test.go -------------------------------------------------------------------------------- /tests/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/types_test.go -------------------------------------------------------------------------------- /tests/unevaluatedItems_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/unevaluatedItems_test.go -------------------------------------------------------------------------------- /tests/unevaluatedProperties_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/unevaluatedProperties_test.go -------------------------------------------------------------------------------- /tests/uniqueItems_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/uniqueItems_test.go -------------------------------------------------------------------------------- /tests/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/utils.go -------------------------------------------------------------------------------- /tests/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/tests/version_test.go -------------------------------------------------------------------------------- /type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/type.go -------------------------------------------------------------------------------- /unevaluatedItems.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/unevaluatedItems.go -------------------------------------------------------------------------------- /unevaluatedProperties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/unevaluatedProperties.go -------------------------------------------------------------------------------- /uniqueItems.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/uniqueItems.go -------------------------------------------------------------------------------- /uniqueItems_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/uniqueItems_bench_test.go -------------------------------------------------------------------------------- /unmarshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/unmarshal.go -------------------------------------------------------------------------------- /unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/unmarshal_test.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/utils.go -------------------------------------------------------------------------------- /utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/utils_test.go -------------------------------------------------------------------------------- /validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/validate.go -------------------------------------------------------------------------------- /validate_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/validate_bench_test.go -------------------------------------------------------------------------------- /validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaptinlin/jsonschema/HEAD/validate_test.go --------------------------------------------------------------------------------