# site.standard.graph.recommend

> Published by [standard.site](https://lexicon.garden/identity/did:plc:re3ebnp5v7ffagz6rb6xfei4)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:re3ebnp5v7ffagz6rb6xfei4/site.standard.graph.recommend)
- [Documentation](https://lexicon.garden/lexicon/did:plc:re3ebnp5v7ffagz6rb6xfei4/site.standard.graph.recommend/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:re3ebnp5v7ffagz6rb6xfei4/site.standard.graph.recommend/examples)

## Definitions

### `site.standard.graph.recommend`

**Type**: `record`

Record declaring a recommendation of a document.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `document` | `string` (at-uri) | Yes | AT-URI reference to the document record being recommended (ex: at://did:plc:abc123/site.standard.document/xyz789). |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "site.standard.graph.recommend",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "document",
          "createdAt"
        ],
        "properties": {
          "document": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI reference to the document record being recommended (ex: at://did:plc:abc123/site.standard.document/xyz789)."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Record declaring a recommendation of a document."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
