A Barklesheep game move
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
gameId
string
Required
No description available.
moveNumber
integer
Required
No description available.
minimum: 0opponent
string
did
Optional
A decentralized identifier (DID).
position
integer
Required
No description available.
minimum: -10maximum: 99View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"gameId",
"position",
"moveNumber",
"createdAt"
],
"properties": {
"gameId": {
"type": "string"
},
"opponent": {
"type": "string",
"format": "did"
},
"position": {
"type": "integer",
"maximum": 99,
"minimum": -10
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"moveNumber": {
"type": "integer",
"minimum": 0
}
}
},
"description": "A Barklesheep game move"
}