# blue.moji.packs.packitem

> 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.packitem)
- [Documentation](https://lexicon.garden/lexicon/did:plc:kmzpsik7s5y5fwu7nnkngfx4/blue.moji.packs.packitem/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:kmzpsik7s5y5fwu7nnkngfx4/blue.moji.packs.packitem/examples)

## Definitions

### `blue.moji.packs.packitem`

**Type**: `record`

Record representing a Bluemoji's inclusion in a specific pack. The AppView will ignore duplicate item records.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `pack` | `string` (at-uri) | Yes | Reference (AT-URI) to the pack record (blue.moji.packs.pack). |
| `subject` | `string` (at-uri) | Yes | Reference (AT-URI) to the Bluemoji item record (blue.moji.collection.item). |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "blue.moji.packs.packitem",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "pack",
          "createdAt"
        ],
        "properties": {
          "pack": {
            "type": "string",
            "format": "at-uri",
            "description": "Reference (AT-URI) to the pack record (blue.moji.packs.pack)."
          },
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "Reference (AT-URI) to the Bluemoji item record (blue.moji.collection.item)."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Record representing a Bluemoji's inclusion in a specific pack. The AppView will ignore duplicate item records."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
