{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Job", "type": "object", "properties": { "id": { "type": "integer", "description": "The id of the job." }, "run_id": { "type": "integer", "description": "The id of the associated workflow run." }, "run_url": { "type": "string" }, "run_attempt": { "type": "integer" }, "node_id": { "type": "string" }, "head_sha": { "type": "string" }, "url": { "type": "string" }, "html_url": { "type": "string" }, "status": { "type": "string" }, "conclusion": { "type": "string" }, "created_at": { "type": "string" }, "started_at": { "type": "string" }, "completed_at": { "type": "string" }, "name": { "type": "string", "description": "The name of the job." }, "steps": { "type": "array" }, "labels": { "type": "array" }, "runner_id": { "type": "integer" }, "runner_name": { "type": "string" }, "runner_group_id": { "type": "integer" }, "runner_group_name": { "type": "string" }, "workflow_name": { "type": "string" } } }