GitHub Actions · JSON Structure

Github Actions Workflow Structure

Type: object Properties: 10

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

Properties

id node_id name path state created_at updated_at url html_url badge_url

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "Workflow",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "node_id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "html_url": {
      "type": "string"
    },
    "badge_url": {
      "type": "string"
    }
  }
}