debian-mirror-gitlab/spec/fixtures/api/schemas/entities/member_user_default.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
864 B
JSON
Raw Normal View History

2021-03-08 18:12:59 +05:30
{
"type": "object",
2022-06-21 17:19:12 +05:30
"required": [
"id",
"name",
"username",
"created_at",
"last_activity_on",
"avatar_url",
"web_url",
"blocked",
"show_status"
],
2021-03-08 18:12:59 +05:30
"properties": {
"id": { "type": "integer" },
"name": { "type": "string" },
"username": { "type": "string" },
2022-06-21 17:19:12 +05:30
"created_at": { "type": ["string"] },
2021-03-08 18:12:59 +05:30
"avatar_url": { "type": ["string", "null"] },
"web_url": { "type": "string" },
"blocked": { "type": "boolean" },
"two_factor_enabled": { "type": "boolean" },
2021-03-11 19:13:27 +05:30
"availability": { "type": ["string", "null"] },
2022-06-21 17:19:12 +05:30
"last_activity_on": { "type": ["string", "null"] },
2021-03-08 18:12:59 +05:30
"status": {
"type": "object",
"required": ["emoji"],
"properties": {
"emoji": { "type": "string" }
},
"additionalProperties": false
2022-04-04 11:22:00 +05:30
},
"show_status": { "type": "boolean" }
2021-04-29 21:17:54 +05:30
}
2021-03-08 18:12:59 +05:30
}