mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
83b5273113
* Protobuf all the things * oops * Protobufize events to protect from malformed JSON * format the generated files (will need to remember this for future) * format * clean up kafka produce serializer * fixes
15 lines
369 B
Protocol Buffer
15 lines
369 B
Protocol Buffer
syntax = "proto3";
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
message Event {
|
|
string uuid = 1;
|
|
string event = 2;
|
|
string properties = 3;
|
|
string timestamp = 4;
|
|
uint64 team_id = 5;
|
|
string distinct_id = 6;
|
|
string created_at = 7;
|
|
string elements_chain = 8;
|
|
google.protobuf.Timestamp proto_created_at = 9;
|
|
google.protobuf.Timestamp proto_timestamp = 10;
|
|
} |