mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
e79cadc761
_id field already has created data: http://docs.mongodb.org/manual/reference/object-id/ Also some misc analytics cleanup.
18 lines
697 B
CoffeeScript
18 lines
697 B
CoffeeScript
c = require './../schemas'
|
|
|
|
AnalyticsPerDaySchema = c.object {
|
|
title: 'Analytics per-day data'
|
|
description: 'Analytics data aggregated into per-day chunks.'
|
|
}
|
|
|
|
_.extend AnalyticsPerDaySchema.properties,
|
|
d: {type: 'string'} # yyyymmdd day, e.g. '20150123'
|
|
e: {type: 'integer'} # event (analytics string ID from analytics.strings)
|
|
l: {type: 'integer'} # level (analytics ID from analytics.strings)
|
|
f: {type: 'integer'} # filter (analytics ID from analytics.strings)
|
|
fv: {type: 'integer'} # filter value (analytics ID from analytics.strings)
|
|
c: {type: 'integer'} # count
|
|
|
|
c.extendBasicProperties AnalyticsPerDaySchema, 'analytics.perday'
|
|
|
|
module.exports = AnalyticsPerDaySchema
|