A quiz containing one or more rounds of questions
tid
Timestamp-based ID
Properties
description
string
Optional
A short description about the quiz, and what to expect from it
maxLength: 300 bytesmaxGraphemes: 3000 graphemeshasAudio
boolean
Optional
This quiz includes questions with audio, eg. a music round
falsehasVisuals
boolean
Optional
This quiz includes questions with visuals, eg. a picture round
falselocales
array
of
string
language
Required
Dominant language(s) of the quiz
maxLength: 10 itemsminLength: 1 itemsrevisionOf
ref
com.atproto.repo.strongRef
Optional
If this is an edit or revision of a previous quiz, link that previous version here.
rounds
array
of
ref
#round
Required
Ordered list of rounds in this quiz
maxLength: 50 itemsminLength: 1 itemstimestamp
string
datetime
Required
When this quiz was created
title
string
Required
A title for the quiz
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"rounds",
"locales",
"timestamp"
],
"properties": {
"title": {
"type": "string",
"description": "A title for the quiz"
},
"rounds": {
"type": "array",
"items": {
"ref": "#round",
"type": "ref"
},
"maxLength": 50,
"minLength": 1,
"description": "Ordered list of rounds in this quiz"
},
"locales": {
"type": "array",
"items": {
"type": "string",
"format": "language"
},
"maxLength": 10,
"minLength": 1,
"description": "Dominant language(s) of the quiz"
},
"hasAudio": {
"type": "boolean",
"default": false,
"description": "This quiz includes questions with audio, eg. a music round"
},
"timestamp": {
"type": "string",
"format": "datetime",
"description": "When this quiz was created"
},
"hasVisuals": {
"type": "boolean",
"default": false,
"description": "This quiz includes questions with visuals, eg. a picture round"
},
"revisionOf": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "If this is an edit or revision of a previous quiz, link that previous version here."
},
"description": {
"type": "string",
"maxLength": 300,
"description": "A short description about the quiz, and what to expect from it",
"maxGraphemes": 3000
}
}
},
"description": "A quiz containing one or more rounds of questions"
}