Challenge / Operational_Instructions /Question.json.schema
Orensomekh's picture
Rename Operational_Instructions/Question_File.json.schema to Operational_Instructions/Question.json.schema
23a70c6 verified
raw
history blame contribute delete
329 Bytes
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Question schema",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Question ID"
},
"question": {
"type": "string",
"description": "The question"
}
},
"required": ["id", "question"]
}