GitHub Actions · Schema
SelfHostedRunner
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The id of the runner. |
| name | string | The name of the runner. |
| os | string | The operating system of the runner. |
| status | string | The status of the runner. |
| busy | boolean | |
| labels | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SelfHostedRunner",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The id of the runner."
},
"name": {
"type": "string",
"description": "The name of the runner."
},
"os": {
"type": "string",
"description": "The operating system of the runner."
},
"status": {
"type": "string",
"description": "The status of the runner."
},
"busy": {
"type": "boolean"
},
"labels": {
"type": "array"
}
}
}