Question Editor

Create and Edit Jeopardy Questions

Create and edit question sets using the JSON format. Questions are organized into categories with optional difficulty levels.

← Back to Setup

Load Data

AI Question Generator

Generate questions and categories using AI based on a topic. Generated content can be previewed and added to your question set.

Game Title

Server Storage

Save question sets to the server to load them later on any device. Requires a unique name and password. You can update existing sets or delete them if needed.

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.

Load a JSON file, select a saved set, or start with a blank form to begin editing.