# social.smallbury.actor.profile

> Published by [lexicon.pds.smallbury.social](https://lexicon.garden/identity/did:plc:wnagcp6h73nxmvmwid2xxukx)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:wnagcp6h73nxmvmwid2xxukx/social.smallbury.actor.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:wnagcp6h73nxmvmwid2xxukx/social.smallbury.actor.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:wnagcp6h73nxmvmwid2xxukx/social.smallbury.actor.profile/examples)

## Definitions

### `social.smallbury.actor.profile`

**Type**: `record`

Supplemental Smallbury profile data stored alongside app.bsky.actor.profile. Presentation fields (display name, avatar, description, etc.) live on the Bluesky profile record only.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes |  |
| `appViewUrl` | `string` (uri) | No | Canonical HTTPS URL of the Smallbury AppView this account uses for indexing and share links. |
| `encryptionPublicKey` | `bytes` | No | Public key for receiving wrapped content keys and pairwise trust secrets (format defined by the Smallbury client, e.g. X25519 or P-256 SPKI). |
| `encryptionPublicKeyId` | `string` | No | Identifier for encryptionPublicKey; incremented when the key rotates so trust handshakes can target the correct key. |

## Raw Schema

```json
{
  "id": "social.smallbury.actor.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "appViewUrl": {
            "type": "string",
            "format": "uri",
            "description": "Canonical HTTPS URL of the Smallbury AppView this account uses for indexing and share links."
          },
          "encryptionPublicKey": {
            "type": "bytes",
            "maxLength": 256,
            "description": "Public key for receiving wrapped content keys and pairwise trust secrets (format defined by the Smallbury client, e.g. X25519 or P-256 SPKI)."
          },
          "encryptionPublicKeyId": {
            "type": "string",
            "maxLength": 64,
            "minLength": 1,
            "description": "Identifier for encryptionPublicKey; incremented when the key rotates so trust handshakes can target the correct key."
          }
        }
      },
      "description": "Supplemental Smallbury profile data stored alongside app.bsky.actor.profile. Presentation fields (display name, avatar, description, etc.) live on the Bluesky profile record only."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
