pub.quizzy.teamScore

quizzy.pub

Documentation

A team's scored answers for a quiz

main record

A team's scored answers for a quiz

Record Key tid Timestamp-based ID

Properties

answers array of ref #scoredAnswer Required

Scored answers for this team

maxLength: 500 items
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "quizBegin",
      "team",
      "answers"
    ],
    "properties": {
      "team": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "Reference to the team"
      },
      "answers": {
        "type": "array",
        "items": {
          "ref": "#scoredAnswer",
          "type": "ref"
        },
        "maxLength": 500,
        "description": "Scored answers for this team"
      },
      "quizBegin": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "Reference to the quizBegin record"
      }
    }
  },
  "description": "A team's scored answers for a quiz"
}
scoredAnswer object

An answer with scores for each expected answer

Properties

commentary string Optional

Optional commentary from the quiz master

maxLength: 5000 bytesmaxGraphemes: 500 graphemes
scores array of integer Required

Points awarded for each expected answer in the question

maxLength: 10 itemsminLength: 1 items
View raw schema
{
  "type": "object",
  "required": [
    "answer",
    "scores"
  ],
  "properties": {
    "answer": {
      "ref": "com.atproto.repo.strongRef",
      "type": "ref",
      "description": "Reference to the answer record"
    },
    "scores": {
      "type": "array",
      "items": {
        "type": "integer",
        "minimum": 0
      },
      "maxLength": 10,
      "minLength": 1,
      "description": "Points awarded for each expected answer in the question"
    },
    "commentary": {
      "type": "string",
      "maxLength": 5000,
      "description": "Optional commentary from the quiz master",
      "maxGraphemes": 500
    }
  },
  "description": "An answer with scores for each expected answer"
}

Lexicon Garden

@