aaronbullard/php-schema

View on GitHub
demo/Schemas/person.json

Summary

Maintainability
Test Coverage
{
    "type": "object",
    "properties": {
        "firstName": {"type": "string"},
        "lastName": {"type": "string"},
        "age": {"type": "integer"},
        "address": {"$ref": "address.json"},
        "phoneNumber": {"type": "object"}
    },
    "required": ["firstName", "lastName"],
    "additionalProperties": false
}