A quiz team
Record Key
tid
Timestamp-based ID
Properties
avatar
blob
Optional
Small image to be displayed near the team name
maxSize: 1.5 MBavatarAlt
string
Optional
No description available.
maxLength: 2560 bytesmaxGraphemes: 256 graphemesmembers
array
of
string
did
Required
DIDs of team members
maxLength: 20 itemsminLength: 1 itemsname
string
Required
Team name
maxLength: 1000 bytesmaxGraphemes: 100 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"members"
],
"properties": {
"name": {
"type": "string",
"maxLength": 1000,
"description": "Team name",
"maxGraphemes": 100
},
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1500000,
"description": "Small image to be displayed near the team name"
},
"members": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"maxLength": 20,
"minLength": 1,
"description": "DIDs of team members"
},
"avatarAlt": {
"type": "string",
"maxLength": 2560,
"maxGraphemes": 256
}
}
},
"description": "A quiz team"
}