-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsampleBooks.json
123 lines (106 loc) · 3.19 KB
/
sampleBooks.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"user1": {
"book1": {
"title": "book 1",
"chapters": {
"chapter1": {
"data": "chapter1 data",
"resources": ["img1", "im2"]
}
}
},
"book2": {
"title": "book 2",
"chapters": {
"chapter1": {
"data": "chapter2 data",
"resources": ["img1", "im2"]
}
}
},
"book3": {
"title": "book 3",
"chapters": {
"chapter1": {
"data": "chapter3 data",
"resources": ["img1", "im2"]
}
}
}
}
}
/*{
"user1": {
"books": {
"User 1 - Book 1": {
"chapters": {
"chapter1": {
"title": "chapter 1 (user1)",
"images": ["im1", "im2"],
"data": "I am chapter 1 data"
},
"chapter2": {
"title": "chapter 2",
"images": ["im1", "im2"],
"data": "I am chapter 2 data"
},
"chapter3": {
"title": "chapter 3",
"images": ["im1", "im2"],
"data": "I am chapter 3 data"
},
"chapter4": {
"title": "chapter 4",
"images": ["im1", "im2"],
"data": "I am chapter 4 data"
}
}
},
"User 1 - Book 2": {
"chapters": {
"chapter1": {
"title": "chapter 1 (user1)",
"images": ["im1", "im2"],
"data": "I am chapter 1 data"
},
"chapter2": {
"title": "chapter 2",
"images": ["im1", "im2"],
"data": "I am chapter 2 data"
},
"chapter3": {
"title": "chapter 3",
"images": ["im1", "im2"],
"data": "I am chapter 3 data"
},
"chapter4": {
"title": "chapter 4",
"images": ["im1", "im2"],
"data": "I am chapter 4 data"
}
}
}
}
},
"user2": {
"title": "User 2's book title",
"chapters": {
"chapter1": {
"title": "chapter 1 (user2)",
"images": ["im1", "im2"]
},
"chapter2": {
"title": "chapter 2",
"images": ["im1", "im2"]
},
"chapter3": {
"title": "chapter 3",
"images": ["im1", "im2"]
},
"chapter4": {
"title": "chapter 4",
"images": ["im1", "im2"]
}
}
}
}*/