# games.gamesgamesgamesgames.contributionReview

> Published by [gamesgamesgamesgames.games](https://lexicon.garden/identity/did:web:gamesgamesgamesgames.games)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.contributionReview)
- [Documentation](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.contributionReview/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.contributionReview/examples)

## Definitions

### `games.gamesgamesgamesgames.contributionReview`

**Type**: `record`

A review of a community contribution by a moderator.

**Key**: `tid`

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

## Raw Schema

```json
{
  "id": "games.gamesgamesgamesgames.contributionReview",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "contribution",
          "status",
          "reviewedBy",
          "createdAt"
        ],
        "properties": {
          "reason": {
            "type": "string",
            "maxGraphemes": 3000
          },
          "status": {
            "type": "string",
            "knownValues": [
              "approved",
              "denied",
              "needsRevision"
            ]
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "reviewedBy": {
            "type": "string",
            "format": "did"
          },
          "contribution": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          }
        }
      },
      "description": "A review of a community contribution by a moderator."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
