mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-04 15:50:14 +00:00
25 lines
681 B
JSON
25 lines
681 B
JSON
{
|
|
"namespace": "org.acryl",
|
|
"type": "record",
|
|
"name": "ClickEvent",
|
|
"fields": [
|
|
{ "name": "ip", "type": "string" },
|
|
{ "name": "url", "type": "string" },
|
|
{ "name": "time", "type": "long" },
|
|
{ "name": "referer", "type": ["string", "null"] },
|
|
{ "name": "user_agent", "type": ["string", "null"] },
|
|
{ "name": "user_id", "type": ["string", "null"] },
|
|
{ "name": "session_id", "type": ["string", "null"] },
|
|
{
|
|
"name": "locator", "type": {
|
|
"type": "record",
|
|
"name": "Locator",
|
|
"fields": [
|
|
{ "name": "latitude", "type": "float" },
|
|
{ "name": "longitude", "type": "float" }
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|