{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WorkflowAssociationStatusMapping",
"title": "WorkflowAssociationStatusMapping",
"additionalProperties": false,
"description": "The list of status mappings.",
"properties": {
"newStatusId": {
"description": "The ID of the status in the new workflow.",
"type": "string"
},
"oldStatusId": {
"description": "The ID of the status in the old workflow that isn't present in the new workflow.",
"type": "string"
}
},
"required": [
"newStatusId",
"oldStatusId"
],
"type": "object"
}