Properties
| Name | Type | Description |
|---|---|---|
| conclusion | object | |
| created_at | string | |
| environment | string | |
| html_url | string | |
| id | integer | |
| name | object | |
| status | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/webhooks_workflow_job_run",
"title": "webhooks_workflow_job_run",
"type": "object",
"properties": {
"conclusion": {
"nullable": true
},
"created_at": {
"type": "string"
},
"environment": {
"type": "string"
},
"html_url": {
"type": "string"
},
"id": {
"type": "integer"
},
"name": {
"nullable": true
},
"status": {
"type": "string"
},
"updated_at": {
"type": "string"
}
},
"required": [
"id",
"name",
"status",
"conclusion",
"html_url",
"created_at",
"updated_at",
"environment"
]
}