# fm.onrepeat.profile

> Published by [onrepeat.fm](https://lexicon.garden/identity/did:plc:uvn6p3pn2vwdjgnerqfrdcx4)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uvn6p3pn2vwdjgnerqfrdcx4/fm.onrepeat.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uvn6p3pn2vwdjgnerqfrdcx4/fm.onrepeat.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uvn6p3pn2vwdjgnerqfrdcx4/fm.onrepeat.profile/examples)

## Definitions

### `fm.onrepeat.profile`

**Type**: `record`

A person's onrepeat.fm profile preferences. Single record per repo (rkey 'self').

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes |  |
| `colorTheme` | `string` | No | Slug of the chosen color theme (see app's theme registry). Unknown values fall back to a default. |

## Raw Schema

```json
{
  "id": "fm.onrepeat.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "colorTheme": {
            "type": "string",
            "maxLength": 64,
            "description": "Slug of the chosen color theme (see app's theme registry). Unknown values fall back to a default."
          }
        }
      },
      "description": "A person's onrepeat.fm profile preferences. Single record per repo (rkey 'self')."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
