social.respawn.defs

respawn.social

Documentation

colors object

No description available.

Properties

dominant string Optional

Dominant cover color as a hex string, e.g. #1a2b3c.

View raw schema
{
  "type": "object",
  "properties": {
    "dominant": {
      "type": "string",
      "description": "Dominant cover color as a hex string, e.g. #1a2b3c."
    }
  }
}
cover object

A game cover image with optional extracted colors.

Properties

colors ref #colors Optional

No description available.

image blob Required

No description available.

maxSize: 1.0 MB
View raw schema
{
  "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."
}
gameRef object

Denormalized reference to a game title, keyed by its IGDB id, so records are self-describing without an IGDB lookup.

Properties

igdbId integer Required

No description available.

minimum: 1
slug string Required

No description available.

maxLength: 200 bytes
title string Required

No description available.

maxLength: 2000 bytesmaxGraphemes: 200 graphemes
View raw schema
{
  "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."
}
playState string

Play state. Absent means not played.

Known Values (other values may be valid)
played completed abandoned retired shelved
View raw schema
{
  "type": "string",
  "description": "Play state. Absent means not played.",
  "knownValues": [
    "played",
    "completed",
    "abandoned",
    "retired",
    "shelved"
  ]
}

Lexicon Garden

@