{ "type": "object", "properties": { "cloudId": { "type": "string", "description": "Atlassian cloud ID from OAuth accessible resources" }, "issueIdOrKey": { "type": "string", "description": "Jira issue ID or key" }, "transition": { "type": "object", "description": "Transition object with id field, e.g. {\"id\": \"21\"}" }, "fields": { "type": "object", "description": "Optional field updates to apply during the transition" }, "comment": { "anyOf": [ { "type": "string", "description": "Plain text comment to convert to update.comment[].add.body in Atlassian Document Format." }, { "type": "object", "description": "Transition comment object. If it has a body field, the body may be plain text or an ADF document." } ], "description": "Optional transition comment. Pass plain text or a Jira transition comment object; the API sends it as update.comment[].add." }, "update": { "type": "object", "description": "Jira issue update operations. Plain text transition comments are converted to update.comment[].add.body." } }, "required": [ "cloudId", "issueIdOrKey", "transition" ], "description": "Input schema for the jira__transition_issue tool."}