mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
17 lines
667 B
CoffeeScript
17 lines
667 B
CoffeeScript
c = require './../schemas'
|
|
|
|
CourseSchema = c.object {title: 'Course', required: ['name']}
|
|
c.extendNamedProperties CourseSchema # name first
|
|
|
|
_.extend CourseSchema.properties,
|
|
campaignID: c.objectId()
|
|
concepts: c.array {title: 'Programming Concepts', uniqueItems: true}, c.concept
|
|
description: {type: 'string'}
|
|
duration: {type: 'number', description: 'Approximate hours of content'}
|
|
pricePerSeat: {type: 'number', description: 'Price per seat in USD cents.'} # deprecated
|
|
free: { type: 'boolean' }
|
|
screenshot: c.url {title: 'URL', description: 'Link to course screenshot.'}
|
|
|
|
c.extendBasicProperties CourseSchema, 'Course'
|
|
|
|
module.exports = CourseSchema
|