# place.pollen.post.bskyembed

> Published by [keith.pollen.place](https://lexicon.garden/identity/did:plc:nwgfqqv7a56aicy3d3um37ch)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:nwgfqqv7a56aicy3d3um37ch/place.pollen.post.bskyembed)
- [Documentation](https://lexicon.garden/lexicon/did:plc:nwgfqqv7a56aicy3d3um37ch/place.pollen.post.bskyembed/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:nwgfqqv7a56aicy3d3um37ch/place.pollen.post.bskyembed/examples)

## Definitions

### `place.pollen.post.bskyembed`

**Type**: `record`

An embedded Bluesky post.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tags` | `array` | No | Hashtags for discovery. |
| `text` | `string` | No | Optional commentary. |
| `facets` | `array` | No | Rich text annotations for the commentary. |
| `postUri` | `string` (at-uri) | Yes | AT URI of the Bluesky post (at://did/app.bsky.feed.post/rkey). |
| `postUrl` | `string` (uri) | Yes | Web URL of the Bluesky post. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when the post was created. |

## Raw Schema

```json
{
  "id": "place.pollen.post.bskyembed",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "postUri",
          "postUrl",
          "createdAt"
        ],
        "properties": {
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 64
            },
            "maxLength": 10,
            "description": "Hashtags for discovery."
          },
          "text": {
            "type": "string",
            "maxLength": 500,
            "description": "Optional commentary."
          },
          "facets": {
            "type": "array",
            "items": {
              "ref": "place.pollen.richtext.facet#main",
              "type": "ref"
            },
            "description": "Rich text annotations for the commentary."
          },
          "postUri": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI of the Bluesky post (at://did/app.bsky.feed.post/rkey)."
          },
          "postUrl": {
            "type": "string",
            "format": "uri",
            "description": "Web URL of the Bluesky post."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when the post was created."
          }
        }
      },
      "description": "An embedded Bluesky post."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
