A grouping of games — franchise, series, or curated list.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
games
array
of
string
at-uri
Optional
No description available.
media
array
of
ref
games.gamesgamesgamesgames.defs#mediaItem
Optional
No description available.
name
string
Required
No description available.
parent
string
at-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
type
string
Optional
No description available.
Known values:
franchise, series, curatedwebsites
array
of
ref
games.gamesgamesgamesgames.defs#website
Optional
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string",
"knownValues": [
"franchise",
"series",
"curated"
]
},
"games": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
}
},
"media": {
"type": "array",
"items": {
"ref": "games.gamesgamesgamesgames.defs#mediaItem",
"type": "ref"
}
},
"parent": {
"type": "string",
"format": "at-uri"
},
"websites": {
"type": "array",
"items": {
"ref": "games.gamesgamesgamesgames.defs#website",
"type": "ref"
}
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string"
}
}
},
"description": "A grouping of games — franchise, series, or curated list."
}