# co.goodfeeds.feed.list

> Published by [goodfeeds.co](https://lexicon.garden/identity/did:plc:5rnwczst5e2bvowikwejyemz)

✓ This is the authoritative definition for this NSID.

## Description

A user's publicly shared collection of Bluesky feed generators.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:5rnwczst5e2bvowikwejyemz/co.goodfeeds.feed.list)
- [Documentation](https://lexicon.garden/lexicon/did:plc:5rnwczst5e2bvowikwejyemz/co.goodfeeds.feed.list/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:5rnwczst5e2bvowikwejyemz/co.goodfeeds.feed.list/examples)

## Definitions

### `co.goodfeeds.feed.list`

**Type**: `record`

A user's publicly shared list of Bluesky feed generators.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `feeds` | `array` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | Yes |  |

### `co.goodfeeds.feed.list#sharedFeed`

**Type**: `object`

A reference to a Bluesky feed generator record.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes | AT URI of an app.bsky.feed.generator record with a DID authority. |
| `pinned` | `boolean` | No | Whether the feed was pinned in the owner's Bluesky saved feeds when this list was published. |

## Raw Schema

```json
{
  "id": "co.goodfeeds.feed.list",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "feeds",
          "createdAt",
          "updatedAt"
        ],
        "properties": {
          "feeds": {
            "type": "array",
            "items": {
              "ref": "#sharedFeed",
              "type": "ref"
            },
            "maxLength": 100,
            "minLength": 1
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A user's publicly shared list of Bluesky feed generators."
    },
    "sharedFeed": {
      "type": "object",
      "required": [
        "uri"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "at-uri",
          "description": "AT URI of an app.bsky.feed.generator record with a DID authority."
        },
        "pinned": {
          "type": "boolean",
          "description": "Whether the feed was pinned in the owner's Bluesky saved feeds when this list was published."
        }
      },
      "description": "A reference to a Bluesky feed generator record."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A user's publicly shared collection of Bluesky feed generators."
}
```
