dekoa
Version:
Decorators for Koa
31 lines • 565 B
JSON
{
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 5,
"maxLength": 255
},
"note": {
"type": "string",
"minLength": 6,
"maxLength": 20
},
"perms": {
"type": "object",
"properties": {
"action": {
"type": "string",
"minLength": 3,
"maxLength": 255
},
"resource": {
"type": "string",
"minLength": 3,
"maxLength": 255
}
}
}
},
"required": ["name", "note", "perms"]
}