Welcome to mirror list, hosted at ThFree Co, Russian Federation.

runner.json « v4 « public_api « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d97d74a93f2590cdd82f0b3d814fab223577ce19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "type": "object",
  "required": [
    "id",
    "description",
    "ip_address",
    "active",
    "is_shared",
    "name",
    "online",
    "status"
  ],
  "properties": {
    "id": { "type": "integer" },
    "description": { "type": "string" },
    "ip_address": { "type": "string" },
    "active": { "type": "boolean" },
    "is_shared": { "type": "boolean" },
    "name": { "type": ["null", "string"] },
    "online": { "type": "boolean" },
    "status": { "type": "string" }
  },
  "additionalProperties": false
}