{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "error": { "type": "object", "properties": { "messages": { "type": "array", "items": { "type": "object", "properties": { "code": { "type": "string" }, "message": { "type": "string" } }, "required": [ "code", "message" ] } }, "description": { "type": "string" } }, "required": [ "messages", "description" ] } }, "required": [ "error" ] }