A single board game play
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"bggId",
"playedAt"
],
"properties": {
"name": {
"type": "string",
"maxlength": 256
},
"bggId": {
"type": "string",
"maxlength": 32,
"description": "corresponds to https://boardgamegeek.com/boardgame/<bggId> for the game"
},
"playedAt": {
"type": "string",
"format": "datetime",
"description": "ISO 8601 date string"
}
}
},
"description": "A single board game play"
}