# games.gamesgamesgamesgames.contribution

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

## Definitions

### `games.gamesgamesgamesgames.contribution`

**Type**: `record`

A community contribution proposing changes to a game or submitting a new game.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `changes` | `unknown` | Yes | A partial object matching the target record schema. Only changed fields are present. |
| `message` | `string` | No | Explanation of what is being changed and why. |
| `subject` | `string` (at-uri) | No | The entity being modified. Required for corrections and additions, absent for new game submissions. |
| `createdAt` | `string` (datetime) | Yes |  |
| `signatures` | `array` | No | Inline attestation signatures from the AppView that created this contribution. |
| `contributionType` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "games.gamesgamesgamesgames.contribution",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "contributionType",
          "changes",
          "createdAt"
        ],
        "properties": {
          "changes": {
            "type": "unknown",
            "description": "A partial object matching the target record schema. Only changed fields are present."
          },
          "message": {
            "type": "string",
            "description": "Explanation of what is being changed and why.",
            "maxGraphemes": 3000
          },
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "The entity being modified. Required for corrections and additions, absent for new game submissions."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "signatures": {
            "type": "array",
            "items": {
              "refs": [
                "games.gamesgamesgamesgames.defs#signature",
                "com.atproto.repo.strongRef"
              ],
              "type": "union"
            },
            "description": "Inline attestation signatures from the AppView that created this contribution."
          },
          "contributionType": {
            "type": "string",
            "knownValues": [
              "correction",
              "addition",
              "newGame"
            ]
          }
        }
      },
      "description": "A community contribution proposing changes to a game or submitting a new game."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
