action gitea_team_search { label: "Search for teams within an organization" provider: gitea method: GET path: "/orgs/{org}/teams/search" encoding: json input: { type: "object" properties: { include_desc: { type: "boolean" } limit: { type: "integer" } org: { type: "string" } page: { type: "integer" } q: { type: "string" } } required: ["org"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "Team represents a team in an organization" properties: { can_create_org_repo: { type: "boolean" } description: { type: "string" } id: { type: "integer" format: "int64" } includes_all_repositories: { type: "boolean" } name: { type: "string" } organization: { type: "object" description: "Organization represents an organization" properties: { avatar_url: { type: "string" } description: { type: "string" } full_name: { type: "string" } id: { type: "integer" format: "int64" } location: { type: "string" } name: { type: "string" } repo_admin_change_team_access: { type: "boolean" } username: { type: "string" description: "deprecated" } visibility: { type: "string" } website: { type: "string" } } } permission: { type: "string" enum: ["none", "read", "write", "admin", "owner"] } units: { type: "array" items: { type: "string" } } units_map: { type: "object" } } } } ok: { type: "boolean" } } } }