12 lines
239 B
JSON
12 lines
239 B
JSON
{ "$schema": "http://json-schema.org/schema",
|
|
"type": "object",
|
|
"description": "Error message",
|
|
"properties": {
|
|
"message": { "type": "string" },
|
|
"code": { "type": integer }
|
|
},
|
|
"required": [
|
|
"message",
|
|
"code"
|
|
]
|
|
} |