{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/censys/refs/heads/main/json-schema/platform-censeyejobslistresponse-schema.json", "title": "CenseyeJobsListResponse", "description": "CenseyeJobsListResponse schema from Censys Platform API", "type": "object", "properties": { "jobs": { "description": "List of CensEye jobs.", "items": { "$ref": "#/components/schemas/CenseyeJob" }, "type": [ "array", "null" ] }, "next_page_token": { "description": "Token to retrieve the next page of jobs.", "type": "string" } }, "required": [ "jobs" ], "additionalProperties": false }