Properties
associated
ref
app.bsky.actor.defs#profileAssociated
Optional
No description provided.
avatar
string
uri
Optional
A valid URI.
chatDisabled
boolean
Optional
Set to true when the actor cannot actively participate in conversations
did
string
did
Required
A decentralized identifier (DID).
displayName
string
Optional
No description provided.
maxLength: 640 bytesmaxGraphemes: 64 graphemeshandle
string
handle
Required
An AT Protocol handle (e.g., alice.bsky.social).
labels
array
of refcom.atproto.label.defs#label
Optional
No description provided.
verification
ref
app.bsky.actor.defs#verificationState
Optional
No description provided.
viewer
ref
app.bsky.actor.defs#viewerState
Optional
No description provided.
View raw schema
{
"type": "object",
"required": [
"did",
"handle"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"avatar": {
"type": "string",
"format": "uri"
},
"handle": {
"type": "string",
"format": "handle"
},
"labels": {
"type": "array",
"items": {
"ref": "com.atproto.label.defs#label",
"type": "ref"
}
},
"viewer": {
"ref": "app.bsky.actor.defs#viewerState",
"type": "ref"
},
"associated": {
"ref": "app.bsky.actor.defs#profileAssociated",
"type": "ref"
},
"displayName": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
},
"chatDisabled": {
"type": "boolean",
"description": "Set to true when the actor cannot actively participate in conversations"
},
"verification": {
"ref": "app.bsky.actor.defs#verificationState",
"type": "ref"
}
}
}