{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StatusUpdateRequest",
"title": "StatusUpdateRequest",
"additionalProperties": false,
"description": "The list of statuses that will be updated.",
"properties": {
"statuses": {
"description": "The list of statuses that will be updated.",
"items": {
"$ref": "#/components/schemas/StatusUpdate"
},
"type": "array"
}
},
"required": [
"statuses"
],
"type": "object"
}