# social.colibri.actor.plate

> Published by [colibri.social](https://lexicon.garden/identity/did:plc:mprdjqjluoswa7awzggaggj3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.actor.plate)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.actor.plate/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.actor.plate/examples)

## Definitions

### `social.colibri.actor.plate`

**Type**: `record`

A Colibri name plate used to decorate member rows.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Plate name as exposed to the user. |
| `$type` | `string` (nsid) | No | The type of the record. |
| `color` | `string` | Yes | The base plate color, blended with the image. |
| `picture` | `blob` | Yes | The plate image, blended with the color. |

## Raw Schema

```json
{
  "id": "social.colibri.actor.plate",
  "defs": {
    "main": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1
}
```
