codecombat/app/schemas/models/product.schema.coffee
2015-12-14 11:10:50 -08:00

13 lines
342 B
CoffeeScript

c = require './../schemas'
module.exports = ProductSchema = {
type: 'object'
additionalProperties: false
properties: {
name: { type: 'string' }
amount: { type: 'integer', description: 'Cost in cents' }
gems: { type: 'integer', description: 'Number of gems awarded' }
}
}
c.extendBasicProperties ProductSchema, 'Product'