# dev.cartridge.claims.claimReview

> Published by [cartridge.dev](https://lexicon.garden/identity/did:plc:4mrwcmxk266itsdn33leqljq)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4mrwcmxk266itsdn33leqljq/dev.cartridge.claims.claimReview)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4mrwcmxk266itsdn33leqljq/dev.cartridge.claims.claimReview/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4mrwcmxk266itsdn33leqljq/dev.cartridge.claims.claimReview/examples)

## Definitions

### `dev.cartridge.claims.claimReview`

**Type**: `record`

A review of a claim for ownership of game or organization records.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `claim` | `ref` → `com.atproto.repo.strongRef` | Yes |  |
| `reason` | `string` | No |  |
| `status` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `reviewedBy` | `string` (did) | Yes |  |
| `approvedGames` | `array` | No |  |

## Raw Schema

```json
{
  "id": "dev.cartridge.claims.claimReview",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "claim",
          "status",
          "reviewedBy",
          "createdAt"
        ],
        "properties": {
          "claim": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          },
          "reason": {
            "type": "string",
            "maxGraphemes": 3000
          },
          "status": {
            "type": "string",
            "maxLength": 64,
            "knownValues": [
              "approved",
              "denied"
            ]
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "reviewedBy": {
            "type": "string",
            "format": "did"
          },
          "approvedGames": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            }
          }
        }
      },
      "description": "A review of a claim for ownership of game or organization records."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
