mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-26 00:58:00 -05:00
14 lines
344 B
CoffeeScript
14 lines
344 B
CoffeeScript
|
c = require './../schemas'
|
||
|
|
||
|
AnalyticsStringSchema = c.object {
|
||
|
title: 'Analytics String'
|
||
|
description: 'Maps strings to number IDs for improved performance.'
|
||
|
}
|
||
|
|
||
|
_.extend AnalyticsStringSchema.properties,
|
||
|
v: {type: 'string'} # value
|
||
|
|
||
|
c.extendBasicProperties AnalyticsStringSchema, 'analytics.string'
|
||
|
|
||
|
module.exports = AnalyticsStringSchema
|