-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathexample-output.json
More file actions
43 lines (43 loc) · 1.09 KB
/
example-output.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"customers": [
{
"id": "8baa6dea-cc70-4748-9b27-b174e70e4b66",
"name": "Lezlie Stuther",
"address": "19045 Lawn Court"
}
],
"orders": [
{
"id": 1,
"vendor": "acme",
"date": "03/03/2017",
"customer": "8baa6dea-cc70-4748-9b27-b174e70e4b66",
"order": [
{
"item": "hat",
"quantity": 14,
"price": 8,
"revenue": 112
},
{
"item": "cake",
"quantity": 9,
"price": 3,
"revenue": 27
},
{
"item": "ice",
"quantity": 10,
"price": 5,
"revenue": 50
},
{
"item": "candy",
"quantity": 6,
"price": 8,
"revenue": 48
}
]
}
]
}