Self hosted runner label

A label for a self hosted runner

APIs.ioEngineeringPlatform

Properties

Name Type Description
id integer Unique identifier of the label.
name string Name of the label.
type string The type of label. Read-only labels are applied automatically when the runner is configured.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-runner-label-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/runner-label",
  "title": "Self hosted runner label",
  "description": "A label for a self hosted runner",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier of the label."
    },
    "name": {
      "type": "string",
      "description": "Name of the label."
    },
    "type": {
      "type": "string",
      "description": "The type of label. Read-only labels are applied automatically when the runner is configured.",
      "enum": [
        "read-only",
        "custom"
      ]
    }
  },
  "required": [
    "name"
  ]
}