# club.syntax.actor.profile

> Published by [syntax.club](https://lexicon.garden/identity/did:plc:vwcdvcrlwwvfs4bfmevarcz5)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:vwcdvcrlwwvfs4bfmevarcz5/club.syntax.actor.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:vwcdvcrlwwvfs4bfmevarcz5/club.syntax.actor.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:vwcdvcrlwwvfs4bfmevarcz5/club.syntax.actor.profile/examples)

## Definitions

### `club.syntax.actor.profile`

**Type**: `record`

A declaration of a Syntax Club account profile.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | No | Profile picture. |
| `createdAt` | `string` (datetime) | Yes | Record creation timestamp. |
| `updatedAt` | `string` (datetime) | No | Last profile update timestamp. |
| `description` | `string` | No | Optional profile description. |
| `displayName` | `string` | No |  |

## Raw Schema

```json
{
  "id": "club.syntax.actor.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000,
            "description": "Profile picture."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Record creation timestamp."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Last profile update timestamp."
          },
          "description": {
            "type": "string",
            "description": "Optional profile description.",
            "maxGraphemes": 256
          },
          "displayName": {
            "type": "string",
            "maxGraphemes": 64
          }
        }
      },
      "description": "A declaration of a Syntax Club account profile."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
