codecombat/app/schemas/models/user_code_problem.coffee

26 lines
706 B
CoffeeScript
Raw Normal View History

2014-08-14 14:55:43 -04:00
c = require './../schemas'
UserCodeProblemSchema = c.object {
title: 'User Code Problem'
description: 'Data for a problem in user code.'
}
_.extend UserCodeProblemSchema.properties,
creator: c.objectId(links: [{rel: 'extra', href: '/db/user/{($)}'}])
created: c.date({title: 'Created', readOnly: true})
code: {type: 'string'}
codeSnippet: {type: 'string'}
errHint: {type: 'string'}
errId: {type: 'string'}
errLevel: {type: 'string'}
errMessage: {type: 'string'}
errRange: {type: 'array'}
errType: {type: 'string'}
language: {type: 'string'}
levelID: {type: 'string'}
2014-08-14 14:55:43 -04:00
c.extendBasicProperties UserCodeProblemSchema, 'user.code.problem'
module.exports = UserCodeProblemSchema