GitHub Actions · Schema
Deployment
Properties
| Name | Type | Description |
|---|---|---|
| url | string | |
| id | integer | |
| node_id | string | |
| task | string | |
| environment | string | |
| description | string | |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "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"
}
}
}