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

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

22 lines
486 B
JSON
Raw Normal View History

2018-11-08 19:23:39 +05:30
{
"type": "object",
"required": [
"id",
"state",
"avatar_url",
"path",
"name",
"username"
],
"properties": {
"id": { "type": "integer" },
"state": { "type": "string" },
2022-08-13 15:12:31 +05:30
"avatar_url": { "type": [ "string", "null" ] },
2018-11-08 19:23:39 +05:30
"path": { "type": "string" },
"name": { "type": "string" },
"username": { "type": "string" },
2021-02-22 17:27:13 +05:30
"status_tooltip_html": { "$ref": "../types/nullable_string.json" },
"show_status": { "type": "boolean" }
2020-05-24 23:13:21 +05:30
}
2018-11-08 19:23:39 +05:30
}