GitHub Actions · Schema
JobStep
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| status | string | |
| conclusion | string | |
| number | integer | |
| started_at | string | |
| completed_at | string |
JSON Schema
{
"$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"
}
}
}