pub.quizzy.league

quizzy.pub

Documentation

A quiz league with quiz masters and teams

main record

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 graphemes
quizMasters array of string did Required

DIDs of quiz masters who can run quizzes for this league

maxLength: 5 itemsminLength: 1 items
View 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"
}

Lexicon Garden

@