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

agent_token_basic.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: 90d9f35d0e17d034e7ddd7ee40e114117d1634d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "type": "object",
  "required": [
    "id",
    "name",
    "description",
    "agent_id",
    "status",
    "created_at",
    "created_by_user_id"
  ],
  "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" }
  },
  "additionalProperties": false
}