Upwork · Schema

ContractListResponse

Paginated list of contracts

FreelancingJobsTalentMarketplaceContractsHiring

Properties

Name Type Description
total integer Total number of contracts
contracts array List of contracts
View JSON Schema on GitHub

JSON Schema

graphql-contract-list-response-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-contract-list-response-schema.json",
  "title": "ContractListResponse",
  "description": "Paginated list of contracts",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of contracts",
      "example": 25
    },
    "contracts": {
      "type": "array",
      "description": "List of contracts",
      "items": {
        "$ref": "#/components/schemas/Contract"
      }
    }
  }
}