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: 695f00b0040d1b6bd3a4c401794a0fd2037c2ab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "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", "avatar_url"
    ]
  }
}