Skip to content

Instantly share code, notes, and snippets.

@jessearmand
Created July 11, 2014 06:39
Show Gist options
  • Save jessearmand/2fc32f2662782d18109d to your computer and use it in GitHub Desktop.
Save jessearmand/2fc32f2662782d18109d to your computer and use it in GitHub Desktop.
Library Management
{
"isbn12345": {
"title": "Introdution to Algorithms",
"available": true,
"borrow_date": 1405062840,
"due_date": 1405102840,
"student334343": {
"name": "Sergey Brin",
"books": ["isbn12345", "isbn12346"]
}
},
"isbn12346": {
"title": "Advanced Algorithms",
"available": true,
"borrow_date": 1405062841,
"due_date": 1405102842,
"student334343": {
"name": "Sergey Brin",
"books": ["isbn12345", "isbn12346"]
},
"student334344": {
"name": "Steve Jobs",
"books": ["isbn12346"]
}
},
"number_of_books": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment