# games.gamesgamesgamesgames.actor.profile

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

✓ This is the authoritative definition for this NSID.

## Links

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

## Definitions

### `games.gamesgamesgamesgames.actor.profile`

**Type**: `record`

A declaration of a Pentaract actor profile.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | No | Image to be displayed on profile page. AKA, 'profile picture' |
| `pronouns` | `string` | No | Free-form pronouns text. |
| `websites` | `array` | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No | Free-form profile description text. |
| `displayName` | `string` | Yes |  |
| `descriptionFacets` | `array` | No | Annotations of text (mentions, URLs, hashtags, etc) |

## Raw Schema

```json
{
  "id": "games.gamesgamesgamesgames.actor.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "displayName",
          "createdAt"
        ],
        "properties": {
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 10000000,
            "description": "Image to be displayed on profile page. AKA, 'profile picture'"
          },
          "pronouns": {
            "type": "string",
            "maxLength": 200,
            "description": "Free-form pronouns text."
          },
          "websites": {
            "type": "array",
            "items": {
              "ref": "games.gamesgamesgamesgames.defs#website",
              "type": "ref"
            }
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 3000,
            "description": "Free-form profile description text."
          },
          "displayName": {
            "type": "string",
            "maxLength": 640
          },
          "descriptionFacets": {
            "type": "array",
            "items": {
              "ref": "app.bsky.richtext.facet",
              "type": "ref"
            },
            "description": "Annotations of text (mentions, URLs, hashtags, etc)"
          }
        }
      },
      "description": "A declaration of a Pentaract actor profile."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
