summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/user/basic.json
blob: bf330d8278c156b8e985a190d786310209ec9a50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "type": ["object", "null"],
  "required": [
    "id",
    "state",
    "avatar_url",
    "web_url"
  ],
  "properties": {
    "id": { "type": "integer" },
    "state": { "type": "string" },
    "avatar_url": { "type": "string" },
    "web_url": { "type": "string" }
  }
}