# social.coves.actor.profile

> Published by [coves.social](https://lexicon.garden/identity/did:web:coves.social)

✓ This is the authoritative definition for this NSID.

## Links

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

## Definitions

### `social.coves.actor.profile`

**Type**: `record`

A user's profile information

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | No |  |
| `banner` | `blob` | No |  |
| `createdAt` | `string` (datetime) | No |  |
| `description` | `string` | No | User bio/description with rich text support |
| `displayName` | `string` | No | Optional display name |
| `descriptionFacets` | `array` | No | Rich text annotations for the description |

## Raw Schema

```json
{
  "id": "social.coves.actor.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [],
        "properties": {
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000
          },
          "banner": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 2000000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 2560,
            "description": "User bio/description with rich text support",
            "maxGraphemes": 256
          },
          "displayName": {
            "type": "string",
            "maxLength": 640,
            "description": "Optional display name",
            "maxGraphemes": 64
          },
          "descriptionFacets": {
            "type": "array",
            "items": {
              "ref": "social.coves.richtext.facet",
              "type": "ref"
            },
            "maxLength": 50,
            "description": "Rich text annotations for the description"
          }
        }
      },
      "description": "A user's profile information"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
