No description available.
Properties
View raw schema
{
"type": "object",
"properties": {
"dominant": {
"type": "string",
"description": "Dominant cover color as a hex string, e.g. #1a2b3c."
}
}
}
No description available.
{
"type": "object",
"properties": {
"dominant": {
"type": "string",
"description": "Dominant cover color as a hex string, e.g. #1a2b3c."
}
}
}
A game cover image with optional extracted colors.
colors
ref
#colors
Optional
No description available.
image
blob
Required
No description available.
maxSize: 1.0 MB{
"type": "object",
"required": [
"image"
],
"properties": {
"image": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 1000000
},
"colors": {
"ref": "#colors",
"type": "ref"
}
},
"description": "A game cover image with optional extracted colors."
}
Denormalized reference to a game title, keyed by its IGDB id, so records are self-describing without an IGDB lookup.
{
"type": "object",
"required": [
"igdbId",
"slug",
"title"
],
"properties": {
"slug": {
"type": "string",
"maxLength": 200
},
"title": {
"type": "string",
"maxLength": 2000,
"maxGraphemes": 200
},
"igdbId": {
"type": "integer",
"minimum": 1
}
},
"description": "Denormalized reference to a game title, keyed by its IGDB id, so records are self-describing without an IGDB lookup."
}
Play state. Absent means not played.
played completed abandoned retired shelved{
"type": "string",
"description": "Play state. Absent means not played.",
"knownValues": [
"played",
"completed",
"abandoned",
"retired",
"shelved"
]
}