Marks the start of a quiz session
Record Key
tid
Timestamp-based ID
Properties
endsAt
string
datetime
Required
When the quiz ends
league
ref
com.atproto.repo.strongRef
Required
Reference to the league running this quiz
quiz
ref
com.atproto.repo.strongRef
Required
Reference to the quiz being played
startedAt
string
datetime
Required
When the quiz starts
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"league",
"quiz",
"startedAt",
"endsAt"
],
"properties": {
"quiz": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the quiz being played"
},
"endsAt": {
"type": "string",
"format": "datetime",
"description": "When the quiz ends"
},
"league": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the league running this quiz"
},
"startedAt": {
"type": "string",
"format": "datetime",
"description": "When the quiz starts"
}
}
},
"description": "Marks the start of a quiz session"
}