GitHub Actions · JSON Structure

Github Actions Job Structure

Type: object Properties: 21

Job is a JSON Structure definition published by GitHub Actions, describing 21 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

id run_id run_url run_attempt node_id head_sha url html_url status conclusion created_at started_at completed_at name steps labels runner_id runner_name runner_group_id runner_group_name workflow_name

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "Job",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "run_id": {
      "type": "integer"
    },
    "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"
    },
    "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"
    }
  }
}