generated from goitacademy/react-course-track
-
Notifications
You must be signed in to change notification settings - Fork 0
/
payments.json
62 lines (62 loc) · 1.37 KB
/
payments.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
[
{
"id": "1",
"cardNumber": "1234 5678 9012 3456",
"cardType": "Visa",
"cardOwner": "John Doe",
"date": "2024-01-01",
"amount": 100,
"description": "Payment for groceries",
"isPaid": true
},
{
"id": "2",
"cardNumber": "9876 5432 1098 7654",
"cardType": "Mastercard",
"cardOwner": "Alice Smith",
"date": "2024-01-05",
"amount": 50,
"description": "Payment for utilities",
"isPaid": false
},
{
"id": "3",
"cardNumber": "2468 1357 8024 6913",
"cardType": "American Express",
"cardOwner": "Bob Johnson",
"date": "2024-01-10",
"amount": 200,
"description": "Payment for rent",
"isPaid": true
},
{
"id": "4",
"cardNumber": "8642 9753 1086 2435",
"cardType": "Discover",
"cardOwner": "Emily Brown",
"date": "2024-01-15",
"amount": 75,
"description": "Payment for internet",
"isPaid": false
},
{
"id": "5",
"cardNumber": "1111 2222 3333 4444",
"cardType": "Visa",
"cardOwner": "David Wilson",
"date": "2024-01-20",
"amount": 120,
"description": "Payment for dining out",
"isPaid": true
},
{
"id": "6",
"cardNumber": "5555 6666 7777 8888",
"cardType": "Mastercard",
"cardOwner": "Emma Taylor",
"date": "2024-01-25",
"amount": 90,
"description": "Payment for entertainment",
"isPaid": false
}
]