mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-25 02:10:18 -06:00
23 lines
561 B
JSON
23 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"
|
|
}
|
|
}
|
|
}
|