# at.mapped.profile

> Published by [mapped.at](https://lexicon.garden/identity/did:plc:l5m5nuh5cvdatyn5fjxar2sh)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.profile/examples)

## Definitions

### `at.mapped.profile`

**Type**: `record`

A user's mapped.at profile. Singleton record — rkey is always 'self'.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No | Optional short bio |
| `createdAt` | `string` (datetime) | Yes | When the profile was created |
| `displayName` | `string` | No | Optional display name |

## Raw Schema

```json
{
  "id": "at.mapped.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "bio": {
            "type": "string",
            "maxLength": 256,
            "description": "Optional short bio"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the profile was created"
          },
          "displayName": {
            "type": "string",
            "maxLength": 64,
            "description": "Optional display name"
          }
        }
      },
      "description": "A user's mapped.at profile. Singleton record — rkey is always 'self'."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
