GitHub Actions · JSON Structure

Github Actions Deployment Structure

Type: object Properties: 8

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

Properties

url id node_id task environment description created_at updated_at

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "Deployment",
  "type": "object",
  "properties": {
    "url": {
      "type": "string"
    },
    "id": {
      "type": "integer"
    },
    "node_id": {
      "type": "string"
    },
    "task": {
      "type": "string"
    },
    "environment": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    }
  }
}