# place.pollen.actor.profile

> Published by [keith.pollen.place](https://lexicon.garden/identity/did:plc:nwgfqqv7a56aicy3d3um37ch)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:nwgfqqv7a56aicy3d3um37ch/place.pollen.actor.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:nwgfqqv7a56aicy3d3um37ch/place.pollen.actor.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:nwgfqqv7a56aicy3d3um37ch/place.pollen.actor.profile/examples)

## Definitions

### `place.pollen.actor.profile`

**Type**: `record`

A user's profile on Pollen.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No | Free-form bio text. |
| `avatar` | `blob` | No | The user's avatar image. |
| `header` | `blob` | No | Banner image for the profile page. |
| `website` | `string` (uri) | No | A personal website URL. |
| `pronouns` | `string` | No | The user's pronouns. |
| `createdAt` | `string` (datetime) | No | Timestamp when the profile was first created. |
| `customCss` | `string` | No | Custom CSS applied to the user's profile page. |
| `updatedAt` | `string` (datetime) | No | Timestamp of the most recent profile update. |
| `displayName` | `string` | No | The user's display name. |
| `profileLayout` | `string` | No | Layout style for the profile's post grid. |
| `atmosphereFilters` | `ref` → `#atmosphereFilters` | No | Filters for Atmosphere embed sources shown on the profile. |

### `place.pollen.actor.profile#atmosphereFilters`

**Type**: `object`

Configuration for which Atmosphere sources to show or hide.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `enabledSources` | `array` | No | Atmosphere app identifiers to explicitly show. |
| `disabledSources` | `array` | No | Atmosphere app identifiers to explicitly hide. |

## Raw Schema

```json
{
  "id": "place.pollen.actor.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "bio": {
            "type": "string",
            "maxLength": 500,
            "description": "Free-form bio text."
          },
          "avatar": {
            "type": "blob",
            "accept": [
              "image/jpeg",
              "image/png",
              "image/webp"
            ],
            "maxSize": 1000000,
            "description": "The user's avatar image."
          },
          "header": {
            "type": "blob",
            "accept": [
              "image/jpeg",
              "image/png",
              "image/webp"
            ],
            "maxSize": 2000000,
            "description": "Banner image for the profile page."
          },
          "website": {
            "type": "string",
            "format": "uri",
            "maxLength": 300,
            "description": "A personal website URL."
          },
          "pronouns": {
            "type": "string",
            "maxLength": 200,
            "description": "The user's pronouns.",
            "maxGraphemes": 20
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the profile was first created."
          },
          "customCss": {
            "type": "string",
            "maxLength": 50000,
            "description": "Custom CSS applied to the user's profile page."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp of the most recent profile update."
          },
          "displayName": {
            "type": "string",
            "maxLength": 64,
            "description": "The user's display name."
          },
          "profileLayout": {
            "type": "string",
            "default": "column",
            "maxLength": 20,
            "description": "Layout style for the profile's post grid.",
            "knownValues": [
              "column",
              "masonry"
            ]
          },
          "atmosphereFilters": {
            "ref": "#atmosphereFilters",
            "type": "ref",
            "description": "Filters for Atmosphere embed sources shown on the profile."
          }
        }
      },
      "description": "A user's profile on Pollen."
    },
    "atmosphereFilters": {
      "type": "object",
      "properties": {
        "enabledSources": {
          "type": "array",
          "items": {
            "type": "string",
            "maxLength": 200
          },
          "description": "Atmosphere app identifiers to explicitly show."
        },
        "disabledSources": {
          "type": "array",
          "items": {
            "type": "string",
            "maxLength": 200
          },
          "description": "Atmosphere app identifiers to explicitly hide."
        }
      },
      "description": "Configuration for which Atmosphere sources to show or hide."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
