# social.colibri.actor.data

> 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.data)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.actor.data/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.actor.data/examples)

## Definitions

### `social.colibri.actor.data`

**Type**: `record`

The main actor data used in Colibri

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `$type` | `string` (nsid) | No | The type of the record. |
| `emoji` | `string` | No | The emoji displayed next to status. |
| `status` | `string` | Yes | The status for the user, displayed on their profile. |
| `communities` | `array` | Yes | A list of references to communities this user has joined and does not own. |

## Raw Schema

```json
{
  "id": "social.colibri.actor.data",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "status",
          "communities"
        ],
        "properties": {
          "$type": {
            "type": "string",
            "format": "nsid",
            "description": "The type of the record."
          },
          "emoji": {
            "type": "string",
            "description": "The emoji displayed next to status."
          },
          "status": {
            "type": "string",
            "default": "",
            "maxLength": 32,
            "description": "The status for the user, displayed on their profile."
          },
          "communities": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "record-key",
              "description": "A reference to a community this user has joined and does not own."
            },
            "description": "A list of references to communities this user has joined and does not own."
          }
        }
      },
      "description": "The main actor data used in Colibri"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1
}
```
