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
13 lines
260 B
Protocol Buffer
13 lines
260 B
Protocol Buffer
syntax = "proto3";
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
message Person {
|
|
string uuid = 1;
|
|
string event_uuid = 2;
|
|
uint64 team_id = 3;
|
|
string distinct_id = 4;
|
|
string properties = 5;
|
|
bool is_identified = 6;
|
|
google.protobuf.Timestamp ts = 7;
|
|
}
|