-
Notifications
You must be signed in to change notification settings - Fork 1
/
accounts.json
85 lines (85 loc) · 1.77 KB
/
accounts.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
{
"accounts": [
{
"username": "Lisa",
"password": "pwd100",
"email": "[email protected]"
},
{
"username": "Lina",
"password": "pwd100",
"email": "[email protected]"
},
{
"username": "Hälge",
"password": "pwd1",
"email": "[email protected]"
}
],
"orders": [
{
"username": "Lina",
"items": [
{
"quantity": 2,
"total": 78,
"id": 1,
"title": "Bryggkaffe",
"desc": "Bryggd på månadens bönor.",
"price": 39
}
],
"total": 78,
"eta": "2021-05-04T08:04:07.019Z",
"id": "e5d72cb0-1bad-4c75-a01c-0b12ed2ce538"
},
{
"username": "Lisa",
"items": [
{
"quantity": 5,
"total": 245,
"id": 4,
"title": "Latte Macchiato",
"desc": "Bryggd på månadens bönor.",
"price": 49
}
],
"total": 245,
"eta": "2021-05-04T09:01:30.016Z",
"id": "4bb3b837-c5f5-4083-82f3-bbef6e49ecc9"
},
{
"username": "Lisa",
"items": [
{
"quantity": 1,
"total": 49,
"id": 3,
"title": "Cappuccino",
"desc": "Bryggd på månadens bönor.",
"price": 49
}
],
"total": 49,
"eta": "2021-05-04T09:03:23.018Z",
"id": "9b618cf1-b445-431a-8ab4-d3784856fb70"
},
{
"username": "Lina",
"items": [
{
"quantity": 3,
"total": 117,
"id": 6,
"title": "Cortado",
"desc": "Bryggd på månadens bönor.",
"price": 39
}
],
"total": 117,
"eta": "2021-05-06T07:32:58.024Z",
"id": "eb05e981-1f6a-45e7-b8b1-0bf075273d19"
}
]
}