{
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of the runner. Must be between 1 and 64 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.",
      "type": "string"
    },
    "runner_group_id": {
      "description": "The existing runner group to add this runner to.",
      "type": "integer"
    },
    "maximum_runners": {
      "description": "The maximum amount of runners to scale up to. Runners will not auto-scale above this number. Use this setting to limit your cost.",
      "type": "integer"
    },
    "enable_static_ip": {
      "description": "Whether this runner should be updated with a static public IP. Note limit on account. To list limits on account, use `GET actions/hosted-runners/limits`",
      "type": "boolean"
    },
    "size": {
      "description": "The machine size of the runner. To list available sizes, use `GET actions/hosted-runners/machine-sizes`",
      "type": "string"
    },
    "image_id": {
      "description": "The unique identifier of the runner image. To list available images, use `GET /actions/hosted-runners/images/github-owned`, `GET /actions/hosted-runners/images/partner`, or `GET /actions/hosted-runners/images/custom`.",
      "type": "string"
    },
    "image_version": {
      "description": "The version of the runner image to deploy. This is relevant only for runners using custom images.",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}