Created
July 23, 2015 16:42
-
-
Save jgatjens/46137507694d99454c1b to your computer and use it in GitHub Desktop.
Books Backend
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"books": [ | |
{ | |
"id": 1, | |
"title": "Programming Ruby 1.9 & 2.0", | |
"author": "Dave Thomas", | |
"description": "Ruby is the fastest growing and most exciting dynamic language out there. If you need to get working programs delivered fast, you should add Ruby to your toolbox. ", | |
"img_url": "http://ecx.images-amazon.com/images/I/41gtODXuRlL._SX404_BO1,204,203,200_.jpg", | |
"user": { | |
"id": 1, | |
"name": "Pedro Perez" | |
} | |
}, | |
{ | |
"id": 1, | |
"title": "Agile Web Development with Rails 4", | |
"author": "Sam Ruby", | |
"description": "Rails just keeps on changing. Both Rails 3 and 4, as well as Ruby 1.9 and 2.0, bring hundreds of improvements, including new APIs and substantial performance enhancements. The fourth edition of this award-winning classic has been reorganized and refocused so it's more useful than ever before for developers new to Ruby and Rails.", | |
"img_url": "http://ecx.images-amazon.com/images/I/51ETr-3MB1L._SX396_BO1,204,203,200_.jpg", | |
"user": { | |
"id": 2, | |
"name": "bob seiger" | |
} | |
}, | |
{ | |
"id": 1, | |
"title": "Backbone.js Patterns and Best Practices", | |
"author": "Swarnendu De", | |
"description": "Improve your Backbone.js skills with this step-by-step guide to patterns and best practice. It will help you reduce boilerplate in your code and provide plenty of open source plugin solutions to common problems along the way.", | |
"img_url": "http://ecx.images-amazon.com/images/I/51Hsx-LBFkL._SX404_BO1,204,203,200_.jpg", | |
"user":{ | |
"id": 1, | |
"username": "ted", | |
"name": "ted III", | |
"password": "1234" | |
} | |
} | |
], | |
"user": [ | |
{ | |
"id": 1, | |
"username": "boby", | |
"name": "Pedro Perez", | |
"password": "1234" | |
}, | |
{ | |
"id": 1, | |
"username": "bob", | |
"name": "bob seiger", | |
"password": "1234" | |
}, | |
{ | |
"id": 1, | |
"username": "ted", | |
"name": "ted III", | |
"password": "1234" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment