Files
superset2/docs/developer_docs_versioned_docs/version-6.1.0/api/read-off-of-the-redis-events-stream.StatusCodes.json
2026-07-28 21:39:01 +07:00

74 lines
1.9 KiB
JSON

{
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"properties": {
"result": {
"items": {
"properties": {
"channel_id": { "type": "string" },
"errors": {
"items": { "type": "object" },
"type": "array"
},
"id": { "type": "string" },
"job_id": { "type": "string" },
"result_url": { "type": "string" },
"status": { "type": "string" },
"user_id": { "type": "integer" }
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"example": {
"result": [
{
"channel_id": "string",
"errors": [],
"id": "string",
"job_id": "string",
"result_url": "string",
"status": "string",
"user_id": 1
}
]
}
}
},
"description": "Async event results"
},
"401": {
"content": {
"application/json": {
"schema": {
"properties": { "message": { "type": "string" } },
"type": "object"
},
"example": { "message": "Unauthorized: Authentication required" }
}
},
"description": "Unauthorized"
},
"500": {
"content": {
"application/json": {
"schema": {
"properties": { "message": { "type": "string" } },
"type": "object"
},
"example": {
"message": "Internal server error: An unexpected error occurred"
}
}
},
"description": "Fatal error"
}
}
}