{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StatusMapping", "title": "StatusMapping", "additionalProperties": false, "description": "Details about the mapping from a status to a new status for an issue type.", "properties": { "issueTypeId": { "description": "The ID of the issue type.", "type": "string" }, "newStatusId": { "description": "The ID of the new status.", "type": "string" }, "statusId": { "description": "The ID of the status.", "type": "string" } }, "required": [ "issueTypeId", "newStatusId", "statusId" ], "type": "object" }