Upwork · JSON Structure

Rest Team Structure

An Upwork team within an organization

Type: object Properties: 4
FreelancingJobsTalentMarketplaceContractsHiring

Team is a JSON Structure definition published by Upwork, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name status company_id

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/upwork/refs/heads/main/json-structure/rest-team-structure.json",
  "name": "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"
    }
  }
}