No description available.
Properties
avatar
string
uri
Optional
CDN URL of the actor's avatar image.
did
string
did
Required
A decentralized identifier (DID).
displayName
string
Optional
No description available.
maxLength: 640 bytesmaxGraphemes: 64 graphemeshandle
string
handle
Required
An AT Protocol handle (e.g., alice.bsky.social).
viewer
ref
#profileViewerState
Optional
Viewer-specific state. Only present when the request is authenticated.
View raw schema
{
"type": "object",
"required": [
"did",
"handle"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"avatar": {
"type": "string",
"format": "uri",
"description": "CDN URL of the actor's avatar image."
},
"handle": {
"type": "string",
"format": "handle"
},
"viewer": {
"ref": "#profileViewerState",
"type": "ref",
"description": "Viewer-specific state. Only present when the request is authenticated."
},
"displayName": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
}
}
}