Upwork · JSON Structure

Graphql Job Search Response Structure

Paginated job search results

Type: object Properties: 3
FreelancingJobsTalentMarketplaceContractsHiring

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

Properties

total paging jobs

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-job-search-response-structure.json",
  "name": "JobSearchResponse",
  "description": "Paginated job search results",
  "type": "object",
  "properties": {
    "total": {
      "type": "int32",
      "description": "Total number of matching jobs",
      "example": 1250
    },
    "paging": {
      "$ref": "#/components/schemas/Paging"
    },
    "jobs": {
      "type": "array",
      "description": "List of job postings",
      "items": {
        "$ref": "#/components/schemas/Job"
      }
    }
  }
}