mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 10:06:08 -05:00
11 lines
292 B
CoffeeScript
11 lines
292 B
CoffeeScript
c = require 'schemas/schemas'
|
|
|
|
module.exports =
|
|
'ipad:products': c.object {required: ['products']},
|
|
products: c.array {},
|
|
c.object {},
|
|
price: { type: 'string' }
|
|
id: { type: 'string' }
|
|
|
|
'ipad:iap-complete': c.object {},
|
|
productID: { type: 'string' }
|