-
Notifications
You must be signed in to change notification settings - Fork 142
/
invoices.json
47 lines (47 loc) · 934 Bytes
/
invoices.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
{
"companyLogo": "https://lea.verou.me/logo.svg",
"companyName": "Lea Verou",
"companyAddress": "42 JavaScript Way\n\t\t\tBoston, MA 02114\n\t\t\tUSA",
"companyURL": "http://lea.verou.me",
"companyEmail": "[email protected]",
"invoice": [
{
"id": "2",
"date": "2016-10-06",
"recipient": {
"name": "Widget Corp",
"address": "1 Technology Square\nCambridge, MA 02139"
},
"currency": "$",
"services": [
{
"description": "Website design",
"amount": "20000"
},
{
"description": "Advertising",
"amount": "100"
},
{
"description": "Web hosting",
"amount": "20"
}
]
},
{
"id": "1",
"date": "2016-10-07",
"recipient": {
"name": "John Doe",
"address": "2 Modern Red Square\nLong Island City\nNew York, NY 1120"
},
"currency": "$",
"services": [
{
"description": "House cleaning",
"amount": "70"
}
]
}
]
}