-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdb.json
More file actions
107 lines (107 loc) · 2.44 KB
/
db.json
File metadata and controls
107 lines (107 loc) · 2.44 KB
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
{
"customers": [
{
"id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"name": "Dominic",
"surname": "Cobb",
"email": "dom.cobb@extract-consulting.test",
"address": {
"street": "Rue des Archives",
"streetNumber": "17",
"city": "Paris",
"country": "France",
"zip": "75004"
},
"paymentMethod": [
{
"provider": "visa",
"cardNumber": "4111-1111-1111-1112",
"expiry": "12/28"
},
{
"provider": "amex",
"cardNumber": "3782-8224-6310-0050",
"expiry": "08/27"
}
],
"billingAddress": null
},
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Arthur",
"surname": "Knight",
"email": "arthur.knight@extract-consulting.test",
"address": {
"street": "Bishopsgate",
"streetNumber": "88",
"city": "London",
"country": "United Kingdom",
"zip": "EC2N 4AQ"
},
"paymentMethod": [
{
"provider": "visa",
"cardNumber": "1234-4567-7890-1234",
"expiry": "01/28"
}
],
"billingAddress": null
},
{
"id": "c1b1e0f4-9b4a-4f33-8f2e-0d7a4d9c3e91",
"name": "Stephen",
"surname": "Miles",
"email": "s.miles@paris-architecture.ac.test",
"address": {
"street": "Rue Saint-Jacques",
"streetNumber": "9",
"city": "Paris",
"country": "France",
"zip": "75005"
},
"billingAddress": null,
"paymentMethod": [
{
"provider": "mastercard",
"cardNumber": "5555-5555-5555-4444",
"expiry": "04/27"
}
]
},
{
"id": "b4f9b7d2-2b6a-4f4f-9b93-5c3f6f84a2e8",
"name": "Eames",
"surname": "Forger",
"email": "eames.forger@extract-consulting.test",
"address": {
"street": "Marina Bay",
"streetNumber": "5",
"city": "Singapore",
"country": "Singapore",
"zip": "018981"
},
"billingAddress": null,
"paymentMethod": [
{
"provider": "visa",
"cardNumber": "4012-8888-8888-1881",
"expiry": "03/26"
}
]
}
],
"paymentMethods": [
{
"id": "visa",
"provider": "visa"
},
{
"id": "mastercard",
"provider": "mastercard"
},
{
"id": "amex",
"provider": "amex"
}
]
}