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

members.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: 38ad64ad061e1982258d727996da16e6b18fb5cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "type": "array",
  "items": {
    "type": "object",
    "properties" : {
      "id": { "type": "integer" },
      "name": { "type": "string" },
      "username": { "type": "string" },
      "state": { "type": "string" },
      "avatar_url": { "type": ["string", "null"] },
      "web_url": { "type": ["string", "null"] },
      "access_level": { "type": "integer" },
      "expires_at": { "type": ["date", "null"] },
      "is_using_seat": { "type": "boolean" }
    },
    "required": [
      "id", "name", "username", "state",
      "web_url", "access_level", "expires_at"
    ],
    "additionalProperties": false
  }
}