# how.bun.reviews.review

> Published by [plushie.holdings](https://lexicon.garden/identity/did:plc:7x6rtuenkuvxq3zsvffp2ide)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7x6rtuenkuvxq3zsvffp2ide/how.bun.reviews.review)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7x6rtuenkuvxq3zsvffp2ide/how.bun.reviews.review/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7x6rtuenkuvxq3zsvffp2ide/how.bun.reviews.review/examples)

## Definitions

### `how.bun.reviews.review`

**Type**: `record`

Record containing a review of something.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | The text of the review. |
| `langs` | `array` | No | Indicates natural language of text. |
| `facets` | `array` | No | Annotations of text (Bluesky-compatible richtext). |
| `subject` | `union` | Yes |  |
| `summary` | `string` | No | A short summary of the review (perhaps a score). |
| `createdAt` | `string` (datetime) | Yes | The timestamp when this review was originally written. |

## Raw Schema

```json
{
  "id": "how.bun.reviews.review",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt",
          "subject",
          "text"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 768000,
            "description": "The text of the review.",
            "maxGraphemes": 64000
          },
          "langs": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "language"
            },
            "maxLength": 3,
            "description": "Indicates natural language of text."
          },
          "facets": {
            "type": "array",
            "items": {
              "ref": "app.bsky.richtext.facet",
              "type": "ref"
            },
            "description": "Annotations of text (Bluesky-compatible richtext)."
          },
          "subject": {
            "refs": [
              "how.bun.reviews.subject#wikidataObject"
            ],
            "type": "union"
          },
          "summary": {
            "type": "string",
            "maxLength": 1000,
            "description": "A short summary of the review (perhaps a score).",
            "maxGraphemes": 96
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "The timestamp when this review was originally written."
          }
        }
      },
      "description": "Record containing a review of something."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
