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
19 lines
436 B
Protocol Buffer
19 lines
436 B
Protocol Buffer
syntax = "proto3";
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
message Element {
|
|
string uuid = 1;
|
|
string event_uuid = 2;
|
|
string text = 3;
|
|
string tag_name = 4;
|
|
string href = 5;
|
|
string attr_id = 6;
|
|
repeated string attr_class = 7;
|
|
uint64 nth_child = 8;
|
|
uint64 nth_of_type = 9;
|
|
string attributes = 10;
|
|
uint64 order = 11;
|
|
uint64 team_id = 12;
|
|
google.protobuf.Timestamp created_at = 13;
|
|
string elements_hash = 14;
|
|
} |