Last active
November 4, 2022 02:15
-
-
Save gurmeetsaran/c2dedcd01bdfb7a807f312b9ad6eff11 to your computer and use it in GitHub Desktop.
Android Event Model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@glue(["parquet", "hourly", "analytic_android_events"]) | |
@swagger([]) | |
/** Tracks all Android related events with Structured Type. */ | |
record AnalyticAndroidEvents { | |
string anonymousId; | |
string channel; | |
com.wealthfront.avro.rudderstack.Context context; | |
AnalyticEventEnum event; | |
RudderStackIntegrations integrations; | |
string messageId; | |
union {null, RudderStackProperties} properties = null; | |
string originalTimestamp; | |
string type; | |
string sentAt; | |
string clientIpAddress; | |
string userId; | |
/** time when api gateway receives the event */ | |
long gatewayReceivedAt; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment