Spaces:
Sleeping
Sleeping
File size: 329 Bytes
5a78f14 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
{
"$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"]
} |