app.mathr.score

mathr.app

Documentation

A player's score record stored in their own PDS for personal backup

main record

A player's score record stored in their own PDS for personal backup

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp when the score was recorded

level integer Required

The highest level reached by the player

minimum: 1
percentage integer Optional

Success rate as a percentage (0-100)

minimum: 0maximum: 100
totalChallenges integer Required

Total number of challenges attempted

minimum: 1
totalSuccesses integer Required

Total number of correct answers

minimum: 0
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "level",
      "totalSuccesses",
      "totalChallenges",
      "createdAt"
    ],
    "properties": {
      "level": {
        "type": "integer",
        "minimum": 1,
        "description": "The highest level reached by the player"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the score was recorded"
      },
      "percentage": {
        "type": "integer",
        "maximum": 100,
        "minimum": 0,
        "description": "Success rate as a percentage (0-100)"
      },
      "totalSuccesses": {
        "type": "integer",
        "minimum": 0,
        "description": "Total number of correct answers"
      },
      "totalChallenges": {
        "type": "integer",
        "minimum": 1,
        "description": "Total number of challenges attempted"
      }
    }
  },
  "description": "A player's score record stored in their own PDS for personal backup"
}

Lexicon Garden

@