Upwork · Schema

Client

A client on the Upwork platform

FreelancingJobsTalentMarketplaceContractsHiring

Properties

Name Type Description
id string Unique identifier for the client
country string Client country code
totalSpent number Total amount spent on Upwork
rating number Client rating
View JSON Schema on GitHub

JSON Schema

graphql-client-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/graphql-client-schema.json",
  "title": "Client",
  "description": "A client on the Upwork platform",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the client",
      "example": "~def456"
    },
    "country": {
      "type": "string",
      "description": "Client country code",
      "example": "US"
    },
    "totalSpent": {
      "type": "number",
      "description": "Total amount spent on Upwork",
      "example": 50000.0
    },
    "rating": {
      "type": "number",
      "description": "Client rating",
      "example": 4.8
    }
  }
}