pub.quizzy.quizScore

quizzy.pub

Documentation

Final rankings for a completed quiz

main record

Final rankings for a completed quiz

Record Key tid Timestamp-based ID

Properties

results array of ref #teamResult Required

Ordered list of team results (by ranking)

maxLength: 100 itemsminLength: 1 items
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "quizBegin",
      "results"
    ],
    "properties": {
      "results": {
        "type": "array",
        "items": {
          "ref": "#teamResult",
          "type": "ref"
        },
        "maxLength": 100,
        "minLength": 1,
        "description": "Ordered list of team results (by ranking)"
      },
      "quizBegin": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "Reference to the quizBegin record"
      }
    }
  },
  "description": "Final rankings for a completed quiz"
}
teamResult object

A team's final result

Properties

totalScore integer Required

Team's total score

minimum: 0
View raw schema
{
  "type": "object",
  "required": [
    "teamScore",
    "totalScore"
  ],
  "properties": {
    "teamScore": {
      "ref": "com.atproto.repo.strongRef",
      "type": "ref",
      "description": "Reference to the team's detailed score record"
    },
    "totalScore": {
      "type": "integer",
      "minimum": 0,
      "description": "Team's total score"
    }
  },
  "description": "A team's final result"
}

Lexicon Garden

@