# at.meme-museum.collection

> Published by [meme-museum.at](https://lexicon.garden/identity/did:plc:rerdjlp4sbpnw6m3t35m27zb)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:rerdjlp4sbpnw6m3t35m27zb/at.meme-museum.collection)
- [Documentation](https://lexicon.garden/lexicon/did:plc:rerdjlp4sbpnw6m3t35m27zb/at.meme-museum.collection/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:rerdjlp4sbpnw6m3t35m27zb/at.meme-museum.collection/examples)

## Definitions

### `at.meme-museum.collection`

**Type**: `record`

A named board/folder of memes, e.g. "reactions" or "cat pics". Membership is recorded separately via at.meme-museum.collectionItem, not inline here.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "at.meme-museum.collection",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 100,
            "maxGraphemes": 64
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 1000
          }
        }
      },
      "description": "A named board/folder of memes, e.g. \"reactions\" or \"cat pics\". Membership is recorded separately via at.meme-museum.collectionItem, not inline here."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
