{
  "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"]
}