An invitation to play a game, with everything needed to execute it
Record Key
tid
Timestamp-based ID
Properties
game
ref
games.atplay.game.release
Required
No description available.
otherPlayers
array
of
string
did
Required
Array of DIDs for other players in the game
minLength: 1 itemsparameters
object
Optional
Any parameters of play used by the game logic
state
ref
games.atplay.game.state
Required
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"game",
"otherPlayers",
"state"
],
"properties": {
"game": {
"ref": "games.atplay.game.release",
"type": "ref"
},
"state": {
"ref": "games.atplay.game.state",
"type": "ref"
},
"parameters": {
"type": "object",
"properties": {},
"description": "Any parameters of play used by the game logic"
},
"otherPlayers": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"minLength": 1,
"description": "Array of DIDs for other players in the game"
}
}
},
"description": "An invitation to play a game, with everything needed to execute it"
}