action gitea_org_list_team_repo { label: "List a particular repo of team" provider: gitea method: GET path: "/teams/{id}/repos/{org}/{repo}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } org: { type: "string" } repo: { type: "string" } } required: ["id", "org", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }