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

user.json « github « entities « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d772a0c648eda9f0ccfe5661a6d9f8f81487a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "type": "object",
  "required": ["id", "login", "url", "avatar_url"],
  "properties" : {
    "id": { "type": "integer" },
    "login": { "type": "string" },
    "url": { "type": "string" },
    "avatar_url": { "type": "string" },
    "html_url": { "type":  "string" }
  },
  "additionalProperties": false
}