summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/user/basic.json
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" }
  }
}