MCQ JSON Format Guide - How to Create Quiz JSON

Complete guide to creating MCQ JSON format. Learn the schema, field descriptions, validation rules, and examples.

Get Started Free

MCQ JSON Format Guide

Learn how to structure your JSON data for the MCQ Playground.

Required Fields

Example JSON

{
  "title": "My Quiz",
  "questions": [
    {
      "question": "What is 2+2?",
      "options": ["2", "3", "4", "5"],
      "answer": "4",
      "explanation": "Basic arithmetic"
    }
  ]
}
      
Try in Playground