{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BatchResponse",
"title": "BatchResponse",
"type": "object",
"properties": {
"status_code": {
"type": "integer",
"description": "The HTTP status code for the individual action.",
"example": 200
},
"headers": {
"type": "object",
"description": "HTTP headers for the individual action."
},
"body": {
"type": "object",
"description": "The body of the response for the individual action."
}
}
}