social.clippr.actor.profile

clippr.social

Documentation

A declaration of a Clippr account's profile.

main record

A declaration of a Clippr account's profile.

Record Key literal:self Fixed literal value

Properties

avatar blob Optional

Image to show on user's profiles

maxSize: 1.0 MB
createdAt string datetime Required

The creation date of the profile

description string Optional

Text for user to describe themselves

maxLength: 5000 bytesmaxGraphemes: 500 graphemes
displayName string Required

A display name to be shown on a profile

maxLength: 640 bytesmaxGraphemes: 64 graphemes
View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "createdAt",
      "displayName"
    ],
    "properties": {
      "avatar": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg"
        ],
        "maxSize": 1000000,
        "description": "Image to show on user's profiles"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "The creation date of the profile"
      },
      "description": {
        "type": "string",
        "maxLength": 5000,
        "description": "Text for user to describe themselves",
        "maxGraphemes": 500
      },
      "displayName": {
        "type": "string",
        "maxLength": 640,
        "description": "A display name to be shown on a profile",
        "maxGraphemes": 64
      }
    }
  },
  "description": "A declaration of a Clippr account's profile."
}

Lexicon Garden

@