Last active
May 14, 2020 08:06
-
-
Save nnguyen168/b780110ef12f723090d13c25bcf7846e to your computer and use it in GitHub Desktop.
John's analytics example data
This file contains hidden or 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
{ | |
"visitorId": "1", | |
"visitId": "1501583974", | |
"visitStartTime": "1501583974", | |
"date": "20170801", | |
"totals": { | |
"visits": "1", | |
"pageviews": "1", | |
"timeOnSite": null, // -> a lot of NULL values | |
"bounces": "1", | |
"screenviews": null, // -> a lot of NULL values | |
"uniqueScreenviews": null, // -> a lot of NULL values | |
}, | |
"device": { | |
"browser": "Chrome", | |
"operatingSystem": "Android", | |
"isMobile": true, | |
"deviceCategory": "mobile" // -> duplicate information with isMobile | |
}, | |
"geoNetwork": { | |
"continent": "Americas", | |
"country": "St. Lucia", | |
"region": "(not set)", // -> redundant information | |
"metro": "(not set)", // -> redundant information | |
}, | |
"customDimensions": [], // -> empty value | |
"fullVisitorId": "2248281639583218707", // -> ambiguity when we have visitorId already | |
"channelGrouping": "Organic Search", | |
"socialEngagementType": "Not Socially Engaged" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment