# click.croft.inkwell.graph.appreciate

> Published by [ewancroft.uk](https://lexicon.garden/identity/did:plc:ofrbh253gwicbkc5nktqepol)

## Description

An appreciation of a poem. A richer signal than a generic 'like' — it expresses that a poem has meaningfully resonated with the reader. One appreciation record per subject per author (enforced by application logic).

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ofrbh253gwicbkc5nktqepol/click.croft.inkwell.graph.appreciate)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ofrbh253gwicbkc5nktqepol/click.croft.inkwell.graph.appreciate/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ofrbh253gwicbkc5nktqepol/click.croft.inkwell.graph.appreciate/examples)

## Definitions

### `click.croft.inkwell.graph.appreciate`

**Type**: `record`

An appreciation of a `site.standard.document` poem record.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | Strong reference (uri + cid) to the `site.standard.document` record being appreciated. Using a strong ref ensures the appreciation is tied to a specific version of the poem. |
| `createdAt` | `string` (datetime) | Yes | Timestamp of the appreciation. |

## Raw Schema

```json
{
  "id": "click.croft.inkwell.graph.appreciate",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Strong reference (uri + cid) to the `site.standard.document` record being appreciated. Using a strong ref ensures the appreciation is tied to a specific version of the poem."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp of the appreciation."
          }
        }
      },
      "description": "An appreciation of a `site.standard.document` poem record."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "An appreciation of a poem. A richer signal than a generic 'like' — it expresses that a poem has meaningfully resonated with the reader. One appreciation record per subject per author (enforced by application logic)."
}
```
