Forgejo · Schema

RegisterRunnerResponse contains the details of the just registered runner.

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
id integer
token string
uuid string
View JSON Schema on GitHub

JSON Schema

registerrunnerresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RegisterRunnerResponse contains the details of the just registered runner.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "ID"
    },
    "token": {
      "type": "string",
      "x-go-name": "Token"
    },
    "uuid": {
      "type": "string",
      "x-go-name": "UUID"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}