{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/upwork/refs/heads/main/json-schema/rest-team-schema.json", "title": "Team", "description": "An Upwork team within an organization", "type": "object", "properties": { "id": { "type": "string", "example": "team-abc123" }, "name": { "type": "string", "example": "Engineering Team" }, "status": { "type": "string", "enum": [ "active", "inactive" ], "example": "active" }, "company_id": { "type": "string", "example": "company-abc123" } } }