# app.nblr.feed.collection

> Published by [nblr.app](https://lexicon.garden/identity/did:plc:kgrcstzon7oaiy5myjfgiou6)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:kgrcstzon7oaiy5myjfgiou6/app.nblr.feed.collection)
- [Documentation](https://lexicon.garden/lexicon/did:plc:kgrcstzon7oaiy5myjfgiou6/app.nblr.feed.collection/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:kgrcstzon7oaiy5myjfgiou6/app.nblr.feed.collection/examples)

## Definitions

### `app.nblr.feed.collection`

**Type**: `record`

Record defining a collection of resources.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Name of the collection |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "app.nblr.feed.collection",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 640,
            "description": "Name of the collection",
            "maxGraphemes": 64
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Record defining a collection of resources."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
