GitHub Actions · Schema
Workflow
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier of the workflow. |
| node_id | string | |
| name | string | The name of the workflow. |
| path | string | The path of the workflow file relative to the root of the repository. |
| state | string | |
| created_at | string | |
| updated_at | string | |
| url | string | |
| html_url | string | |
| badge_url | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Workflow",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier of the workflow."
},
"node_id": {
"type": "string"
},
"name": {
"type": "string",
"description": "The name of the workflow."
},
"path": {
"type": "string",
"description": "The path of the workflow file relative to the root of the repository."
},
"state": {
"type": "string"
},
"created_at": {
"type": "string"
},
"updated_at": {
"type": "string"
},
"url": {
"type": "string"
},
"html_url": {
"type": "string"
},
"badge_url": {
"type": "string"
}
}
}