# social.colibri.beta.actor.settings

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

## Definitions

### `social.colibri.beta.actor.settings`

**Type**: `record`

A user's Colibri settings.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `gifFavorites` | `array` | No | GIFs the user saved from the picker, stored whole. A saved GIF has to render without another lookup, and an identifier cannot be turned back into one: a GIF favourited from a chat message carries its own URL as the id rather than a provider key, so no provider can resolve it. |
| `communityOrder` | `array` | No | The user's communities in their preferred sidebar order. |
| `notificationLevel` | `string` | No | Which messages produce a notification. |

## Raw Schema

```json
{
  "id": "social.colibri.beta.actor.settings",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [],
        "properties": {
          "gifFavorites": {
            "type": "array",
            "items": {
              "ref": "social.colibri.beta.embed.defs#gifView",
              "type": "ref"
            },
            "description": "GIFs the user saved from the picker, stored whole. A saved GIF has to render without another lookup, and an identifier cannot be turned back into one: a GIF favourited from a chat message carries its own URL as the id rather than a provider key, so no provider can resolve it."
          },
          "communityOrder": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "did",
              "description": "A community."
            },
            "description": "The user's communities in their preferred sidebar order."
          },
          "notificationLevel": {
            "type": "string",
            "default": "all",
            "description": "Which messages produce a notification.",
            "knownValues": [
              "all",
              "mentionsAndReplies"
            ]
          }
        }
      },
      "description": "A user's Colibri settings."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
