games.gamesgamesgamesgames.actor.profile

lexicon.store View official

Documentation

A declaration of a Pentaract actor profile.

main record

A declaration of a Pentaract actor profile.

Record Key literal:self Fixed literal value

Properties

avatar blob Optional

Image to be displayed on profile page. AKA, 'profile picture'

maxSize: 10.0 MB
createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

Free-form profile description text.

maxLength: 3000 bytes
descriptionFacets array of ref app.bsky.richtext.facet Optional

Annotations of text (mentions, URLs, hashtags, etc)

displayName string Required

No description available.

maxLength: 640 bytes
pronouns string Optional

Free-form pronouns text.

maxLength: 200 bytes
View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "displayName",
      "createdAt"
    ],
    "properties": {
      "avatar": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg"
        ],
        "maxSize": 10000000,
        "description": "Image to be displayed on profile page. AKA, 'profile picture'"
      },
      "pronouns": {
        "type": "string",
        "maxLength": 200,
        "description": "Free-form pronouns text."
      },
      "websites": {
        "type": "array",
        "items": {
          "ref": "games.gamesgamesgamesgames.defs#website",
          "type": "ref"
        }
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "description": {
        "type": "string",
        "maxLength": 3000,
        "description": "Free-form profile description text."
      },
      "displayName": {
        "type": "string",
        "maxLength": 640
      },
      "descriptionFacets": {
        "type": "array",
        "items": {
          "ref": "app.bsky.richtext.facet",
          "type": "ref"
        },
        "description": "Annotations of text (mentions, URLs, hashtags, etc)"
      }
    }
  },
  "description": "A declaration of a Pentaract actor profile."
}

Lexicon Garden

@