pub.quizzy.team

quizzy.pub

Documentation

A quiz team

main record

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 MB
avatarAlt string Optional

No description available.

maxLength: 2560 bytesmaxGraphemes: 256 graphemes
members array of string did Required

DIDs of team members

maxLength: 20 itemsminLength: 1 items
name string Required

Team name

maxLength: 1000 bytesmaxGraphemes: 100 graphemes
View 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"
}

Lexicon Garden

@