social.colibri.actor.plate

colibri.social

Documentation

A Colibri name plate used to decorate member rows.

main record

A Colibri name plate used to decorate member rows.

Record Key tid Timestamp-based ID

Properties

$type string nsid Optional

The type of the record.

color string Required

The base plate color, blended with the image.

maxLength: 7 bytes
name string Required

Plate name as exposed to the user.

maxLength: 320 bytesmaxGraphemes: 32 graphemes
picture blob Required

The plate image, blended with the color.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "color",
      "picture"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 320,
        "description": "Plate name as exposed to the user.",
        "maxGraphemes": 32
      },
      "$type": {
        "type": "string",
        "format": "nsid",
        "description": "The type of the record."
      },
      "color": {
        "type": "string",
        "maxLength": 7,
        "description": "The base plate color, blended with the image."
      },
      "picture": {
        "type": "blob",
        "accept": [
          "image/jpeg",
          "image/png",
          "image/gif",
          "image/webp"
        ],
        "description": "The plate image, blended with the color."
      }
    }
  },
  "description": "A Colibri name plate used to decorate member rows."
}

Lexicon Garden

@