{ "$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" } } } }