Orensomekh commited on
Commit
5a78f14
·
verified ·
1 Parent(s): eebb937

Create Question_File.json.schema

Browse files
Operational_Instructions/Question_File.json.schema ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "Question schema",
4
+ "type": "object",
5
+ "properties": {
6
+ "id": {
7
+ "type": "integer",
8
+ "description": "Question ID"
9
+ },
10
+ "question": {
11
+ "type": "string",
12
+ "description": "The question"
13
+ }
14
+ },
15
+ "required": ["id", "question"]
16
+ }