place.pollen.actor.profile

keith.pollen.place

Documentation

A user's profile on Pollen.

main record

A user's profile on Pollen.

Record Key literal:self Fixed literal value

Properties

atmosphereFilters ref #atmosphereFilters Optional

Filters for Atmosphere embed sources shown on the profile.

avatar blob Optional

The user's avatar image.

maxSize: 1.0 MB
bio string Optional

Free-form bio text.

maxLength: 500 bytes
createdAt string datetime Optional

Timestamp when the profile was first created.

customCss string Optional

Custom CSS applied to the user's profile page.

maxLength: 50000 bytes
displayName string Optional

The user's display name.

maxLength: 64 bytes
header blob Optional

Banner image for the profile page.

maxSize: 2.0 MB
profileLayout string Optional

Layout style for the profile's post grid.

maxLength: 20 bytes
Known values: column, masonry
Default: column
pronouns string Optional

The user's pronouns.

maxLength: 200 bytesmaxGraphemes: 20 graphemes
updatedAt string datetime Optional

Timestamp of the most recent profile update.

website string uri Optional

A personal website URL.

maxLength: 300 bytes
View raw schema
{
  "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 object

Configuration for which Atmosphere sources to show or hide.

Properties

disabledSources array of string Optional

Atmosphere app identifiers to explicitly hide.

enabledSources array of string Optional

Atmosphere app identifiers to explicitly show.

View raw schema
{
  "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."
}

Lexicon Garden

@