Question Format Structure:
{
"title": "Game Title",
"categories": [
{
"name": "Category Name",
"questions": [
{
"question": "This is the clue or question",
"answer": "The correct answer",
"difficulty": 1 // Optional: 1-5
}
]
}
]
}
Fields:
question (required): The clue or question text
answer (required): The correct answer
difficulty (optional): 1-5 difficulty level determines point value
Point Values: Automatically calculated as base_score × difficulty_level
- Difficulty 1 = base_score × 1 (e.g., $200)
- Difficulty 2 = base_score × 2 (e.g., $400)
- Difficulty 3 = base_score × 3 (e.g., $600)
- Difficulty 4 = base_score × 4 (e.g., $800)
- Difficulty 5 = base_score × 5 (e.g., $1000)
If difficulty is not specified, questions are assumed to be in order from easiest (1) to hardest (5) based on their position.