JSON Bulk Upload

Add multiple questions at once to the database

JSON Input
Target Class:

Bulk Upload (class12) Guide

  • 1Format must be a JSON Array `[]`.
  • 2Required: id, board, medium, subject, chapter, type, marks, difficulty, content, options, solution.
  • 3LaTeX formulas are supported using `$...$`.
  • 4Type must be: MCQ, VSA, SA_2, SA_3, or LA_4.

Example Schema

{
  "id": "mcq1",
  "subject": "Mathematics",
  "chapter": "Logic",
  "type": "MCQ",
  "marks": 2,
  "difficulty": "Medium",
  "content": "...",
  "options": ["A", "B", ...],
  "solution": "...",
  "exam_year": "2025 M"
}