action bitbucket_get_repositories_workspace_repo_slug_issues_issue_id_changes_cha { label: "Get issue change object" description: "Returns the specified issue change object.\n\nThis resource is only available on repositories that have the issue\ntracker enabled." provider: bitbucket method: GET path: "/repositories/{workspace}/{repo_slug}/issues/{issue_id}/changes/{change_id}" encoding: json output: { type: "object" description: "An issue change." required: ["type"] properties: { changes: { type: "object" properties: { assignee: { type: "object" properties: { new: { type: "string" } old: { type: "string" } } additionalProperties: false } component: { type: "object" properties: { new: { type: "string" } old: { type: "string" } } additionalProperties: false } content: { type: "object" properties: { new: { type: "string" } old: { type: "string" } } additionalProperties: false } kind: { type: "object" properties: { new: { type: "string" } old: { type: "string" } } additionalProperties: false } milestone: { type: "object" properties: { new: { type: "string" } old: { type: "string" } } additionalProperties: false } priority: { type: "object" properties: { new: { type: "string" } old: { type: "string" } } additionalProperties: false } state: { type: "object" properties: { new: { type: "string" } old: { type: "string" } } additionalProperties: false } title: { type: "object" properties: { new: { type: "string" } old: { type: "string" } } additionalProperties: false } version: { type: "object" properties: { new: { type: "string" } old: { type: "string" } } additionalProperties: false } } additionalProperties: false } created_on: { type: "string" format: "date-time" } issue: { type: "object" } links: { type: "object" properties: { issue: { type: "object" description: "A link to a resource related to this object." properties: { href: { type: "string" format: "uri" } name: { type: "string" } } additionalProperties: false } self: { type: "object" description: "A link to a resource related to this object." properties: { href: { type: "string" format: "uri" } name: { type: "string" } } additionalProperties: false } } additionalProperties: false } message: { type: "object" properties: { html: { type: "string" description: "The user's content rendered as HTML." } markup: { type: "string" description: "The type of markup language the raw content is to be interpreted in." enum: ["markdown", "creole", "plaintext"] } raw: { type: "string" description: "The text as it was typed by a user." } } additionalProperties: false } name: { type: "string" } type: { type: "string" } user: { type: "object" } } } }