# social.colibri.beta.member

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

## Definitions

### `social.colibri.beta.member`

**Type**: `record`

A community member. The record key is the member's DID, so membership is a direct lookup and a member cannot hold two of these.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `roles` | `array` | No | Roles assigned to this member. |
| `subject` | `string` (did) | Yes | The member's DID. Matches the record key. |
| `joinedAt` | `string` (datetime) | Yes | When the member was admitted. |
| `nickname` | `string` | No | Per-community display name override. |

## Raw Schema

```json
{
  "id": "social.colibri.beta.member",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "joinedAt"
        ],
        "properties": {
          "roles": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "record-key",
              "description": "A role in this community."
            },
            "description": "Roles assigned to this member."
          },
          "subject": {
            "type": "string",
            "format": "did",
            "description": "The member's DID. Matches the record key."
          },
          "joinedAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the member was admitted."
          },
          "nickname": {
            "type": "string",
            "maxLength": 32,
            "description": "Per-community display name override."
          }
        }
      },
      "description": "A community member. The record key is the member's DID, so membership is a direct lookup and a member cannot hold two of these."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
