-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathdata.json
More file actions
65 lines (65 loc) · 1.31 KB
/
data.json
File metadata and controls
65 lines (65 loc) · 1.31 KB
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
{
"data":{
"authors":{
"2":{
"firstName":"Robert",
"lastName":"Martin"
},
"4":{
"firstName":"Peter",
"lastName":"Seibel"
},
"15":{
"firstName":"Frederick",
"lastName":"Brooks"
},
"22":{
"firstName":"Steve",
"lastName":"Krug"
},
"44":{
"firstName":"Andrew",
"lastName":"Hunt"
},
"67":{
"firstName":"Dave",
"lastName":"Thomas"
}
},
"books":[
{
"id": 1,
"title":"Coders at Work: Reflections on the Craft of Programming",
"price":2434,
"authorId":4
},
{
"id": 2,
"title":"The Mythical Man-Month: Essays on Software Engineering",
"price":2399,
"authorId":15
},
{
"id": 3,
"title":"Don't Make Me Think, Revisited: A Common Sense Approach to Web Usability",
"price":2250,
"authorId":22
},
{
"id": 4,
"title":"The Pragmatic Programmer: From Journeyman to Master",
"price":3259,
"authorIds":[
44,
67
]
},
{
"id": 5,
"title":"Clean Code: A Handbook of Agile Software Craftsmanship",
"price":3224,
"authorId":2
}
]
}
}