mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 13:23:33 +03:00
22 lines
561 B
JSON
22 lines
561 B
JSON
{
|
|
"type": "object",
|
|
"required": ["type", "title", "detail", "status"],
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"description": "A machine unique code"
|
|
},
|
|
"title": {
|
|
"type": "string",
|
|
"description": "A unique title"
|
|
},
|
|
"detail": {
|
|
"type": "string",
|
|
"description": "A human-friendly error description"
|
|
},
|
|
"status": {
|
|
"type": "number",
|
|
"description": "HTTP response status code"
|
|
}
|
|
}
|
|
}
|