GitHub Actions · Schema

JobStep

Properties

Name Type Description
name string
status string
conclusion string
number integer
started_at string
completed_at string
View JSON Schema on GitHub

JSON Schema

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