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