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

23 lines
484 B
JSON
Raw Normal View History

2018-03-17 18:26:18 +05:30
{
"type": "object",
"required": [
"id",
"state",
"avatar_url",
"web_url",
2018-12-05 23:21:45 +05:30
"path",
"name",
"username"
2018-03-17 18:26:18 +05:30
],
"properties": {
"id": { "type": "integer" },
"state": { "type": "string" },
"avatar_url": { "type": "string" },
"web_url": { "type": "string" },
2018-12-05 23:21:45 +05:30
"path": { "type": "string" },
"name": { "type": "string" },
"username": { "type": "string" },
2020-04-22 19:07:51 +05:30
"status_tooltip_html": { "$ref": "../types/nullable_string.json" }
2020-05-24 23:13:21 +05:30
}
2018-03-17 18:26:18 +05:30
}