{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "AdminListResponse",
"type": "object",
"required": [
"admins",
"mutable"
],
"properties": {
"admins": {
"type": "array",
"items": {
"$ref": "#/definitions/HumanAddr"
}
},
"mutable": {
"type": "boolean"
}
},
"definitions": {
"HumanAddr": {
"type": "string"
}
}
}