State Shape - 10KD/kicstarter GitHub Wiki

KICSTARTER Sample State Shape

{
  entities: {
    users: {
      32: {
        id: 32,
        username: "test_user"
      },
      35: {
        id: 35,
        username: "guest"
      }
    },    
    projects: {
      21: {
        id:21
        category: "Comics",
        title: "notbatman",
        project_img_url: "aaa.com/232.jpg",
        short_blurb: "this comic is not about batman",
        funding_duration: 61,
        funding_goal: 999999,
        project_details: "when things were not about batman"
      },
      24: {
        id:24
        category: "Dance",
        title: "21KickStreet",
        project_img_url: "aa.com/21kick.jpg",
        short_blurb: "inspired by 21jumpstreet",
        funding_duration: 10,
        funding_goal: 20000,
        project_details: "channing tatum's got nothing on these dancers"
      }
    },
    rewards: {
      1: {
        id: 1,
        project_id: 21,
        title: "the best",
        pledge_amount: 5,
        description: "pledge 5 for a copy of the comic",
        estimated_delivery: "11/2/19",
        Maximum_num_available: 900    
      },
      2: {
        id: 2,
        project_id: 24,
        title: "ticket to show",
        pledge_amount: 5,
        description: "pledge 5 for ticket to the show,
        estimated_delivery: "8/7/19",
        Maximum_num_available: 200 
      }
    }
  },
  errors: {    
    login: ["Incorrect Username or Password"]
  },
  session: {
    id: 32,
    username: "test_user"
  }
}