{
"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
}