GitHub Actions · Schema
ActionsVariable
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the variable. |
| value | string | The value of the variable. |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ActionsVariable",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the variable."
},
"value": {
"type": "string",
"description": "The value of the variable."
},
"created_at": {
"type": "string"
},
"updated_at": {
"type": "string"
}
}
}