A quiz league with quiz masters and teams
Record Key
tid
Timestamp-based ID
Properties
name
string
Required
Name of the league
maxLength: 1000 bytesmaxGraphemes: 100 graphemesquizMasters
array
of
string
did
Required
DIDs of quiz masters who can run quizzes for this league
maxLength: 5 itemsminLength: 1 itemsteams
array
of
ref
com.atproto.repo.strongRef
Required
Teams participating in this league
maxLength: 100 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"quizMasters",
"teams"
],
"properties": {
"name": {
"type": "string",
"maxLength": 1000,
"description": "Name of the league",
"maxGraphemes": 100
},
"teams": {
"type": "array",
"items": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"maxLength": 100,
"description": "Teams participating in this league"
},
"quizMasters": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"maxLength": 5,
"minLength": 1,
"description": "DIDs of quiz masters who can run quizzes for this league"
}
}
},
"description": "A quiz league with quiz masters and teams"
}