Schema
Description of exam schema.
Exam files use the .json
extension. JSON, or JavaScript Object Notation is a data format that is supported by many programming languages. Files must use this extension and adhere to the schema defined below.
Exam Maker allows users to create and share exams without knowing this schema. However, exams can be created in any text editor.
Example Exam File
Exam
Property
Description
Type
id
unique identifier
string
title
exam title
string
description
exam description
string
author
exam author
Author
code
certification/exam code
string
pass
minimum passing score percentage
number
time
time limit in minutes
number
image
URL of exam logo 1:1 size is best
string
cover
first screen of exam
Node[]
test
exam content
Question[]
Author
Property
Description
Type
id
unique identifier
string
name
author name
string
image
author image URL
string
Question
Property
Description
Type
variant
type of question
number
question
question content
Node[]
choices
answer content
Choice[]
answer
answer key
boolean/string[]
explanation
explanation content
Node[]
Question Variants
Variant
Question Type
Answer Example
0
multiple choice
[true,false,false,false]
1
multiple answer
[true,true,false,false]
2
fill in the blank
[answer,variation,another]
3
list order
[]
Node
Property
Description
Type
variant
type of node
number
text
content of node
string
Node Variants
Variant
Node Type
Text
0
image
URL of an image
1
normal text
Normal sized text, most commonly used variant
2
large text
Large header text
Choice
Property
Description
Type
label
choice label text
string
text
content of choice
string
Last updated