ca.jmaingot.boardGamePlay

jmaingot.ca

Documentation

A single board game play

main record

A single board game play

Record Key tid Timestamp-based ID

Properties

bggId string Required

corresponds to https://boardgamegeek.com/boardgame/<bggId> for the game

name string Required

No description available.

playedAt string datetime Required

ISO 8601 date string

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"
}

Lexicon Garden

@