A game, published by the developer that made it. One per repo: the record lives in the developer's own repository and is the canonical, self-asserted definition of the game. Player-side records reference it by AT-URI.
Record Key
literal:self
Fixed literal value
Properties
createdAt
string
datetime
Required
When this record was created.
description
string
Optional
Short description of the game.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesgenres
array
of
string
Optional
Free-form genre tags, e.g. 'mmorpg', 'sandbox'.
maxLength: 8 itemslogo
blob
Optional
Game logo or cover image.
maxSize: 1.0 MBname
string
Required
Display name of the game.
maxLength: 640 bytesmaxGraphemes: 64 graphemesplatforms
array
of
string
Optional
Where the game runs, e.g. 'web', 'android'.
maxLength: 16 itemsurl
string
uri
Required
Where the game can be played.
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"url",
"createdAt"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "Where the game can be played."
},
"logo": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 1000000,
"description": "Game logo or cover image."
},
"name": {
"type": "string",
"maxLength": 640,
"description": "Display name of the game.",
"maxGraphemes": 64
},
"genres": {
"type": "array",
"items": {
"type": "string",
"maxLength": 128,
"maxGraphemes": 32
},
"maxLength": 8,
"description": "Free-form genre tags, e.g. 'mmorpg', 'sandbox'."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this record was created."
},
"platforms": {
"type": "array",
"items": {
"type": "string",
"maxLength": 128,
"maxGraphemes": 32
},
"maxLength": 16,
"description": "Where the game runs, e.g. 'web', 'android'."
},
"description": {
"type": "string",
"maxLength": 3000,
"description": "Short description of the game.",
"maxGraphemes": 300
}
}
},
"description": "A game, published by the developer that made it. One per repo: the record lives in the developer's own repository and is the canonical, self-asserted definition of the game. Player-side records reference it by AT-URI."
}