club.syntax.actor.profile

syntax.club

Documentation

A declaration of a Syntax Club account profile.

main record

A declaration of a Syntax Club account profile.

Record Key literal:self Fixed literal value

Properties

avatar blob Optional

Profile picture.

maxSize: 1.0 MB
createdAt string datetime Required

Record creation timestamp.

description string Optional

Optional profile description.

maxGraphemes: 256 graphemes
displayName string Optional

No description available.

maxGraphemes: 64 graphemes
updatedAt string datetime Optional

Last profile update timestamp.

View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "createdAt"
    ],
    "properties": {
      "avatar": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg"
        ],
        "maxSize": 1000000,
        "description": "Profile picture."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Record creation timestamp."
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Last profile update timestamp."
      },
      "description": {
        "type": "string",
        "description": "Optional profile description.",
        "maxGraphemes": 256
      },
      "displayName": {
        "type": "string",
        "maxGraphemes": 64
      }
    }
  },
  "description": "A declaration of a Syntax Club account profile."
}

Lexicon Garden

@