Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions demo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## JsonSchema\Validator Demo

This demo script uses the example from the root README.md and provides sample JSON files for testing `JsonSchema\Validator`.

To change or replace the JSON schema document, please edit `/path/to/json-schema/demo/schema.json`.

To change or replace the JSON document that is validated, please edit `/path/to/json-schema/demo/data.json`.

To run the demo, change the path in the following example and run it in your terminal.

```
cd /path/to/json-schema/demo
php demo.php // The supplied JSON validates against the schema.
```
3 changes: 3 additions & 0 deletions demo/data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"foo":"bar"
}
17 changes: 17 additions & 0 deletions demo/demo.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php
require(__DIR__ . '/../vendor/autoload.php');

$data = json_decode(file_get_contents('data.json'));

// Validate
$validator = new JsonSchema\Validator;
$validator->check($data, (object)['$ref' => 'file://' . realpath('schema.json')]);

if ($validator->isValid()) {
echo "The supplied JSON validates against the schema.\n";
} else {
echo "JSON does not validate. Violations:\n";
foreach ($validator->getErrors() as $error) {
echo sprintf("[%s] %s\n", $error['property'], $error['message']);
}
}
3 changes: 3 additions & 0 deletions demo/schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"type": "object"
}