summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/members.json
blob: 695f00b0040d1b6bd3a4c401794a0fd2037c2ab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "type": "array",
  "items": {
    "type": "object",
    "properties" : {
      "id": { "type": "integer" },
      "name": { "type": "string" },
      "username": { "type": "string" },
      "state": { "type": "string" },
      "avatar_url": { "type": ["string", "null"] },
      "web_url": { "type": ["string", "null"] },
      "access_level": { "type": "integer" },
      "expires_at": { "type": ["date", "null"] },
      "is_using_seat": { "type": "boolean" }
    },
    "required": [
      "id", "name", "username", "state",
      "web_url", "access_level", "expires_at", "avatar_url"
    ]
  }
}