# social.coves.embed.post

> Published by [coves.social](https://lexicon.garden/identity/did:web:coves.social)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:coves.social/social.coves.embed.post)
- [Documentation](https://lexicon.garden/lexicon/did:web:coves.social/social.coves.embed.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:coves.social/social.coves.embed.post/examples)

## Definitions

### `social.coves.embed.post`

**Type**: `object`

Embedded reference to another post (quoted post)

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `post` | `ref` → `com.atproto.repo.strongRef` | Yes | Strong reference to the embedded post (includes URI and CID) |

### `social.coves.embed.post#view`

**Type**: `object`

View of a quoted-post embed as served by the AppView, optionally enriched with resolved post data

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `post` | `ref` → `com.atproto.repo.strongRef` | Yes | Strong reference to the embedded post (includes URI and CID) |
| `resolved` | `unknown` | No | Resolved data for the referenced post (e.g., a hydrated Bluesky post), or an unavailable marker with a user-facing message |

## Raw Schema

```json
{
  "id": "social.coves.embed.post",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "post"
      ],
      "properties": {
        "post": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref",
          "description": "Strong reference to the embedded post (includes URI and CID)"
        }
      },
      "description": "Embedded reference to another post (quoted post)"
    },
    "view": {
      "type": "object",
      "required": [
        "post"
      ],
      "properties": {
        "post": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref",
          "description": "Strong reference to the embedded post (includes URI and CID)"
        },
        "resolved": {
          "type": "unknown",
          "description": "Resolved data for the referenced post (e.g., a hydrated Bluesky post), or an unavailable marker with a user-facing message"
        }
      },
      "description": "View of a quoted-post embed as served by the AppView, optionally enriched with resolved post data"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
