# xyz.opnshelf.review.like

> Published by [opnshelf.xyz](https://lexicon.garden/identity/did:plc:jkf4momksftvstbyqnb5sxik)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:jkf4momksftvstbyqnb5sxik/xyz.opnshelf.review.like)
- [Documentation](https://lexicon.garden/lexicon/did:plc:jkf4momksftvstbyqnb5sxik/xyz.opnshelf.review.like/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:jkf4momksftvstbyqnb5sxik/xyz.opnshelf.review.like/examples)

## Definitions

### `xyz.opnshelf.review.like`

**Type**: `record`

A like on a user review

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes | Record creation timestamp |
| `reviewUri` | `string` (at-uri) | Yes | The at:// URI of the review being liked |

## Raw Schema

```json
{
  "id": "xyz.opnshelf.review.like",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "reviewUri",
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Record creation timestamp"
          },
          "reviewUri": {
            "type": "string",
            "format": "at-uri",
            "description": "The at:// URI of the review being liked"
          }
        }
      },
      "description": "A like on a user review"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
