# app.offprint.actor.profile

> Published by [offprint.app](https://lexicon.garden/identity/did:plc:pgjkomf37an4czloay5zeth6)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.actor.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.actor.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.actor.profile/examples)

## Definitions

### `app.offprint.actor.profile`

**Type**: `record`

A declaration of an Offprint user profile. Overrides the Bluesky profile when set.

**Key**: `self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | No | Small image to be displayed next to the user's content. AKA, 'profile picture'. |
| `banner` | `blob` | No | Larger horizontal image to display behind the profile view. |
| `website` | `string` (uri) | No | Personal website URL. |
| `pronouns` | `string` | No | Free-form pronouns text. |
| `createdAt` | `string` (datetime) | No | Timestamp of when the profile was created. |
| `description` | `string` | No | Free-form profile description text. |
| `displayName` | `string` | No | Display name for the user on Offprint. |

## Raw Schema

```json
{
  "id": "app.offprint.actor.profile",
  "defs": {
    "main": {
      "key": "self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000,
            "description": "Small image to be displayed next to the user's content. AKA, 'profile picture'."
          },
          "banner": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000,
            "description": "Larger horizontal image to display behind the profile view."
          },
          "website": {
            "type": "string",
            "format": "uri",
            "description": "Personal website URL."
          },
          "pronouns": {
            "type": "string",
            "maxLength": 200,
            "description": "Free-form pronouns text.",
            "maxGraphemes": 20
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp of when the profile was created."
          },
          "description": {
            "type": "string",
            "maxLength": 2560,
            "description": "Free-form profile description text.",
            "maxGraphemes": 256
          },
          "displayName": {
            "type": "string",
            "maxLength": 640,
            "description": "Display name for the user on Offprint.",
            "maxGraphemes": 64
          }
        }
      },
      "description": "A declaration of an Offprint user profile. Overrides the Bluesky profile when set."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
