forked from IBM/JSONata4Java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.json
79 lines (79 loc) · 2.31 KB
/
library.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"library": {
"books": [
{
"title": "Structure and Interpretation of Computer Programs",
"authors": ["Abelson", "Sussman"],
"isbn": "9780262510875",
"price": 38.90,
"copies": 2
},
{
"title": "The C Programming Language",
"authors": ["Kernighan", "Richie"],
"isbn": "9780131103627",
"price": 33.59,
"copies": 3
},
{
"title": "The AWK Programming Language",
"authors": ["Aho", "Kernighan", "Weinberger"],
"isbn": "9780201079814",
"copies": 1
},
{
"title": "Compilers: Principles, Techniques, and Tools",
"authors": ["Aho", "Lam", "Sethi", "Ullman"],
"isbn": "9780201100884",
"price": 23.38,
"copies": 1
}
],
"loans": [
{
"customer": "10001",
"isbn": "9780262510875",
"return": "2016-12-05"
},
{
"customer": "10003",
"isbn": "9780201100884",
"return": "2016-10-22"
},
{
"customer": "10003",
"isbn": "9780262510875",
"return": "2016-12-22"
}
],
"customers": [
{
"id": "10001",
"name": "Joe Doe",
"address": {
"street": "2 Long Road",
"city": "Winchester",
"postcode": "SO22 5PU"
}
},
{
"id": "10002",
"name": "Fred Bloggs",
"address": {
"street": "56 Letsby Avenue",
"city": "Winchester",
"postcode": "SO22 4WD"
}
},
{
"id": "10003",
"name": "Jason Arthur",
"address": {
"street": "1 Preddy Gate",
"city": "Southampton",
"postcode": "SO14 0MG"
}
}
]
}
}