One adjudicated session of play, published by the player as a public trail of how their progress was earned. The leaderboard does not need these records; at.turtleme.player.state alone is enough to rank someone. They exist so that progress can be read as a history rather than a number, and so other clients have something to render. Written per session rather than per catch, which keeps a player's repository from growing without limit.
tid
Timestamp-based ID
Properties
burnt
integer
Optional
No description available.
minimum: 0caught
integer
Optional
No description available.
minimum: 0cooked
integer
Optional
No description available.
minimum: 0cookingXp
integer
Optional
No description available.
minimum: 0endedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
fishingXp
integer
Optional
No description available.
minimum: 0methods
array
of
string
Optional
Which ways of fishing were used.
maxLength: 4 itemsproof
string
Required
A compact JWS signed by turtle meat carrying the authoritative account of the session. As with at.turtleme.player.state, this is the only field that counts and the rest are a transcription.
maxLength: 4096 bytesstartedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"proof",
"startedAt",
"endedAt"
],
"properties": {
"burnt": {
"type": "integer",
"minimum": 0
},
"proof": {
"type": "string",
"maxLength": 4096,
"description": "A compact JWS signed by turtle meat carrying the authoritative account of the session. As with at.turtleme.player.state, this is the only field that counts and the rest are a transcription."
},
"caught": {
"type": "integer",
"minimum": 0
},
"cooked": {
"type": "integer",
"minimum": 0
},
"endedAt": {
"type": "string",
"format": "datetime"
},
"methods": {
"type": "array",
"items": {
"type": "string",
"knownValues": [
"at.turtleme.game.session#spot",
"at.turtleme.game.session#castAndStrike",
"at.turtleme.game.session#driftNet",
"at.turtleme.game.session#reef"
]
},
"maxLength": 4,
"description": "Which ways of fishing were used."
},
"cookingXp": {
"type": "integer",
"minimum": 0
},
"fishingXp": {
"type": "integer",
"minimum": 0
},
"startedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "One adjudicated session of play, published by the player as a public trail of how their progress was earned. The leaderboard does not need these records; at.turtleme.player.state alone is enough to rank someone. They exist so that progress can be read as a history rather than a number, and so other clients have something to render. Written per session rather than per catch, which keeps a player's repository from growing without limit."
}