Challenge / Operational_Instructions /Question_File.json.schema
Orensomekh's picture
Create Question_File.json.schema
5a78f14 verified
raw
history blame
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"]
}