mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
13 lines
342 B
CoffeeScript
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'
|