Volara Data Schema
Volara collects tweet data according to the following flatbuffer schema:
table Tweet {
  handle:string;
  user_id:string;
  tweet_id:string;
  text:string;
  likes:int;
  retweets:int;
  replies:int;
  quotes:int;
  created_at:ulong;
  subtweet_id:string;
}