action gitea_org_list_team_repos { label: "List a team's repos" provider: gitea method: GET path: "/teams/{id}/repos" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } limit: { type: "integer" } page: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }