# runner-label

From **GitHub v3 REST API**.

A label for a self hosted runner

- Type: `object`

## Properties

### `id`

- Required: false
- Type: `integer`

Unique identifier of the label.

### `name`

- Required: true
- Type: `string`

Name of the label.

### `type`

- Required: false
- Type: `string`
- Allowed values: `"read-only"`, `"custom"`

The type of label. Read-only labels are applied automatically when the runner is configured.

## JSON Schema

```json
{"description":"A label for a self hosted runner","properties":{"id":{"description":"Unique identifier of the label.","type":"integer"},"name":{"description":"Name of the label.","type":"string"},"type":{"description":"The type of label. Read-only labels are applied automatically when the runner is configured.","enum":["read-only","custom"],"type":"string"}},"required":["name"],"title":"Self hosted runner label","type":"object"}
```
