Upwork · Schema

Team

An Upwork team within an organization

FreelancingJobsTalentMarketplaceContractsHiring

Properties

Name Type Description
id string
name string
status string
company_id string
View JSON Schema on GitHub

JSON Schema

rest-team-schema.json Raw ↑
{
  "$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"
    }
  }
}