mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
13 lines
321 B
CoffeeScript
13 lines
321 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' }
|
|
|
|
'ipad:memory-warning': c.object {}
|