A record indicating the actor owns a game on a specific platform. May include attestation signatures proving ownership was verified by an external service.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
game
ref
#gameRef
Required
Reference to the game record.
platform
string
Required
The platform where ownership was verified.
Known values:
steam, gog, epic, playstation, xbox, nintendo, itchio, humblesignatures
array
of
union
Optional
Attestation signatures proving ownership was verified. Can be inline signatures or strongRefs to remote proof records.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"game",
"platform",
"createdAt"
],
"properties": {
"game": {
"ref": "#gameRef",
"type": "ref",
"description": "Reference to the game record."
},
"platform": {
"type": "string",
"description": "The platform where ownership was verified.",
"knownValues": [
"steam",
"gog",
"epic",
"playstation",
"xbox",
"nintendo",
"itchio",
"humble"
]
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"signatures": {
"type": "array",
"items": {
"refs": [
"games.gamesgamesgamesgames.defs#signature",
"com.atproto.repo.strongRef"
],
"type": "union"
},
"description": "Attestation signatures proving ownership was verified. Can be inline signatures or strongRefs to remote proof records."
}
}
},
"description": "A record indicating the actor owns a game on a specific platform. May include attestation signatures proving ownership was verified by an external service."
}