-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathdb.json
88 lines (88 loc) · 1.99 KB
/
db.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
{
"users": [
{
"email": "john@contoso.com",
"password": "$2a$10$Hdks3dRdkXoAVkt0It9ciu9GWoqH11IbBdVS.b8MfXvmINN7NZJeC",
"id": 1
}
],
"movies": {
"data": [
{
"id": 1,
"name": "Mary Poppins",
"year": "1964",
"length": "2h 19min"
},
{
"id": 2,
"name": "Mary Poppins Returns",
"year": "2018",
"length": "2h 10min"
}
]
},
"heroes": {
"data": [
{
"id": "HeroMaryPoppins",
"name": "Mary Poppins",
"description": "practically perfect in every way",
"quotes": [
{
"id": 1,
"quote": "supercalifragilisticexpealidicious"
},
{
"id": 2,
"quote": "spit spot"
}
]
},
{
"id": "HeroBert",
"name": "Bert",
"description": "Chimney sweep, sidewalk chalk artist, lamp lighter, and unsung hero"
},
{
"id": "HeroGeorge",
"name": "George W. Banks",
"description": "Works at Dawes Tomes Mousley Grubbs Fidelity Fiduciary Bank"
},
{
"id": "HeroWinnifred",
"name": "Winnifred Banks",
"description": "Active in the Women's Votes suffragette movement"
},
{
"id": "HeroNanna",
"name": "Katie Nanna",
"description": "Way underappreciated"
},
{
"id": "HeroAdmiral",
"name": "Admiral Boom",
"description": "Fires canon. We need more of him"
},
{
"id": "HeroUncle",
"name": "Uncle Albert",
"description": "He loves to laugh ..."
}
]
},
"villains": {
"data": [
{
"id": "VillainDawesSr",
"name": "Mr. Dawes Sr.",
"description": "I once knew a main with a wooden leg named Smith"
},
{
"id": "VillainWilkins",
"name": "Mr Wilkins",
"description": "What's up with these bank characters?"
}
]
}
}