zone.zephyra.screens.profile

zephyra.zone

Documentation

main record

No description available.

Record Key literal:self Fixed literal value

Properties

avatar blob Optional

Poster, logo, or other representative image for the media.

maxSize: 1.0 MB
createdAt string datetime Required

Timestamp the profile was first published.

mediaName string Required

Name of the show, film, or other media this account posts frames from.

maxLength: 640 bytes
updatedAt string datetime Optional

Timestamp the profile was last edited.

View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "mediaName",
      "createdAt"
    ],
    "properties": {
      "avatar": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg"
        ],
        "maxSize": 1048576,
        "description": "Poster, logo, or other representative image for the media."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp the profile was first published."
      },
      "mediaName": {
        "type": "string",
        "maxLength": 640,
        "description": "Name of the show, film, or other media this account posts frames from."
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp the profile was last edited."
      },
      "externalLinks": {
        "type": "array",
        "items": {
          "ref": "#externalLink",
          "type": "ref"
        },
        "description": "Links to external databases or sites describing this media (e.g. TVDB, Wikidata, IMDB)."
      }
    }
  }
}
externalLink object

No description available.

Properties

name string Required

Human-readable name of the external source (e.g. "TVDB", "Wikidata", "IMDB").

uri string uri Required

URL of the media's page on the external source.

View raw schema
{
  "type": "object",
  "required": [
    "name",
    "uri"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "uri",
      "description": "URL of the media's page on the external source."
    },
    "name": {
      "type": "string",
      "description": "Human-readable name of the external source (e.g. \"TVDB\", \"Wikidata\", \"IMDB\")."
    }
  }
}

Lexicon Garden

@