Payload schema
messagestring
errorobjectoptional
namestringoptional
messagestring
codestringoptional
stackstringoptional
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"message": {
"type": "string",
"minLength": 1
},
"error": {
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"message": {
"type": "string",
"minLength": 1
},
"code": {
"type": "string",
"minLength": 1
},
"stack": {
"type": "string",
"minLength": 1
}
},
"required": [
"message"
]
}
},
"required": [
"message"
]
}