{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CampaignSendJobPartialUpdateQueryResourceObject",
"title": "CampaignSendJobPartialUpdateQueryResourceObject",
"type": "object",
"properties": {
"type": {
"$ref": "#/components/schemas/CampaignSendJobEnum"
},
"id": {
"description": "The ID of the currently sending campaign to cancel or revert",
"type": "string"
},
"attributes": {
"type": "object",
"properties": {
"action": {
"description": "The action you would like to take with this send job from among 'cancel' and 'revert'",
"type": "string",
"example": "cancel",
"enum": [
"cancel",
"revert"
]
}
},
"required": [
"action"
]
}
},
"required": [
"type",
"id",
"attributes"
]
}