# blue.morgen.feed.share

> Published by [morgen.blue](https://lexicon.garden/identity/did:plc:h7bhafnu5c2p63swrc64zh2z)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:h7bhafnu5c2p63swrc64zh2z/blue.morgen.feed.share)
- [Documentation](https://lexicon.garden/lexicon/did:plc:h7bhafnu5c2p63swrc64zh2z/blue.morgen.feed.share/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:h7bhafnu5c2p63swrc64zh2z/blue.morgen.feed.share/examples)

## Definitions

### `blue.morgen.feed.share`

**Type**: `record`

A shared feed item. Broadcasts 'I like this' with optional commentary.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `facets` | `array` | No | Rich-text annotations (mentions, links, tags) over `comment`. |
| `comment` | `string` | No | User's commentary on the share. |
| `feedUrl` | `string` (uri) | No | URL of the source feed (optional provenance). |
| `itemUrl` | `string` (uri) | Yes | URL of the shared item. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "blue.morgen.feed.share",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "itemUrl",
          "createdAt"
        ],
        "properties": {
          "facets": {
            "type": "array",
            "items": {
              "ref": "app.bsky.richtext.facet",
              "type": "ref"
            },
            "description": "Rich-text annotations (mentions, links, tags) over `comment`."
          },
          "comment": {
            "type": "string",
            "maxLength": 30000,
            "description": "User's commentary on the share.",
            "maxGraphemes": 3000
          },
          "feedUrl": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "URL of the source feed (optional provenance)."
          },
          "itemUrl": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "URL of the shared item."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A shared feed item. Broadcasts 'I like this' with optional commentary."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
