Last active
August 29, 2015 14:04
-
-
Save freetonik/5bc4a5f031358b3460d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "http://json-schema.org/draft-04/schema#", | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"description": "Theory unit schema", | |
"type": "object", | |
"required": ["name", "description", "exercise_files"], | |
"properties": { | |
"name": { | |
"type": "string", | |
"description": "Name of the task" | |
}, | |
"description": { | |
"type": "string", | |
"description": "Description of the task" | |
}, | |
"exercise_files": { | |
"type": "array", | |
"description": "Source files for the task", | |
"minItems": 1, | |
"items": { | |
"type": "string" | |
}, | |
"uniqueItems": true | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment