# dev.keytrace.profile

> Published by [keytrace.dev](https://lexicon.garden/identity/did:plc:hcwfdlmprcc335oixyfsw7u3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:hcwfdlmprcc335oixyfsw7u3/dev.keytrace.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:hcwfdlmprcc335oixyfsw7u3/dev.keytrace.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:hcwfdlmprcc335oixyfsw7u3/dev.keytrace.profile/examples)

## Definitions

### `dev.keytrace.profile`

**Type**: `record`

Keytrace profile settings. Singleton record stored in the user's ATProto repo.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No | Bio or description shown on the keytrace profile page. |
| `createdAt` | `string` (datetime) | No |  |
| `displayName` | `string` | No | Display name override for the keytrace profile. Falls back to Bluesky display name if absent. |

## Raw Schema

```json
{
  "id": "dev.keytrace.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "bio": {
            "type": "string",
            "description": "Bio or description shown on the keytrace profile page.",
            "maxGraphemes": 1024
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "displayName": {
            "type": "string",
            "description": "Display name override for the keytrace profile. Falls back to Bluesky display name if absent.",
            "maxGraphemes": 128
          }
        }
      },
      "description": "Keytrace profile settings. Singleton record stored in the user's ATProto repo."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
