# is.currents.feed.collection

> Published by [currents.is](https://lexicon.garden/identity/did:plc:jaur46k6ijyfvl4lojza7eic)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.feed.collection)
- [Documentation](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.feed.collection/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.feed.collection/examples)

## Definitions

### `is.currents.feed.collection`

**Type**: `record`

A collection of saved items curated by an account.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Human-readable name of the collection. |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No | Optional description shown with the collection. |

## Raw Schema

```json
{
  "id": "is.currents.feed.collection",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 1000,
            "description": "Human-readable name of the collection.",
            "maxGraphemes": 100
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 10000,
            "description": "Optional description shown with the collection.",
            "maxGraphemes": 1000
          }
        }
      },
      "description": "A collection of saved items curated by an account."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
