{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/docspring/main/json-schema/multiple_errors_response.json", "title": "multiple_errors_response", "type": "object", "properties": { "status": { "type": "string", "enum": [ "error" ] }, "errors": { "type": "array", "items": { "type": "string" } } }, "required": [ "status", "errors" ], "additionalProperties": false }