# com.crashthearcade.settings

> Published by [crashthearcade.com](https://lexicon.garden/identity/did:plc:crwol3wvv2w2lvvognhvd5cm)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:crwol3wvv2w2lvvognhvd5cm/com.crashthearcade.settings)
- [Documentation](https://lexicon.garden/lexicon/did:plc:crwol3wvv2w2lvvognhvd5cm/com.crashthearcade.settings/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:crwol3wvv2w2lvvognhvd5cm/com.crashthearcade.settings/examples)

## Definitions

### `com.crashthearcade.settings`

**Type**: `record`

User settings for Crash the Arcade

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `displayName` | `string` | No |  |
| `profileView` | `string` | No |  |

## Raw Schema

```json
{
  "id": "com.crashthearcade.settings",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "displayName": {
            "type": "string",
            "maxLength": 64
          },
          "profileView": {
            "type": "string",
            "maxLength": 32,
            "knownValues": [
              "list",
              "grid"
            ]
          }
        }
      },
      "description": "User settings for Crash the Arcade"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
