Approval user information
| name | data type | constraints | description | 
|---|---|---|---|
| user | User | User information | |
| approved | boolean | required | If user approved already | 
| rejected | boolean | required | If user rejected already | 
| comment | string | Comment assigned to the approval/rejection | 
Example
{
  "user" : {
    "name" : "user_1",
    "rolename" : "Project Manager",
    "shortName" : "user_1",
    "fullName" : "User One",
    "pictureUrl" : "/images/icons/profilepics/user1.png"
  },
  "approved" : true,
  "rejected" : false,
  "comment" : "Approval approved, it is fine"
}