You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
simple-quiz/questions_schema.json

23 lines
693 B

{
"type": "object",
"properties": {
"version": {"type": "number"},
"questions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {"type": "number"},
"topic": {"type": "string"},
"author": {"type": "string"},
"question": {"type": "string"},
"picture": {"type": "string"},
"options": {"type": "array"},
"answer": {}
},
"required": ["id", "question", "answer"]
}
}
},
"required": ["questions"]
}