Upwork · JSON Structure

Graphql Contract List Response Structure

Paginated list of contracts

Type: object Properties: 2
FreelancingJobsTalentMarketplaceContractsHiring

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

Properties

total contracts

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