26 lines
512 B
JSON
26 lines
512 B
JSON
{
|
|
"type": "object",
|
|
"required": [
|
|
"id",
|
|
"state",
|
|
"avatar_url",
|
|
"path",
|
|
"name",
|
|
"username"
|
|
],
|
|
"properties": {
|
|
"id": { "type": "integer" },
|
|
"state": { "type": "string" },
|
|
"avatar_url": { "type": "string" },
|
|
"path": { "type": "string" },
|
|
"name": { "type": "string" },
|
|
"username": { "type": "string" },
|
|
"status_tooltip_html": {
|
|
"oneOf": [
|
|
{ "type": "null" },
|
|
{ "type": "string" }
|
|
]
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|