# games.gamesgamesgamesgames.contributionVerification

> 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.contributionVerification)
- [Documentation](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.contributionVerification/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.contributionVerification/examples)

## Definitions

### `games.gamesgamesgamesgames.contributionVerification`

**Type**: `record`

A permanent record crediting a contributor for an accepted contribution. Never deleted.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (at-uri) | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `acceptedBy` | `string` | Yes |  |
| `contributor` | `string` (did) | Yes |  |
| `contribution` | `ref` → `com.atproto.repo.strongRef` | Yes |  |
| `contributionType` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "games.gamesgamesgamesgames.contributionVerification",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "contribution",
          "contributor",
          "contributionType",
          "acceptedBy",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "format": "at-uri"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "acceptedBy": {
            "type": "string",
            "knownValues": [
              "mod",
              "owner",
              "both"
            ]
          },
          "contributor": {
            "type": "string",
            "format": "did"
          },
          "contribution": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          },
          "contributionType": {
            "type": "string",
            "knownValues": [
              "correction",
              "addition",
              "newGame"
            ]
          }
        }
      },
      "description": "A permanent record crediting a contributor for an accepted contribution. Never deleted."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
