We need a task request model which will help us in allowing the user to create requests for tasks, and the superuser can approve these task requests and those tasks will be assigned to them, following is the suggested data model for that, @ankushdharkar please let me know if I should change anything
{
createdAt: Timestamp,
userId: String,
userName: String,
taskId: String,
taskCategory: String,
taskLevel: number,
taskTitle: String,
taskPurpose: String,
}