social.coves.actor.profile

coves.social

Documentation

A user's profile information

main record

A user's profile information

Record Key literal:self Fixed literal value

Properties

avatar blob Optional

No description available.

maxSize: 1.0 MB
banner blob Optional

No description available.

maxSize: 2.0 MB
createdAt string datetime Optional

An RFC 3339 formatted timestamp.

description string Optional

User bio/description with rich text support

maxLength: 2560 bytesmaxGraphemes: 256 graphemes
displayName string Optional

Optional display name

maxLength: 640 bytesmaxGraphemes: 64 graphemes
View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [],
    "properties": {
      "avatar": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg",
          "image/webp"
        ],
        "maxSize": 1000000
      },
      "banner": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg",
          "image/webp"
        ],
        "maxSize": 2000000
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "description": {
        "type": "string",
        "maxLength": 2560,
        "description": "User bio/description with rich text support",
        "maxGraphemes": 256
      },
      "displayName": {
        "type": "string",
        "maxLength": 640,
        "description": "Optional display name",
        "maxGraphemes": 64
      },
      "descriptionFacets": {
        "type": "array",
        "items": {
          "ref": "social.coves.richtext.facet",
          "type": "ref"
        },
        "maxLength": 50,
        "description": "Rich text annotations for the description"
      }
    }
  },
  "description": "A user's profile information"
}

Lexicon Garden

@