The QB Reader API represents tossups and bonuses as JSON objects. These schemas describe the structure of these objects.
Note: thetype
field of tossups and bonuses is deprecated and will be removed in a future update.
Tossup
_id
: string
question
: string
formatted_answer
: string
answer
: string
category
: string
subcategory
: string
packet
: string
set
: string
setName
: string
type
: string
"tossup"
for tossups.
Note: this field will be deprecated in a future update.
packetNumber
: number
questionNumber
: number
createdAt
: string
updatedAt
: string
difficulty
: number
[0-10]
.Bonus
_id
: string
leadin
: string
parts
: [string, string, string]
formatted_answers
: [string, string, string]
answers
: [string, string, string]
category
: string
subcategory
: string
packet
: string
set
: string
setName
: string
type
: string
"bonus"
for bonuses.
Note: this field will be deprecated in a future update.
packetNumber
: number
questionNumber
: number
createdAt
: string
updatedAt
: string
difficulty
: number
[0-10]
.