# blue.moji.packs.pack

> Published by [moji.blue](https://lexicon.garden/identity/did:plc:kmzpsik7s5y5fwu7nnkngfx4)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:kmzpsik7s5y5fwu7nnkngfx4/blue.moji.packs.pack)
- [Documentation](https://lexicon.garden/lexicon/did:plc:kmzpsik7s5y5fwu7nnkngfx4/blue.moji.packs.pack/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:kmzpsik7s5y5fwu7nnkngfx4/blue.moji.packs.pack/examples)

## Definitions

### `blue.moji.packs.pack`

**Type**: `record`

A shareable Bluemoji pack

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `icon` | `blob` | No |  |
| `name` | `string` | Yes |  |
| `labels` | `union` | No | Self-label values for this emoji. Effectively content warnings. |
| `adultOnly` | `boolean` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No |  |
| `descriptionFacets` | `array` | No |  |

## Raw Schema

```json
{
  "id": "blue.moji.packs.pack",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "icon": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000
          },
          "name": {
            "type": "string",
            "maxLength": 64,
            "minLength": 1
          },
          "labels": {
            "refs": [
              "com.atproto.label.defs#selfLabels"
            ],
            "type": "union",
            "description": "Self-label values for this emoji. Effectively content warnings."
          },
          "adultOnly": {
            "type": "boolean",
            "default": false
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 3000,
            "maxGraphemes": 300
          },
          "descriptionFacets": {
            "type": "array",
            "items": {
              "ref": "blue.moji.richtext.facet",
              "type": "ref"
            }
          }
        }
      },
      "description": "A shareable Bluemoji pack"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
