codecombat/app/schemas/models/analytics_log_event.coffee

17 lines
476 B
CoffeeScript
Raw Normal View History

2014-12-15 14:45:12 -05:00
c = require './../schemas'
AnalyticsLogEventSchema = c.object {
title: 'Analytics Log Event'
description: 'Analytics event logs.'
}
_.extend AnalyticsLogEventSchema.properties,
created: c.date({title: 'Created', readOnly: true})
user: c.objectId(links: [{rel: 'extra', href: '/db/user/{($)}'}])
event: {type: 'string'}
properties: {type: 'object'}
c.extendBasicProperties AnalyticsLogEventSchema, 'analytics.log.event'
module.exports = AnalyticsLogEventSchema