# app.nblr.feed.link

> 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.link)
- [Documentation](https://lexicon.garden/lexicon/did:plc:kgrcstzon7oaiy5myjfgiou6/app.nblr.feed.link/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:kgrcstzon7oaiy5myjfgiou6/app.nblr.feed.link/examples)

## Definitions

### `app.nblr.feed.link`

**Type**: `record`

Record linking a resource to a collection.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (uri) | Yes | The URI of the linked resource; a web URL or AT URI |
| `createdAt` | `string` (datetime) | Yes |  |
| `collection` | `string` (at-uri) | Yes | The AT URI of the collection being linked to |

## Raw Schema

```json
{
  "id": "app.nblr.feed.link",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "uri",
          "collection",
          "createdAt"
        ],
        "properties": {
          "uri": {
            "type": "string",
            "format": "uri",
            "description": "The URI of the linked resource; a web URL or AT URI"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "collection": {
            "type": "string",
            "format": "at-uri",
            "description": "The AT URI of the collection being linked to"
          }
        }
      },
      "description": "Record linking a resource to a collection."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
