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,
        city_id: 1,
        type: "article",
        title: "Thelonious Monk-Inspired Beer Returns After Settlement With Musician’s Estate",
        author: "Caleb Pershan",
        body: "https://sf.eater.com/2019/2/21/18233883/north-coast-brewing-brother-thelonious-monk-ale-beer-back-settlement-lawsuit-available"
      },
      2:{
        id: 2,
        city_id: 2,
        type: "events",
        title: "The 15 Best Beer Week Events in the East Bay",
        author: "Janelle Bitker",
        body: "https://sf.eater.com/2019/1/16/18185375/best-sf-beer-week-events-2019-east-bay"
      },
      3:{
        id: 2,
        city_id: 1,
        type: "article",
        title: "Beer & Mortar: Tales of Boston-Area Breweries",
        author: "Alex Wilking",
        body: "https://boston.eater.com/2016/4/1/11344424/boston-breweries"
      }
    }
  }
}

Clone this wiki locally