# games.gamesgamesgamesgames.listContributions

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

## Definitions

### `games.gamesgamesgamesgames.listContributions`

**Type**: `query`

List community contributions, optionally filtered by status, subject, or contributor.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |
| `cursor` | `string` | No |  |
| `status` | `string` | No |  |
| `subject` | `string` (at-uri) | No | Filter to contributions targeting a specific entity. |
| `contributor` | `string` (did) | No | Filter to contributions from a specific user. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cursor` | `string` | No |  |
| `contributions` | `array` | Yes |  |

## Raw Schema

```json
{
  "id": "games.gamesgamesgamesgames.listContributions",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "contributions"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "contributions": {
              "type": "array",
              "items": {
                "ref": "games.gamesgamesgamesgames.getContribution#contributionView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 25,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string"
          },
          "status": {
            "type": "string",
            "knownValues": [
              "pending",
              "approved",
              "denied",
              "needsRevision"
            ]
          },
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "Filter to contributions targeting a specific entity."
          },
          "contributor": {
            "type": "string",
            "format": "did",
            "description": "Filter to contributions from a specific user."
          }
        }
      },
      "description": "List community contributions, optionally filtered by status, subject, or contributor."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
