A team's scored answers for a quiz
Record Key
tid
Timestamp-based ID
Properties
answers
array
of
ref
#scoredAnswer
Required
Scored answers for this team
maxLength: 500 itemsquizBegin
ref
com.atproto.repo.strongRef
Required
Reference to the quizBegin record
team
ref
com.atproto.repo.strongRef
Required
Reference to the team
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"quizBegin",
"team",
"answers"
],
"properties": {
"team": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the team"
},
"answers": {
"type": "array",
"items": {
"ref": "#scoredAnswer",
"type": "ref"
},
"maxLength": 500,
"description": "Scored answers for this team"
},
"quizBegin": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the quizBegin record"
}
}
},
"description": "A team's scored answers for a quiz"
}