action gitea_issue_list_issue_comment_attachments { label: "List comment's attachments" provider: gitea method: GET path: "/repos/{owner}/{repo}/issues/comments/{id}/assets" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } owner: { type: "string" } repo: { type: "string" } } required: ["id", "owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }