0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 09:16:49 +01:00
posthog/ee/idl/omni_person.proto

13 lines
260 B
Protocol Buffer
Raw Normal View History

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;
}