# app.bivri.actor.profile

> Published by [lexicons.bivri.app](https://lexicon.garden/identity/did:plc:uqat5a7hrbww3snbbinxgwah)

✓ This is the authoritative definition for this NSID.

## Description

A declaration of a Bivri member profile.

## Links

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

## Definitions

### `app.bivri.actor.profile#link`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes | Target of the link. |
| `title` | `string` | No | Label shown for the link. |

### `app.bivri.actor.profile`

**Type**: `record`

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No | Free-form profile description text. |
| `links` | `array` | No | External links the member publishes on their profile. |
| `avatar` | `blob` | No | Small image displayed next to the member's artworks and comments. |
| `banner` | `blob` | No | Larger horizontal image displayed behind the profile view. |
| `updatedAt` | `string` (datetime) | No | Client-declared timestamp of the last edit to this record. |
| `displayName` | `string` | No | Name shown in place of the handle. |

## Raw Schema

```json
{
  "id": "app.bivri.actor.profile",
  "defs": {
    "link": {
      "type": "object",
      "required": [
        "url"
      ],
      "properties": {
        "url": {
          "type": "string",
          "format": "uri",
          "description": "Target of the link."
        },
        "title": {
          "type": "string",
          "maxLength": 320,
          "description": "Label shown for the link.",
          "maxGraphemes": 32
        }
      }
    },
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [],
        "properties": {
          "bio": {
            "type": "string",
            "maxLength": 2560,
            "description": "Free-form profile description text.",
            "maxGraphemes": 256
          },
          "links": {
            "type": "array",
            "items": {
              "ref": "#link",
              "type": "ref"
            },
            "maxLength": 10,
            "description": "External links the member publishes on their profile."
          },
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000,
            "description": "Small image displayed next to the member's artworks and comments."
          },
          "banner": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000,
            "description": "Larger horizontal image displayed behind the profile view."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp of the last edit to this record."
          },
          "displayName": {
            "type": "string",
            "maxLength": 640,
            "description": "Name shown in place of the handle.",
            "maxGraphemes": 64
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A declaration of a Bivri member profile."
}
```
