-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
39 lines (39 loc) · 831 Bytes
/
data.json
File metadata and controls
39 lines (39 loc) · 831 Bytes
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
{
"users": {
"admin": {
"password": "admin123",
"role": "admin"
},
"user1": {
"password": "user123",
"role": "user"
}
},
"produk": {
"1": {
"nama": "Touchpad",
"harga": 600000,
"stok": 44
},
"2": {
"nama": "Figure",
"harga": 5800000,
"stok": 10
}
},
"pesanan": [
{
"username": "user1",
"items": {
"1": {
"nama": "Touchpad",
"kuantitas": 6,
"harga": 600000,
"subtotal": 3600000
}
},
"total": 3600000,
"date": "2025-10-14 19:50:31"
}
]
}