mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-23 07:33:58 -06:00
33 lines
1001 B
JSON
33 lines
1001 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"
|
|
},
|
|
"code": {
|
|
"type": "string",
|
|
"description": "**[Deprecated] Use type instead. Not returned for v2 of the REST API** A machine unique code",
|
|
"deprecated": true
|
|
},
|
|
"message": {
|
|
"type": "string",
|
|
"description": "**[Deprecated] Use detail instead. Not returned for v2 of the REST API** A human-friendly error message",
|
|
"deprecated": true
|
|
}
|
|
}
|
|
}
|