Skip to content

State Shape

junnac edited this page Oct 29, 2019 · 8 revisions
{
  entities:{
     users:{
      1:{
        id: 1,
        email: "[email protected]"
      },
      2:{
        id: 2,
        email: "[email protected]"
      },
      3:{
        id: 3,
        email: "[email protected]"
      }
    },
    cities:{
       1:{
        id: 1,
        name: "Boston",
        state: "Massachusetts"
      },
      2:{
        id: 2,
        name: "San Francisco",
        state: "California"
      },
      3:{
        id: 3,
        name: "Kalamazoo",
        state: "Michigan"
      }
    },
    breweries:{
      1:{
        id: 1,
        name: "Lord Hobo Brewing Company",
        city_id: 1,
        top_beer: "Consolation Prize",
      },
      2:{
        id: 2,
        name: "Bell's Brewery",
        city_id: 3,
        top_beer: "Oberon Ale",
      },
      3:{
        id: 3,
        name: "Lamplighter Brewery",
        city_id: 1,
        top_beer: "Rabbit Rabbit",
      }
    },
    media:{
      1:{
        id: 1,
        type: "somebody1",
        title: 13,
        author: "somebody1",
        body: "somebody1"
      },
      2:{
        id: 2,
        type: "somebody2",
        title: 32,
        author: "somebody1",
        body: "somebody1"
      },
      3:{
        id: 2,
        type: "somebody2",
        title: 20,
        author: "somebody1",
        body: "somebody1"
      }
    }
  }
}
Clone this wiki locally