mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-27 11:16:03 +00:00
Co-authored-by: Chris Collins <chriscollins3456@gmail.com> Co-authored-by: RyanHolstien <RyanHolstien@users.noreply.github.com>
15 lines
448 B
JSON
15 lines
448 B
JSON
{
|
|
"namespace": "io.datahubproject",
|
|
"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"] }
|
|
]
|
|
}
|