# blue.backyard.actor.profile

> Published by [backyard.blue](https://lexicon.garden/identity/did:plc:achxuyl54r4cfkkkycp46yhg)

✓ This is the authoritative definition for this NSID.

## Description

A declaration of a Backyard account profile.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:achxuyl54r4cfkkkycp46yhg/blue.backyard.actor.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:achxuyl54r4cfkkkycp46yhg/blue.backyard.actor.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:achxuyl54r4cfkkkycp46yhg/blue.backyard.actor.profile/examples)

## Definitions

### `blue.backyard.actor.profile`

**Type**: `record`

A declaration of a Backyard account profile.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | No | Small avatar image for the user. |
| `banner` | `blob` | No | Larger horizontal banner image. |
| `pronouns` | `string` | No | User's preferred pronouns. |
| `createdAt` | `string` (datetime) | No | When the profile was initially created. |
| `description` | `string` | No | Free-form profile description text (bio). |
| `displayName` | `string` | No | Display name for the user. |

## Raw Schema

```json
{
  "id": "blue.backyard.actor.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000,
            "description": "Small avatar image for the user."
          },
          "banner": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000,
            "description": "Larger horizontal banner image."
          },
          "pronouns": {
            "type": "string",
            "maxLength": 640,
            "description": "User's preferred pronouns.",
            "maxGraphemes": 64
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the profile was initially created."
          },
          "description": {
            "type": "string",
            "maxLength": 2560,
            "description": "Free-form profile description text (bio).",
            "maxGraphemes": 256
          },
          "displayName": {
            "type": "string",
            "maxLength": 640,
            "description": "Display name for the user.",
            "maxGraphemes": 64
          }
        }
      },
      "description": "A declaration of a Backyard account profile."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A declaration of a Backyard account profile."
}
```
