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

resource_access_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: 3636c970e8389f531afc512e7546a89cb8e18eec (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
25
26
27
28
29
30
31
{
  "type": "object",
  "required": [
    "id",
    "name",
    "user_id",
    "active",
    "created_at",
    "expires_at",
    "revoked",
    "access_level",
    "scopes",
    "last_used_at"
  ],
  "properties": {
    "id": { "type": "integer" },
    "name": { "type": "string" },
    "user_id": { "type": "integer" },
    "active": { "type": "boolean" },
    "created_at": { "type": "string", "format": "date-time" },
    "expires_at": { "type": ["string", "null"], "format": "date" },
    "revoked": { "type": "boolean" },
    "access_level": { "type": "integer" },
    "scopes": {
      "type": "array",
      "items": { "type": "string" }
    },
    "last_used_at": { "type": ["string", "null"], "format": "date-time" }
  },
  "additionalProperties": false
}