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

basic.json « user « 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: 2d815be32a6089805279348c5c0e166ec41a9e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "type": ["object", "null"],
  "required": [
    "id",
    "name",
    "username",
    "state",
    "avatar_url",
    "web_url"
  ],
  "properties": {
    "id": { "type": "integer" },
    "name": { "type": "string" },
    "username": { "type": "string" },
    "state": { "type": "string" },
    "avatar_url": { "type": "string" },
    "web_url": { "type": "string" }
  }
}