Sample State - RawBData/Checkoff GitHub Wiki

{
  entities: {
    tasks: {
      1: {
        id: 1,
        title: "Walk the dog",
        notes: "around the block 5 times",
        startDate: 9-1-2019,
        dueDate: 9-2-2019,
        authorId: 1,
        listId: 1,
        completed: false
      },
      2: {
        id: 1,
        title: "Wash the car",
        notes: "inside and out",
        startDate: 9-7-2019,
        dueDate: 9-7-2019,
        authorId: 1,
        listId: 1,
        completed: true
      },
      3: {
        id: 1,
        title: "Go to the dentist",
        notes: "make appointment",
        startDate: null,
        dueDate: 10-2-2019,
        authorId: 2,
        listId: 2,
        completed: false
      },
    },
    users: {
      1: {
        id: 1,
        username: "JabbaTheHutt",
        authoredTasks: [1, 2],        
      },
      2: {
        id: 2,
        username: "HanSolo",
        authoredTasks: [3],
      }
    },
    tags: {
      1:{
        id:1,
        title:"Summer Fun",
      },
      2:{
        id:2,
        title:"First Priority",
      },
      3:{
        id:3,
        title:"Gungam Style",
      }
    },
    taggings: {
      1:{
        id:1,
        taskId:1,
        tagId:1
      },
      2:{
        id:2,
        taskId:2,
        tagId:2
      },
      3:{
        id:3,
        taskId:1,
        tagId:3
      }
    }
  },
  ui: {
    loading: true/false
  },
  errors: {
    login: ["Incorrect username/password combination"],
    taskForm: ["Task cannot be blank"],
  },
  session: { currentUserId: 1 }
}