0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/ee/idl/event.avro

32 lines
530 B
Plaintext
Raw Normal View History

{
"namespace": "com.posthog.ee",
"name": "event",
"type": "record",
"fields" : [
{
"name" : "event",
"type" : "string"
},
{
"name" : "team_id",
"type" : "long"
},
{
"name" : "properties",
"type" : "map",
"values" : "string"
},
{
"name": "timestamp",
"type": "string"
},
{
"name": "distinct_id",
"type": "string"
},
{
"name": "elements_hash",
"type": "string"
}
]
}