hasbridge / json-schema-validator
PHP 5.3 implementation of json schema validation
Installs: 437 592
Dependents: 3
Suggesters: 0
Security: 0
Stars: 125
Watchers: 18
Forks: 34
Open Issues: 15
Requires
- php: >=5.3.2
This package is not auto-updated.
Last update: 2024-11-03 04:17:06 UTC
README
This library provides JSON schema validation using the schema found at http://json-schema.org. Note that it is not yet feature complete, but does support basic validation. The JSON schema draft can be found at http://tools.ietf.org/html/draft-zyp-json-schema-03
Requirements
- PHP 5.3 or greater (requires namespace and closure support)
Usage
$someJson = '{"foo":"bar"}';
$jsonObject = json_decode($someJson);
$validator = new JsonValidator('/path/to/yourschema.json');
$validator->validate($jsonObject);
Supported Types
Types may be defined as either a single string type name, or an array of allowable type names.
- string
- number
- integer
- boolean
- object
- array
- null
- any
Supported Definitions
Not all definitions are yet supported, but here is a list of those which are:
- properties (object)
- additionalProperties (object)
- required (all)
- pattern (string)
- minLength (string)
- maxLength (string)
- format (string, number, integer)
- minimum (number, integer)
- maximum (number, integer)
- exclusiveMinimum (number, integer)
- exclusiveMaximum (number, integer)
- divisibleBy (number, integer)
- enum (array)
- minItems (array)
- maxItems (array)
- uniqueItems (array)
- items (array)
- disallow (all)
The following definitions are not yet supported:
- patternProperties
- dependencies
- extends
- id
- $ref
- $schema