david-leifker 943bb57cbc
feat(backend): structured properties and forms (#9626)
Co-authored-by: Chris Collins <chriscollins3456@gmail.com>
Co-authored-by: RyanHolstien <RyanHolstien@users.noreply.github.com>
2024-01-22 11:46:04 -06:00

15 lines
440 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"] }
]
}