Final rankings for a completed quiz
Record Key
tid
Timestamp-based ID
Properties
quizBegin
ref
com.atproto.repo.strongRef
Required
Reference to the quizBegin record
results
array
of
ref
#teamResult
Required
Ordered list of team results (by ranking)
maxLength: 100 itemsminLength: 1 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"quizBegin",
"results"
],
"properties": {
"results": {
"type": "array",
"items": {
"ref": "#teamResult",
"type": "ref"
},
"maxLength": 100,
"minLength": 1,
"description": "Ordered list of team results (by ranking)"
},
"quizBegin": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the quizBegin record"
}
}
},
"description": "Final rankings for a completed quiz"
}