GitHub Actions · Schema

Job

Properties

Name Type Description
id integer The id of the job.
run_id integer The id of the associated workflow run.
run_url string
run_attempt integer
node_id string
head_sha string
url string
html_url string
status string
conclusion string
created_at string
started_at string
completed_at string
name string The name of the job.
steps array
labels array
runner_id integer
runner_name string
runner_group_id integer
runner_group_name string
workflow_name string
View JSON Schema on GitHub

JSON Schema

github-actions-job-schema.json Raw ↑
{
  "$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"
    }
  }
}