summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/github/user.json
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
}