# app.didpic.actor.profile

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

✓ This is the authoritative definition for this NSID.

## Links

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

## Definitions

### `app.didpic.actor.profile`

**Type**: `record`

User profile record.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | No |  |
| `banner` | `blob` | No | Cover image shown at the top of the profile. |
| `location` | `string` | No |  |
| `pronouns` | `string` | No |  |
| `createdAt` | `string` (datetime) | No |  |
| `description` | `string` | No |  |
| `displayName` | `string` | No |  |
| `descriptionFacets` | `array` | No | Facets within description (mentions, tags, links). |

## Raw Schema

```json
{
  "id": "app.didpic.actor.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000
          },
          "banner": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 2000000,
            "description": "Cover image shown at the top of the profile."
          },
          "location": {
            "type": "string",
            "maxLength": 640,
            "maxGraphemes": 64
          },
          "pronouns": {
            "type": "string",
            "maxLength": 640,
            "maxGraphemes": 64
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 2560,
            "maxGraphemes": 256
          },
          "displayName": {
            "type": "string",
            "maxLength": 640,
            "maxGraphemes": 64
          },
          "descriptionFacets": {
            "type": "array",
            "items": {
              "ref": "app.didpic.richtext.facet",
              "type": "ref"
            },
            "description": "Facets within description (mentions, tags, links)."
          }
        }
      },
      "description": "User profile record."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
