Last active
August 29, 2015 14:27
-
-
Save makenai/31d05c62318e19c0f677 to your computer and use it in GitHub Desktop.
Data Rollup Table Attempt #1
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
{ | |
"_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