mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
16 lines
406 B
CoffeeScript
16 lines
406 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:language-chosen': c.object {},
|
|
language: { type: 'string' }
|
|
|
|
'ipad:iap-complete': c.object {},
|
|
productID: { type: 'string' }
|
|
|
|
'ipad:memory-warning': c.object {}
|