{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "bulk errors", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "action": { "type": "string" }, "entity_type": { "type": "string" }, "index": { "type": "integer" }, "errors": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "code": { "type": "string" }, "field": { "type": "string" }, "message": { "type": "string" } } } } } } }