GitHub Actions · JSON Structure

Github Actions Job Step Structure

Type: object Properties: 6

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

Properties

name status conclusion number started_at completed_at

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "JobStep",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "conclusion": {
      "type": "string"
    },
    "number": {
      "type": "integer"
    },
    "started_at": {
      "type": "string"
    },
    "completed_at": {
      "type": "string"
    }
  }
}