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

agent_token.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: 8251ddd4de165f9f02b64184ef8aae11d9341909 (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",
    "name",
    "description",
    "agent_id",
    "status",
    "created_at",
    "created_by_user_id",
    "last_used_at"
  ],
  "properties": {
    "id": { "type": "integer" },
    "name": { "type": "string" },
    "description": { "type": ["string", "null"] },
    "agent_id": { "type": "integer" },
    "status": { "type": "string" },
    "created_at": { "type": "string", "format": "date-time" },
    "created_by_user_id": { "type": "integer" },
    "last_used_at": { "type": ["string", "null"], "format": "date-time" }
  },
  "additionalProperties": false
}