| Meaning |
{
"format": "Aiken",
"description": "A plain‑text quiz format where each question is followed by answer choices and the correct answer.",
"structure": {
"question": "String – the question text",
"options": {
"A": "String – first option",
"B": "String – second option",
"C": "String – third option",
"D": "String – fourth option"
},
"answer": "String – the letter of the correct option (e.g., "B")"
},
"example": [
{
"question": "What is the capital of France?",
"options": {
"A": "Berlin",
"B": "Madrid",
"C": "Paris",
"D": "Rome"
},
"answer": "C"
},
{
"question": "Which element has the chemical symbol O?",
"options": {
"A": "Oxygen",
"B": "Gold",
"C": "Osmium",
"D": "Silver"
},
"answer": "A"
}
]
} |