# org.swappulse.cardReview

> Published by [bridge.swappulse.org](https://lexicon.garden/identity/did:plc:jwoatauidzr4lollmro2gh35)

## Description

A collector's multi-axis review of a specific card (artwork, playability, collectibility, investment), mirrored to AT Protocol so reviews are portable and discoverable across instances.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:jwoatauidzr4lollmro2gh35/org.swappulse.cardReview)
- [Documentation](https://lexicon.garden/lexicon/did:plc:jwoatauidzr4lollmro2gh35/org.swappulse.cardReview/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:jwoatauidzr4lollmro2gh35/org.swappulse.cardReview/examples)

## Definitions

### `org.swappulse.cardReview`

**Type**: `record`

A multi-axis card review.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `artwork` | `integer` | Yes |  |
| `cardUri` | `string` | Yes |  |
| `variant` | `string` | No |  |
| `cardName` | `string` | No |  |
| `cardImage` | `string` (uri) | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `investment` | `integer` | Yes |  |
| `reviewText` | `string` | No |  |
| `playability` | `integer` | Yes |  |
| `reviewerDid` | `string` (did) | No |  |
| `reviewerName` | `string` | No |  |
| `collectibility` | `integer` | Yes |  |
| `reviewerHandle` | `string` | No |  |

## Raw Schema

```json
{
  "id": "org.swappulse.cardReview",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "cardUri",
          "artwork",
          "playability",
          "collectibility",
          "investment",
          "createdAt"
        ],
        "properties": {
          "artwork": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1
          },
          "cardUri": {
            "type": "string"
          },
          "variant": {
            "type": "string",
            "knownValues": [
              "normal",
              "holo",
              "reverse_holo"
            ]
          },
          "cardName": {
            "type": "string"
          },
          "cardImage": {
            "type": "string",
            "format": "uri"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "investment": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1
          },
          "reviewText": {
            "type": "string",
            "maxLength": 2000
          },
          "playability": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1
          },
          "reviewerDid": {
            "type": "string",
            "format": "did"
          },
          "reviewerName": {
            "type": "string"
          },
          "collectibility": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1
          },
          "reviewerHandle": {
            "type": "string"
          }
        }
      },
      "description": "A multi-axis card review."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1,
  "description": "A collector's multi-axis review of a specific card (artwork, playability, collectibility, investment), mirrored to AT Protocol so reviews are portable and discoverable across instances."
}
```
