-
Notifications
You must be signed in to change notification settings - Fork 84
/
users_schema.avro
38 lines (38 loc) · 1.18 KB
/
users_schema.avro
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
{
"namespace": "ksql",
"name": "users",
"type": "record",
"fields": [
{"name": "registertime", "type": {
"type": "long",
"arg.properties": {
"range": {
"min": 1487715775521,
"max": 1519273364600
}
}
}},
{"name": "userid", "type": {
"type": "string",
"arg.properties": {
"regex": "User_[1-9]"
}
}},
{"name": "regionid", "type": {
"type": "string",
"arg.properties": {
"regex": "Region_[1-9]"
}
}},
{"name": "gender", "type": {
"type": "string",
"arg.properties": {
"options": [
"MALE",
"FEMALE",
"OTHER"
]
}
}}
]
}