-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSCHEMA_VALUE.txt
54 lines (54 loc) · 1.06 KB
/
SCHEMA_VALUE.txt
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
{
"fields": [
{
"doc": "Id of the order filed",
"name": "order_id",
"type": "string"
},
{
"doc": "Id of the customer",
"name": "customer_id",
"type": "string"
},
{
"doc": "Id of the supplier",
"name": "supplier_id",
"type": "string"
},
{
"doc": "First Name of Customer",
"name": "first_name",
"type": "string"
},
{
"doc": "Last Name of Customer",
"name": "last_name",
"type": "string"
},
{
"doc": "Totla number of items in the order",
"name": "items",
"type": "int"
},
{
"doc": "Total price of the order",
"name": "price",
"type": "float"
},
{
"doc": "Weight of the items",
"name": "weight",
"type": "float"
},
{
"default": true,
"doc": "Field indicating if the user is enrolled in marketing emails",
"name": "automated_email",
"type": "boolean"
}
],
"name": "Order",
"namespace": "com.sunilvb.demo",
"type": "record",
"version": "1"
}