From b54c0e6ea11d79f610be7a2225232658e8c2237d Mon Sep 17 00:00:00 2001 From: digitalkaoz Date: Fri, 9 Dec 2011 14:18:23 +0100 Subject: [PATCH 1/2] added composer.json --- composer.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..a304088 --- /dev/null +++ b/composer.json @@ -0,0 +1,19 @@ +{ + "name": "justinrainbow/json-schema", + "description": "a library to validate a json schema" + "keywords": ["json", "schema"], + "homepage": "https://github.com/justinrainbow/json-schema", + "type": "library", + "license": "MIT", + "version": "1.0.0", + "authors": [ + { + "name": "Justin Rainbow" + } + ], + + "autoload": { + "psr-0": { "JsonSchema": "libs/", "JsonSchemaUndefined": "libs/"} + } +} + From fe3da568690858973ba727a5e3aa808c615b99df Mon Sep 17 00:00:00 2001 From: digitalkaoz Date: Fri, 9 Dec 2011 14:18:59 +0100 Subject: [PATCH 2/2] fixed README, fixed required/optional (optional is default) --- README.md | 20 ++++++++++++-------- libs/JsonSchema.php | 2 +- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 8e63f25..6a94004 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,17 @@ ## Usage - $json = json_decode($input_json); - $schema = json_decode($input_schema); - $result = JsonSchema::validate($json, $schema); - - if ($result->valid) { +```php +valid) { die('success!'); - } - else { +} +else { die('fail...'); - } +} +``` \ No newline at end of file diff --git a/libs/JsonSchema.php b/libs/JsonSchema.php index d5e0671..a324a3e 100644 --- a/libs/JsonSchema.php +++ b/libs/JsonSchema.php @@ -169,7 +169,7 @@ class JsonSchema { } // verify optional values if (is_object($value) && $value instanceOf JsonSchemaUndefined) { - if ( isset($schema->optional) ? !$schema->optional : true) { + if ( isset($schema->required) ? !$schema->required : true) { self::adderror($path,"is missing and it is not optional"); } }