Created
July 11, 2014 06:39
-
-
Save jessearmand/2fc32f2662782d18109d to your computer and use it in GitHub Desktop.
Library Management
This file contains 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
{ | |
"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