├── .github └── workflows │ ├── build.yml │ └── deploy.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── pom.xml └── src ├── main └── kotlin │ └── net │ └── pwall │ └── json │ └── schema │ ├── JSONSchema.kt │ ├── JSONSchemaException.kt │ ├── output │ ├── BasicErrorEntry.kt │ ├── BasicOutput.kt │ ├── DetailedOutput.kt │ └── Output.kt │ ├── parser │ ├── InputDetails.kt │ ├── JSONReader.kt │ └── Parser.kt │ ├── subschema │ ├── AdditionalItemsSchema.kt │ ├── AdditionalPropertiesSchema.kt │ ├── AllOfSchema.kt │ ├── AnyOfSchema.kt │ ├── CombinationSchema.kt │ ├── ExtensionSchema.kt │ ├── IfThenElseSchema.kt │ ├── ItemsArraySchema.kt │ ├── ItemsSchema.kt │ ├── OneOfSchema.kt │ ├── PatternPropertiesSchema.kt │ ├── PropertiesSchema.kt │ ├── PropertyNamesSchema.kt │ ├── RefSchema.kt │ └── RequiredSchema.kt │ └── validation │ ├── ArrayValidator.kt │ ├── ConstValidator.kt │ ├── ContainsValidator.kt │ ├── DefaultValidator.kt │ ├── DelegatingValidator.kt │ ├── EnumValidator.kt │ ├── FormatValidator.kt │ ├── NumberValidator.kt │ ├── PatternValidator.kt │ ├── PropertiesValidator.kt │ ├── StringValidator.kt │ ├── TypeValidator.kt │ └── UniqueItemsValidator.kt └── test ├── kotlin └── net │ └── pwall │ └── json │ └── schema │ ├── JSONSchemaCustomValidatorTest.kt │ ├── JSONSchemaExamplesTest.kt │ ├── JSONSchemaItemsTest.kt │ ├── JSONSchemaNonstandardFormatTest.kt │ ├── JSONSchemaOneOfTest.kt │ ├── JSONSchemaPropertiesTest.kt │ ├── JSONSchemaTest.kt │ ├── MetaSchemaTest.kt │ ├── parser │ ├── JSONReaderTest.kt │ └── ParserTest.kt │ ├── testsuite │ ├── TestGroup.kt │ ├── TestItem.kt │ └── TestSuiteTests.kt │ ├── util.kt │ └── validation │ └── FormatValidatorTest.kt └── resources ├── empty.schema.json ├── example-error1.json ├── example-error2.json ├── example-error3.json ├── example-error4.json ├── example.json ├── example.schema.json ├── example.schema.yaml ├── false.schema.json ├── http ├── testhttp1.json └── testhttp2.json ├── invalid-1.schema.json ├── jar └── example.jar ├── metaschema ├── meta │ ├── applicator.schema.json │ ├── content.schema.json │ ├── core.schema.json │ ├── format.schema.json │ ├── meta-data.schema.json │ └── validation.schema.json ├── output │ └── schema.schema.json └── schema.schema.json ├── person-invalid-uuid.json ├── person.json ├── test-additional-false.schema.json ├── test-additional.schema.json ├── test-anyof.schema.json ├── test-const.schema.json ├── test-contains-minmax.schema.json ├── test-contains.schema.json ├── test-custom-validator.schema.json ├── test-default-invalid.schema.json ├── test-default-valid.schema.json ├── test-description-ref.schema.yaml ├── test-description-text.txt ├── test-domestic-address.schema.json ├── test-enum.schema.json ├── test-example-invalid-2.schema.json ├── test-example-invalid.schema.json ├── test-example-valid.schema.json ├── test-examples-invalid.schema.json ├── test-examples-valid.schema.json ├── test-if-then-else.schema.json ├── test-international-address.schema.json ├── test-item-array.schema.json ├── test-item.schema.json ├── test-nonstandard-format.schema.json ├── test-not.schema.json ├── test-oneof.schema.json ├── test-pattern-properties.schema.json ├── test-property-names.schema.json ├── test-ref.json ├── test-ref.schema.json ├── test-string-format.schema.json ├── test-string-length.schema.json ├── test-string-pattern.schema.json ├── test-suite ├── LICENSE ├── remotes │ ├── baseUriChange │ │ └── folderInteger.json │ ├── baseUriChangeFolder │ │ └── folderInteger.json │ ├── baseUriChangeFolderInSubschema │ │ └── folderInteger.json │ ├── integer.json │ ├── name-defs.json │ ├── name.json │ ├── subSchemas-defs.json │ └── subSchemas.json └── tests │ ├── draft2019-09 │ ├── additionalItems.json │ ├── additionalProperties.json │ ├── allOf.json │ ├── anchor.json │ ├── anyOf.json │ ├── boolean_schema.json │ ├── const.json │ ├── contains.json │ ├── content.json │ ├── default.json │ ├── defs.json │ ├── dependentRequired.json │ ├── dependentSchemas.json │ ├── enum.json │ ├── exclusiveMaximum.json │ ├── exclusiveMinimum.json │ ├── format.json │ ├── id.json │ ├── if-then-else.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxContains.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maxProperties.json │ ├── maximum.json │ ├── minContains.json │ ├── minItems.json │ ├── minLength.json │ ├── minProperties.json │ ├── minimum.json │ ├── multipleOf.json │ ├── not.json │ ├── oneOf.json │ ├── optional │ │ ├── bignum.json │ │ ├── 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 │ │ │ ├── uri-reference.json │ │ │ ├── uri-template.json │ │ │ ├── uri.json │ │ │ └── uuid.json │ │ ├── non-bmp-regex.json │ │ └── refOfUnknownKeyword.json │ ├── pattern.json │ ├── patternProperties.json │ ├── properties.json │ ├── propertyNames.json │ ├── recursiveRef.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ ├── unevaluatedItems.json │ ├── unevaluatedProperties.json │ └── uniqueItems.json │ ├── draft2020-12 │ ├── additionalProperties.json │ ├── allOf.json │ ├── anchor.json │ ├── anyOf.json │ ├── boolean_schema.json │ ├── const.json │ ├── contains.json │ ├── content.json │ ├── default.json │ ├── defs.json │ ├── dependentRequired.json │ ├── dependentSchemas.json │ ├── dynamicRef.json │ ├── enum.json │ ├── exclusiveMaximum.json │ ├── exclusiveMinimum.json │ ├── format.json │ ├── id.json │ ├── if-then-else.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxContains.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maxProperties.json │ ├── maximum.json │ ├── minContains.json │ ├── minItems.json │ ├── minLength.json │ ├── minProperties.json │ ├── minimum.json │ ├── multipleOf.json │ ├── not.json │ ├── oneOf.json │ ├── optional │ │ ├── bignum.json │ │ ├── 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 │ │ │ ├── uri-reference.json │ │ │ ├── uri-template.json │ │ │ ├── uri.json │ │ │ └── uuid.json │ │ ├── non-bmp-regex.json │ │ └── refOfUnknownKeyword.json │ ├── pattern.json │ ├── patternProperties.json │ ├── prefixItems.json │ ├── properties.json │ ├── propertyNames.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ ├── unevaluatedItems.json │ ├── unevaluatedProperties.json │ └── uniqueItems.json │ ├── draft3 │ ├── additionalItems.json │ ├── additionalProperties.json │ ├── default.json │ ├── dependencies.json │ ├── disallow.json │ ├── divisibleBy.json │ ├── enum.json │ ├── extends.json │ ├── format.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maximum.json │ ├── minItems.json │ ├── minLength.json │ ├── minimum.json │ ├── optional │ │ ├── bignum.json │ │ ├── ecmascript-regex.json │ │ ├── format │ │ │ ├── color.json │ │ │ ├── date-time.json │ │ │ ├── date.json │ │ │ ├── email.json │ │ │ ├── host-name.json │ │ │ ├── ip-address.json │ │ │ ├── ipv6.json │ │ │ ├── regex.json │ │ │ ├── time.json │ │ │ └── uri.json │ │ ├── non-bmp-regex.json │ │ └── zeroTerminatedFloats.json │ ├── pattern.json │ ├── patternProperties.json │ ├── properties.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ └── uniqueItems.json │ ├── draft4 │ ├── additionalItems.json │ ├── additionalProperties.json │ ├── allOf.json │ ├── anyOf.json │ ├── default.json │ ├── definitions.json │ ├── dependencies.json │ ├── enum.json │ ├── format.json │ ├── id.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maxProperties.json │ ├── maximum.json │ ├── minItems.json │ ├── minLength.json │ ├── minProperties.json │ ├── minimum.json │ ├── multipleOf.json │ ├── not.json │ ├── oneOf.json │ ├── optional │ │ ├── bignum.json │ │ ├── ecmascript-regex.json │ │ ├── float-overflow.json │ │ ├── format │ │ │ ├── date-time.json │ │ │ ├── email.json │ │ │ ├── hostname.json │ │ │ ├── ipv4.json │ │ │ ├── ipv6.json │ │ │ └── uri.json │ │ ├── non-bmp-regex.json │ │ └── zeroTerminatedFloats.json │ ├── pattern.json │ ├── patternProperties.json │ ├── properties.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ └── uniqueItems.json │ ├── draft6 │ ├── additionalItems.json │ ├── additionalProperties.json │ ├── allOf.json │ ├── anyOf.json │ ├── boolean_schema.json │ ├── const.json │ ├── contains.json │ ├── default.json │ ├── definitions.json │ ├── dependencies.json │ ├── enum.json │ ├── exclusiveMaximum.json │ ├── exclusiveMinimum.json │ ├── format.json │ ├── id.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maxProperties.json │ ├── maximum.json │ ├── minItems.json │ ├── minLength.json │ ├── minProperties.json │ ├── minimum.json │ ├── multipleOf.json │ ├── not.json │ ├── oneOf.json │ ├── optional │ │ ├── bignum.json │ │ ├── ecmascript-regex.json │ │ ├── float-overflow.json │ │ ├── format │ │ │ ├── date-time.json │ │ │ ├── email.json │ │ │ ├── hostname.json │ │ │ ├── ipv4.json │ │ │ ├── ipv6.json │ │ │ ├── json-pointer.json │ │ │ ├── uri-reference.json │ │ │ ├── uri-template.json │ │ │ └── uri.json │ │ └── non-bmp-regex.json │ ├── pattern.json │ ├── patternProperties.json │ ├── properties.json │ ├── propertyNames.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ └── uniqueItems.json │ ├── draft7 │ ├── additionalItems.json │ ├── additionalProperties.json │ ├── allOf.json │ ├── anyOf.json │ ├── boolean_schema.json │ ├── const.json │ ├── contains.json │ ├── default.json │ ├── definitions.json │ ├── dependencies.json │ ├── enum.json │ ├── exclusiveMaximum.json │ ├── exclusiveMinimum.json │ ├── format.json │ ├── id.json │ ├── if-then-else.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maxProperties.json │ ├── maximum.json │ ├── minItems.json │ ├── minLength.json │ ├── minProperties.json │ ├── minimum.json │ ├── multipleOf.json │ ├── not.json │ ├── oneOf.json │ ├── optional │ │ ├── bignum.json │ │ ├── content.json │ │ ├── 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 │ │ │ ├── uri-reference.json │ │ │ ├── uri-template.json │ │ │ └── uri.json │ │ └── non-bmp-regex.json │ ├── pattern.json │ ├── patternProperties.json │ ├── properties.json │ ├── propertyNames.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ └── uniqueItems.json │ └── latest │ ├── additionalProperties.json │ ├── allOf.json │ ├── anchor.json │ ├── anyOf.json │ ├── boolean_schema.json │ ├── const.json │ ├── contains.json │ ├── content.json │ ├── default.json │ ├── defs.json │ ├── dependentRequired.json │ ├── dependentSchemas.json │ ├── dynamicRef.json │ ├── enum.json │ ├── exclusiveMaximum.json │ ├── exclusiveMinimum.json │ ├── format.json │ ├── id.json │ ├── if-then-else.json │ ├── infinite-loop-detection.json │ ├── items.json │ ├── maxContains.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maxProperties.json │ ├── maximum.json │ ├── minContains.json │ ├── minItems.json │ ├── minLength.json │ ├── minProperties.json │ ├── minimum.json │ ├── multipleOf.json │ ├── not.json │ ├── oneOf.json │ ├── optional │ ├── bignum.json │ ├── 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 │ │ ├── uri-reference.json │ │ ├── uri-template.json │ │ ├── uri.json │ │ └── uuid.json │ ├── non-bmp-regex.json │ └── refOfUnknownKeyword.json │ ├── pattern.json │ ├── patternProperties.json │ ├── prefixItems.json │ ├── properties.json │ ├── propertyNames.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ ├── unevaluatedItems.json │ ├── unevaluatedProperties.json │ └── uniqueItems.json ├── test-type-null.schema.json ├── test-unique-item.schema.json ├── test1 ├── person │ └── person.schema.json └── utility.schema.json └── true.schema.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .classpath 3 | .project 4 | .settings/ 5 | .idea/ 6 | *.iml 7 | NOTES.md 8 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/JSONSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/JSONSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/JSONSchemaException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/JSONSchemaException.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/output/BasicErrorEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/output/BasicErrorEntry.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/output/BasicOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/output/BasicOutput.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/output/DetailedOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/output/DetailedOutput.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/output/Output.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/output/Output.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/parser/InputDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/parser/InputDetails.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/parser/JSONReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/parser/JSONReader.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/parser/Parser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/parser/Parser.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/AdditionalItemsSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/AdditionalItemsSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/AdditionalPropertiesSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/AdditionalPropertiesSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/AllOfSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/AllOfSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/AnyOfSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/AnyOfSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/CombinationSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/CombinationSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/ExtensionSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/ExtensionSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/IfThenElseSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/IfThenElseSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/ItemsArraySchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/ItemsArraySchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/ItemsSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/ItemsSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/OneOfSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/OneOfSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/PatternPropertiesSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/PatternPropertiesSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/PropertiesSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/PropertiesSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/PropertyNamesSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/PropertyNamesSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/RefSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/RefSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/subschema/RequiredSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/subschema/RequiredSchema.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/validation/ArrayValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/validation/ArrayValidator.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/validation/ConstValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/validation/ConstValidator.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/validation/ContainsValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/validation/ContainsValidator.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/validation/DefaultValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/validation/DefaultValidator.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/validation/DelegatingValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/validation/DelegatingValidator.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/validation/EnumValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/validation/EnumValidator.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/validation/FormatValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/validation/FormatValidator.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/validation/NumberValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/validation/NumberValidator.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/validation/PatternValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/validation/PatternValidator.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/validation/PropertiesValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/validation/PropertiesValidator.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/validation/StringValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/validation/StringValidator.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/validation/TypeValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/validation/TypeValidator.kt -------------------------------------------------------------------------------- /src/main/kotlin/net/pwall/json/schema/validation/UniqueItemsValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/main/kotlin/net/pwall/json/schema/validation/UniqueItemsValidator.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/JSONSchemaCustomValidatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/JSONSchemaCustomValidatorTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/JSONSchemaExamplesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/JSONSchemaExamplesTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/JSONSchemaItemsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/JSONSchemaItemsTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/JSONSchemaNonstandardFormatTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/JSONSchemaNonstandardFormatTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/JSONSchemaOneOfTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/JSONSchemaOneOfTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/JSONSchemaPropertiesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/JSONSchemaPropertiesTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/JSONSchemaTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/JSONSchemaTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/MetaSchemaTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/MetaSchemaTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/parser/JSONReaderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/parser/JSONReaderTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/parser/ParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/parser/ParserTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/testsuite/TestGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/testsuite/TestGroup.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/testsuite/TestItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/testsuite/TestItem.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/testsuite/TestSuiteTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/testsuite/TestSuiteTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/util.kt -------------------------------------------------------------------------------- /src/test/kotlin/net/pwall/json/schema/validation/FormatValidatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/kotlin/net/pwall/json/schema/validation/FormatValidatorTest.kt -------------------------------------------------------------------------------- /src/test/resources/empty.schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "$id": "http://pwall.net/schema/test/empty" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/resources/example-error1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/example-error1.json -------------------------------------------------------------------------------- /src/test/resources/example-error2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/example-error2.json -------------------------------------------------------------------------------- /src/test/resources/example-error3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/example-error3.json -------------------------------------------------------------------------------- /src/test/resources/example-error4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/example-error4.json -------------------------------------------------------------------------------- /src/test/resources/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/example.json -------------------------------------------------------------------------------- /src/test/resources/example.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/example.schema.json -------------------------------------------------------------------------------- /src/test/resources/example.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/example.schema.yaml -------------------------------------------------------------------------------- /src/test/resources/false.schema.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /src/test/resources/http/testhttp1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/http/testhttp1.json -------------------------------------------------------------------------------- /src/test/resources/http/testhttp2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/http/testhttp2.json -------------------------------------------------------------------------------- /src/test/resources/invalid-1.schema.json: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /src/test/resources/jar/example.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/jar/example.jar -------------------------------------------------------------------------------- /src/test/resources/metaschema/meta/applicator.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/metaschema/meta/applicator.schema.json -------------------------------------------------------------------------------- /src/test/resources/metaschema/meta/content.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/metaschema/meta/content.schema.json -------------------------------------------------------------------------------- /src/test/resources/metaschema/meta/core.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/metaschema/meta/core.schema.json -------------------------------------------------------------------------------- /src/test/resources/metaschema/meta/format.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/metaschema/meta/format.schema.json -------------------------------------------------------------------------------- /src/test/resources/metaschema/meta/meta-data.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/metaschema/meta/meta-data.schema.json -------------------------------------------------------------------------------- /src/test/resources/metaschema/meta/validation.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/metaschema/meta/validation.schema.json -------------------------------------------------------------------------------- /src/test/resources/metaschema/output/schema.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/metaschema/output/schema.schema.json -------------------------------------------------------------------------------- /src/test/resources/metaschema/schema.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/metaschema/schema.schema.json -------------------------------------------------------------------------------- /src/test/resources/person-invalid-uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/person-invalid-uuid.json -------------------------------------------------------------------------------- /src/test/resources/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/person.json -------------------------------------------------------------------------------- /src/test/resources/test-additional-false.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-additional-false.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-additional.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-additional.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-anyof.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-anyof.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-const.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-const.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-contains-minmax.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-contains-minmax.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-contains.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-contains.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-custom-validator.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-custom-validator.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-default-invalid.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-default-invalid.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-default-valid.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-default-valid.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-description-ref.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-description-ref.schema.yaml -------------------------------------------------------------------------------- /src/test/resources/test-description-text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-description-text.txt -------------------------------------------------------------------------------- /src/test/resources/test-domestic-address.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-domestic-address.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-enum.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-enum.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-example-invalid-2.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-example-invalid-2.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-example-invalid.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-example-invalid.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-example-valid.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-example-valid.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-examples-invalid.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-examples-invalid.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-examples-valid.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-examples-valid.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-if-then-else.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-if-then-else.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-international-address.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-international-address.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-item-array.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-item-array.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-item.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-item.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-nonstandard-format.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-nonstandard-format.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-not.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-not.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-oneof.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-oneof.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-pattern-properties.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-pattern-properties.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-property-names.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-property-names.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-ref.json -------------------------------------------------------------------------------- /src/test/resources/test-ref.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-ref.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-string-format.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-string-format.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-string-length.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-string-length.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-string-pattern.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-string-pattern.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/LICENSE -------------------------------------------------------------------------------- /src/test/resources/test-suite/remotes/baseUriChange/folderInteger.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/resources/test-suite/remotes/baseUriChangeFolder/folderInteger.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/resources/test-suite/remotes/baseUriChangeFolderInSubschema/folderInteger.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/resources/test-suite/remotes/integer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } 4 | -------------------------------------------------------------------------------- /src/test/resources/test-suite/remotes/name-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/remotes/name-defs.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/remotes/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/remotes/name.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/remotes/subSchemas-defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/remotes/subSchemas-defs.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/remotes/subSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/remotes/subSchemas.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/additionalItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/additionalProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/allOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/anchor.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/anyOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/boolean_schema.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/const.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/contains.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/content.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/default.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/defs.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/dependentRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/dependentRequired.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/dependentSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/dependentSchemas.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/enum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/exclusiveMaximum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/exclusiveMinimum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/format.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/id.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/if-then-else.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/if-then-else.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/infinite-loop-detection.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/items.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/maxContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/maxContains.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/maxItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/maxLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/maxProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/maximum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/minContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/minContains.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/minItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/minLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/minProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/minimum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/multipleOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/not.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/oneOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/bignum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/float-overflow.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/date-time.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/date.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/duration.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/email.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/hostname.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/idn-email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/idn-email.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/idn-hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/idn-hostname.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/ipv4.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/ipv6.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/iri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/iri-reference.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/iri.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/json-pointer.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/relative-json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/relative-json-pointer.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/time.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/uri-reference.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/uri-template.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/uri.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/format/uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/format/uuid.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/optional/refOfUnknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/optional/refOfUnknownKeyword.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/pattern.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/patternProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/properties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/propertyNames.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/recursiveRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/recursiveRef.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/ref.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/refRemote.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/required.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/type.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/unevaluatedItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/unevaluatedItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/unevaluatedProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/unevaluatedProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2019-09/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2019-09/uniqueItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/additionalProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/allOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/anchor.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/anyOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/boolean_schema.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/const.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/contains.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/content.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/default.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/defs.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/dependentRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/dependentRequired.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/dependentSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/dependentSchemas.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/dynamicRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/dynamicRef.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/enum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/exclusiveMaximum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/exclusiveMinimum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/format.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/id.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/if-then-else.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/if-then-else.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/infinite-loop-detection.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/items.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/maxContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/maxContains.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/maxItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/maxLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/maxProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/maximum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/minContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/minContains.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/minItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/minLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/minProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/minimum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/multipleOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/not.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/oneOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/bignum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/float-overflow.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/date-time.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/date.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/duration.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/email.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/hostname.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/idn-email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/idn-email.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/idn-hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/idn-hostname.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/ipv4.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/ipv6.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/iri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/iri-reference.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/iri.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/json-pointer.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/relative-json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/relative-json-pointer.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/time.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/uri-reference.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/uri-template.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/uri.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/format/uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/format/uuid.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/optional/refOfUnknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/optional/refOfUnknownKeyword.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/pattern.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/patternProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/prefixItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/prefixItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/properties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/propertyNames.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/ref.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/refRemote.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/required.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/type.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/unevaluatedItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/unevaluatedItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/unevaluatedProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/unevaluatedProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft2020-12/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft2020-12/uniqueItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/additionalItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/additionalProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/default.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/dependencies.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/disallow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/disallow.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/divisibleBy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/divisibleBy.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/enum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/extends.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/extends.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/format.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/infinite-loop-detection.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/items.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/maxItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/maxLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/maximum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/minItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/minLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/minimum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/bignum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/format/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/format/color.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/format/date-time.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/format/date.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/format/email.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/format/host-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/format/host-name.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/format/ip-address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/format/ip-address.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/format/ipv6.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/format/regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/format/time.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/format/uri.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/optional/zeroTerminatedFloats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/optional/zeroTerminatedFloats.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/pattern.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/patternProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/properties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/ref.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/refRemote.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/required.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/type.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft3/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft3/uniqueItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/additionalItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/additionalProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/allOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/anyOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/default.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/definitions.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/dependencies.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/enum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/format.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/id.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/infinite-loop-detection.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/items.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/maxItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/maxLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/maxProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/maximum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/minItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/minLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/minProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/minimum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/multipleOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/not.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/oneOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/optional/bignum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/optional/float-overflow.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/optional/format/date-time.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/optional/format/email.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/optional/format/hostname.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/optional/format/ipv4.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/optional/format/ipv6.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/optional/format/uri.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/optional/zeroTerminatedFloats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/optional/zeroTerminatedFloats.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/pattern.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/patternProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/properties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/ref.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/refRemote.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/required.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/type.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft4/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft4/uniqueItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/additionalItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/additionalProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/allOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/anyOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/boolean_schema.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/const.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/contains.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/default.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/definitions.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/dependencies.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/enum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/exclusiveMaximum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/exclusiveMinimum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/format.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/id.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/infinite-loop-detection.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/items.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/maxItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/maxLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/maxProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/maximum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/minItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/minLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/minProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/minimum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/multipleOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/not.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/oneOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/optional/bignum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/optional/float-overflow.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/optional/format/date-time.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/optional/format/email.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/optional/format/hostname.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/optional/format/ipv4.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/optional/format/ipv6.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/optional/format/json-pointer.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/optional/format/uri-reference.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/optional/format/uri-template.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/optional/format/uri.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/pattern.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/patternProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/properties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/propertyNames.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/ref.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/refRemote.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/required.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/type.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft6/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft6/uniqueItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/additionalItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/additionalProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/allOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/anyOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/boolean_schema.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/const.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/contains.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/default.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/definitions.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/dependencies.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/enum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/exclusiveMaximum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/exclusiveMinimum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/format.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/id.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/if-then-else.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/if-then-else.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/infinite-loop-detection.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/items.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/maxItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/maxLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/maxProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/maximum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/minItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/minLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/minProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/minimum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/multipleOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/not.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/oneOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/bignum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/content.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/float-overflow.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/date-time.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/date.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/email.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/hostname.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/idn-email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/idn-email.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/idn-hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/idn-hostname.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/ipv4.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/ipv6.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/iri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/iri-reference.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/iri.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/json-pointer.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/relative-json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/relative-json-pointer.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/time.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/uri-reference.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/uri-template.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/format/uri.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/pattern.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/patternProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/properties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/propertyNames.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/ref.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/refRemote.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/required.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/type.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/draft7/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/draft7/uniqueItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/additionalProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/allOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/anchor.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/anyOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/boolean_schema.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/const.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/contains.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/content.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/default.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/defs.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/dependentRequired.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/dependentRequired.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/dependentSchemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/dependentSchemas.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/dynamicRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/dynamicRef.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/enum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/exclusiveMaximum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/exclusiveMinimum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/format.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/id.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/if-then-else.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/if-then-else.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/infinite-loop-detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/infinite-loop-detection.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/items.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/maxContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/maxContains.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/maxItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/maxLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/maxProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/maximum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/minContains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/minContains.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/minItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/minLength.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/minProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/minimum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/multipleOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/not.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/oneOf.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/bignum.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/float-overflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/float-overflow.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/date-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/date-time.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/date.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/duration.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/email.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/hostname.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/idn-email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/idn-email.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/idn-hostname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/idn-hostname.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/ipv4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/ipv4.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/ipv6.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/iri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/iri-reference.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/iri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/iri.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/json-pointer.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/relative-json-pointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/relative-json-pointer.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/time.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/uri-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/uri-reference.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/uri-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/uri-template.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/uri.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/format/uuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/format/uuid.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/non-bmp-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/non-bmp-regex.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/optional/refOfUnknownKeyword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/optional/refOfUnknownKeyword.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/pattern.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/patternProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/prefixItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/prefixItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/properties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/propertyNames.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/ref.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/refRemote.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/required.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/type.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/unevaluatedItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/unevaluatedItems.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/unevaluatedProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/unevaluatedProperties.json -------------------------------------------------------------------------------- /src/test/resources/test-suite/tests/latest/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-suite/tests/latest/uniqueItems.json -------------------------------------------------------------------------------- /src/test/resources/test-type-null.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-type-null.schema.json -------------------------------------------------------------------------------- /src/test/resources/test-unique-item.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test-unique-item.schema.json -------------------------------------------------------------------------------- /src/test/resources/test1/person/person.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test1/person/person.schema.json -------------------------------------------------------------------------------- /src/test/resources/test1/utility.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwall567/json-kotlin-schema/HEAD/src/test/resources/test1/utility.schema.json -------------------------------------------------------------------------------- /src/test/resources/true.schema.json: -------------------------------------------------------------------------------- 1 | true 2 | --------------------------------------------------------------------------------