Skip to content

Instantly share code, notes, and snippets.

@makenai
Last active August 29, 2015 14:27
Show Gist options
  • Save makenai/31d05c62318e19c0f677 to your computer and use it in GitHub Desktop.
Save makenai/31d05c62318e19c0f677 to your computer and use it in GitHub Desktop.
Data Rollup Table Attempt #1
{
"_id": "The unique user id or session id",
"value": {
"Anonymous": "user is anonymous or logged in",
"HasTwitter": "user has a twitter account",
"HasFacebook": "user has a facebook account",
"EmailDomain": "email domain of the user",
"QuestionsCreated": "Count of questions created by the user",
"VotesReceived": "Total number of votes received on the user questions",
"AvgVotesReceived": "Average number of votes per question received",
"AvgChoices": "Average number of choices per created question",
"Votes": "Number of times this user or or session has voted",
"TwitterShares": "Number of times shared to twitter",
"FacebookShares": "Number of times shared to facebook",
"TumblrShares": "Number of times shared to tumblr",
"AllShares": "Total number of times shared",
"LastAction": "Date of most recent recorded action",
"FirstAction": "Date of first recorded action"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment