├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── UPGRADE-6.0.md ├── bin └── validate-json ├── composer.json ├── dist └── schema │ ├── json-schema-draft-03.json │ ├── json-schema-draft-04.json │ └── json-schema-draft-06.json └── src └── JsonSchema ├── ConstraintError.php ├── Constraints ├── BaseConstraint.php ├── CollectionConstraint.php ├── ConstConstraint.php ├── Constraint.php ├── ConstraintInterface.php ├── Drafts │ └── Draft06 │ │ ├── AdditionalItemsConstraint.php │ │ ├── AdditionalPropertiesConstraint.php │ │ ├── AllOfConstraint.php │ │ ├── AnyOfConstraint.php │ │ ├── ConstConstraint.php │ │ ├── ContainsConstraint.php │ │ ├── DependenciesConstraint.php │ │ ├── Draft06Constraint.php │ │ ├── EnumConstraint.php │ │ ├── ExclusiveMaximumConstraint.php │ │ ├── ExclusiveMinimumConstraint.php │ │ ├── Factory.php │ │ ├── FormatConstraint.php │ │ ├── ItemsConstraint.php │ │ ├── MaxItemsConstraint.php │ │ ├── MaxLengthConstraint.php │ │ ├── MaxPropertiesConstraint.php │ │ ├── MaximumConstraint.php │ │ ├── MinItemsConstraint.php │ │ ├── MinLengthConstraint.php │ │ ├── MinPropertiesConstraint.php │ │ ├── MinimumConstraint.php │ │ ├── MultipleOfConstraint.php │ │ ├── NotConstraint.php │ │ ├── OneOfConstraint.php │ │ ├── PatternConstraint.php │ │ ├── PatternPropertiesConstraint.php │ │ ├── PropertiesConstraint.php │ │ ├── PropertiesNamesConstraint.php │ │ ├── RefConstraint.php │ │ ├── RequiredConstraint.php │ │ ├── TypeConstraint.php │ │ └── UniqueItemsConstraint.php ├── EnumConstraint.php ├── Factory.php ├── FormatConstraint.php ├── NumberConstraint.php ├── ObjectConstraint.php ├── SchemaConstraint.php ├── StringConstraint.php ├── TypeCheck │ ├── LooseTypeCheck.php │ ├── StrictTypeCheck.php │ └── TypeCheckInterface.php ├── TypeConstraint.php └── UndefinedConstraint.php ├── DraftIdentifiers.php ├── Entity ├── ErrorBag.php ├── ErrorBagProxy.php └── JsonPointer.php ├── Enum.php ├── Exception ├── ExceptionInterface.php ├── InvalidArgumentException.php ├── InvalidConfigException.php ├── InvalidSchemaException.php ├── InvalidSchemaMediaTypeException.php ├── InvalidSourceUriException.php ├── JsonDecodingException.php ├── ResourceNotFoundException.php ├── RuntimeException.php ├── UnresolvableJsonPointerException.php ├── UriResolverException.php └── ValidationException.php ├── Iterator └── ObjectIterator.php ├── Rfc3339.php ├── SchemaStorage.php ├── SchemaStorageInterface.php ├── Tool ├── DeepComparer.php ├── DeepCopy.php └── Validator │ ├── RelativeReferenceValidator.php │ └── UriValidator.php ├── Uri ├── Retrievers │ ├── AbstractRetriever.php │ ├── Curl.php │ ├── FileGetContents.php │ ├── PredefinedArray.php │ └── UriRetrieverInterface.php ├── UriResolver.php └── UriRetriever.php ├── UriResolverInterface.php ├── UriRetrieverInterface.php └── Validator.php /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/SECURITY.md -------------------------------------------------------------------------------- /UPGRADE-6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/UPGRADE-6.0.md -------------------------------------------------------------------------------- /bin/validate-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/bin/validate-json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/composer.json -------------------------------------------------------------------------------- /dist/schema/json-schema-draft-03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/dist/schema/json-schema-draft-03.json -------------------------------------------------------------------------------- /dist/schema/json-schema-draft-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/dist/schema/json-schema-draft-04.json -------------------------------------------------------------------------------- /dist/schema/json-schema-draft-06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/dist/schema/json-schema-draft-06.json -------------------------------------------------------------------------------- /src/JsonSchema/ConstraintError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/ConstraintError.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/BaseConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/BaseConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/CollectionConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/CollectionConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/ConstConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/ConstConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Constraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Constraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/ConstraintInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/ConstraintInterface.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/AdditionalItemsConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/AdditionalItemsConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/AdditionalPropertiesConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/AdditionalPropertiesConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/AllOfConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/AllOfConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/AnyOfConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/AnyOfConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/ConstConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/ConstConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/ContainsConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/ContainsConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/DependenciesConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/DependenciesConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/Draft06Constraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/Draft06Constraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/EnumConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/EnumConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/ExclusiveMaximumConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/ExclusiveMaximumConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/ExclusiveMinimumConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/ExclusiveMinimumConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/Factory.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/FormatConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/FormatConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/ItemsConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/ItemsConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/MaxItemsConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/MaxItemsConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/MaxLengthConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/MaxLengthConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/MaxPropertiesConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/MaxPropertiesConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/MaximumConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/MaximumConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/MinItemsConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/MinItemsConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/MinLengthConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/MinLengthConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/MinPropertiesConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/MinPropertiesConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/MinimumConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/MinimumConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/MultipleOfConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/MultipleOfConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/NotConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/NotConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/OneOfConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/OneOfConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/PatternConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/PatternConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/PatternPropertiesConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/PatternPropertiesConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/PropertiesConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/PropertiesConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/PropertiesNamesConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/PropertiesNamesConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/RefConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/RefConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/RequiredConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/RequiredConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/TypeConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/TypeConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Drafts/Draft06/UniqueItemsConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Drafts/Draft06/UniqueItemsConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/EnumConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/EnumConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/Factory.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/FormatConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/FormatConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/NumberConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/NumberConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/ObjectConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/ObjectConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/SchemaConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/SchemaConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/StringConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/StringConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/TypeConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/TypeConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/Constraints/UndefinedConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Constraints/UndefinedConstraint.php -------------------------------------------------------------------------------- /src/JsonSchema/DraftIdentifiers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/DraftIdentifiers.php -------------------------------------------------------------------------------- /src/JsonSchema/Entity/ErrorBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Entity/ErrorBag.php -------------------------------------------------------------------------------- /src/JsonSchema/Entity/ErrorBagProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Entity/ErrorBagProxy.php -------------------------------------------------------------------------------- /src/JsonSchema/Entity/JsonPointer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Entity/JsonPointer.php -------------------------------------------------------------------------------- /src/JsonSchema/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Enum.php -------------------------------------------------------------------------------- /src/JsonSchema/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/JsonSchema/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/JsonSchema/Exception/InvalidConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Exception/InvalidConfigException.php -------------------------------------------------------------------------------- /src/JsonSchema/Exception/InvalidSchemaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Exception/InvalidSchemaException.php -------------------------------------------------------------------------------- /src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php -------------------------------------------------------------------------------- /src/JsonSchema/Exception/InvalidSourceUriException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Exception/InvalidSourceUriException.php -------------------------------------------------------------------------------- /src/JsonSchema/Exception/JsonDecodingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Exception/JsonDecodingException.php -------------------------------------------------------------------------------- /src/JsonSchema/Exception/ResourceNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Exception/ResourceNotFoundException.php -------------------------------------------------------------------------------- /src/JsonSchema/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/JsonSchema/Exception/UnresolvableJsonPointerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Exception/UnresolvableJsonPointerException.php -------------------------------------------------------------------------------- /src/JsonSchema/Exception/UriResolverException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Exception/UriResolverException.php -------------------------------------------------------------------------------- /src/JsonSchema/Exception/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Exception/ValidationException.php -------------------------------------------------------------------------------- /src/JsonSchema/Iterator/ObjectIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Iterator/ObjectIterator.php -------------------------------------------------------------------------------- /src/JsonSchema/Rfc3339.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Rfc3339.php -------------------------------------------------------------------------------- /src/JsonSchema/SchemaStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/SchemaStorage.php -------------------------------------------------------------------------------- /src/JsonSchema/SchemaStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/SchemaStorageInterface.php -------------------------------------------------------------------------------- /src/JsonSchema/Tool/DeepComparer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Tool/DeepComparer.php -------------------------------------------------------------------------------- /src/JsonSchema/Tool/DeepCopy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Tool/DeepCopy.php -------------------------------------------------------------------------------- /src/JsonSchema/Tool/Validator/RelativeReferenceValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Tool/Validator/RelativeReferenceValidator.php -------------------------------------------------------------------------------- /src/JsonSchema/Tool/Validator/UriValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Tool/Validator/UriValidator.php -------------------------------------------------------------------------------- /src/JsonSchema/Uri/Retrievers/AbstractRetriever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php -------------------------------------------------------------------------------- /src/JsonSchema/Uri/Retrievers/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Uri/Retrievers/Curl.php -------------------------------------------------------------------------------- /src/JsonSchema/Uri/Retrievers/FileGetContents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Uri/Retrievers/FileGetContents.php -------------------------------------------------------------------------------- /src/JsonSchema/Uri/Retrievers/PredefinedArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Uri/Retrievers/PredefinedArray.php -------------------------------------------------------------------------------- /src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php -------------------------------------------------------------------------------- /src/JsonSchema/Uri/UriResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Uri/UriResolver.php -------------------------------------------------------------------------------- /src/JsonSchema/Uri/UriRetriever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Uri/UriRetriever.php -------------------------------------------------------------------------------- /src/JsonSchema/UriResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/UriResolverInterface.php -------------------------------------------------------------------------------- /src/JsonSchema/UriRetrieverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/UriRetrieverInterface.php -------------------------------------------------------------------------------- /src/JsonSchema/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonrainbow/json-schema/HEAD/src/JsonSchema/Validator.php --------------------------------------------------------------------------------