# runner

From **GitHub v3 REST API**.

A self hosted runner

- Type: `object`

## Properties

### `busy`

- Required: true
- Type: `boolean`

### `id`

- Required: true
- Type: `integer`
- Example: `5`

The id of the runner.

### `labels`

- Required: true
- Type: `array`

### `name`

- Required: true
- Type: `string`
- Example: `iMac`

The name of the runner.

### `os`

- Required: true
- Type: `string`
- Example: `macos`

The Operating System of the runner.

### `status`

- Required: true
- Type: `string`
- Example: `online`

The status of the runner.

## JSON Schema

```json
{"description":"A self hosted runner","properties":{"busy":{"type":"boolean"},"id":{"description":"The id of the runner.","example":5,"type":"integer"},"labels":{"items":{"$ref":"#/components/schemas/runner-label"},"type":"array"},"name":{"description":"The name of the runner.","example":"iMac","type":"string"},"os":{"description":"The Operating System of the runner.","example":"macos","type":"string"},"status":{"description":"The status of the runner.","example":"online","type":"string"}},"required":["id","name","os","status","busy","labels"],"title":"Self hosted runners","type":"object"}
```
