blue.backyard.actor.profile

lexicon.store View official

Documentation

A declaration of a Backyard account profile.

main record

A declaration of a Backyard account profile.

Record Key literal:self Fixed literal value

Properties

avatar blob Optional

Small avatar image for the user.

maxSize: 1.0 MB
banner blob Optional

Larger horizontal banner image.

maxSize: 1.0 MB
createdAt string datetime Optional

When the profile was initially created.

description string Optional

Free-form profile description text (bio).

maxLength: 2560 bytesmaxGraphemes: 256 graphemes
displayName string Optional

Display name for the user.

maxLength: 640 bytesmaxGraphemes: 64 graphemes
pronouns string Optional

User's preferred pronouns.

maxLength: 640 bytesmaxGraphemes: 64 graphemes
View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "properties": {
      "avatar": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg"
        ],
        "maxSize": 1000000,
        "description": "Small avatar image for the user."
      },
      "banner": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg"
        ],
        "maxSize": 1000000,
        "description": "Larger horizontal banner image."
      },
      "pronouns": {
        "type": "string",
        "maxLength": 640,
        "description": "User's preferred pronouns.",
        "maxGraphemes": 64
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When the profile was initially created."
      },
      "description": {
        "type": "string",
        "maxLength": 2560,
        "description": "Free-form profile description text (bio).",
        "maxGraphemes": 256
      },
      "displayName": {
        "type": "string",
        "maxLength": 640,
        "description": "Display name for the user.",
        "maxGraphemes": 64
      }
    }
  },
  "description": "A declaration of a Backyard account profile."
}

Lexicon Garden

@