Responses can be of three base types:
1. Successful response representing an Object:
{
"success": "true",
"some_key": {
"...": "..."
}
}
2. Successful response representing an Array:
{
"success": "true",
"items": [
{
"...": "..."
}
]
}
3. Error response:
{
"success": "false",
"message": "...",
"...": "..."
}