app.bivri.actor.profile

lexicons.bivri.app

Documentation

main record

No description available.

Record Key literal:self Fixed literal value

Properties

avatar blob Optional

Small image displayed next to the member's artworks and comments.

maxSize: 1.0 MB
banner blob Optional

Larger horizontal image displayed behind the profile view.

maxSize: 1.0 MB
bio string Optional

Free-form profile description text.

maxLength: 2560 bytesmaxGraphemes: 256 graphemes
displayName string Optional

Name shown in place of the handle.

maxLength: 640 bytesmaxGraphemes: 64 graphemes
updatedAt string datetime Optional

Client-declared timestamp of the last edit to this record.

View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [],
    "properties": {
      "bio": {
        "type": "string",
        "maxLength": 2560,
        "description": "Free-form profile description text.",
        "maxGraphemes": 256
      },
      "links": {
        "type": "array",
        "items": {
          "ref": "#link",
          "type": "ref"
        },
        "maxLength": 10,
        "description": "External links the member publishes on their profile."
      },
      "avatar": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg",
          "image/webp"
        ],
        "maxSize": 1000000,
        "description": "Small image displayed next to the member's artworks and comments."
      },
      "banner": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg",
          "image/webp"
        ],
        "maxSize": 1000000,
        "description": "Larger horizontal image displayed behind the profile view."
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Client-declared timestamp of the last edit to this record."
      },
      "displayName": {
        "type": "string",
        "maxLength": 640,
        "description": "Name shown in place of the handle.",
        "maxGraphemes": 64
      }
    }
  }
}
link object

No description available.

Properties

title string Optional

Label shown for the link.

maxLength: 320 bytesmaxGraphemes: 32 graphemes
url string uri Required

Target of the link.

View raw schema
{
  "type": "object",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Target of the link."
    },
    "title": {
      "type": "string",
      "maxLength": 320,
      "description": "Label shown for the link.",
      "maxGraphemes": 32
    }
  }
}

Lexicon Garden

@