APIs.io Engineering Platform · Schema
Self hosted runners
A self hosted runner
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The id of the runner. |
| runner_group_id | integer | The id of the runner group. |
| 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",
"$id": "#/components/schemas/runner",
"title": "Self hosted runners",
"description": "A self hosted runner",
"type": "object",
"properties": {
"id": {
"description": "The id of the runner.",
"type": "integer",
"example": 5
},
"runner_group_id": {
"description": "The id of the runner group.",
"type": "integer",
"example": 1
},
"name": {
"description": "The name of the runner.",
"type": "string",
"example": "iMac"
},
"os": {
"description": "The Operating System of the runner.",
"type": "string",
"example": "macos"
},
"status": {
"description": "The status of the runner.",
"type": "string",
"example": "online"
},
"busy": {
"type": "boolean"
},
"labels": {
"type": "array",
"items": {
"$ref": "#/components/schemas/runner-label"
}
}
},
"required": [
"id",
"name",
"os",
"status",
"busy",
"labels"
]
}