I would expect to receive some failures given the following JSON document: ```json { "$schema": "http://iglucentral.com/schemas/com.snowplowanalytics.self-desc/schema/jsonschema/1-0-0#" } ``` and code ```php $validator = new JsonSchema\Validator; $validator->validate($data); var_dump($validator->getErrors()); ``` But it is reporting as valid. The JSON document itself contains the schema and I shouldn't need to pass it in.