-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput_schema.avsc
101 lines (101 loc) · 2.41 KB
/
output_schema.avsc
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
{
"type": "array",
"items": {
"type": "record",
"name": "output_schema.avsc",
"fields": [
{
"name": "id",
"type": "int"
},
{
"name": "number_people_liable",
"type": "int"
},
{
"name": "age_years",
"type": "int"
},
{
"name": "present_employment_since",
"type": "string"
},
{
"name": "job",
"type": "string"
},
{
"name": "housing",
"type": "string"
},
{
"name": "telephone",
"type": "string"
},
{
"name": "installment_plans",
"type": "string"
},
{
"name": "number_existing_credits",
"type": "int"
},
{
"name": "credit_history",
"type": "string"
},
{
"name": "foreign_worker",
"type": "string"
},
{
"name": "property",
"type": "string"
},
{
"name": "installment_rate",
"type": "int"
},
{
"name": "purpose",
"type": "string"
},
{
"name": "checking_status",
"type": "string"
},
{
"name": "present_residence_since",
"type": "int"
},
{
"name": "debtors_guarantors",
"type": "string"
},
{
"name": "savings_account",
"type": "string"
},
{
"name": "duration_months",
"type": "int"
},
{
"name": "credit_amount",
"type": "int"
},
{
"name": "gender",
"type": "string"
},
{
"name": "label_value",
"type": "int"
},
{
"name": "score",
"type": "int"
}
]
}
}