Created
August 4, 2014 11:52
-
-
Save freetonik/de32134e27e24d15c50a 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", | |
"properties": { | |
"items": { | |
"type": "object", | |
"patternProperties": { | |
"[A-Za-z0-9_-]" : { | |
"type": "object", | |
"required": ["test_file", "name", "description"], | |
"properties": { | |
"test_file": { | |
"type": "string", | |
"description": "File with tests for the task" | |
}, | |
"name": { | |
"type": "string", | |
"description": "Name of the task" | |
}, | |
"description": { | |
"type": "string", | |
"description": "Description of the task" | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment