No description available.
Properties
avatar
blob
Optional
Small image to be displayed on the profile.
maxSize: 1.0 MBcreatedAt
string
Optional
No description available.
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).
pronouns
string
Optional
No description available.
View raw schema
{
"type": "object",
"required": [
"did",
"handle"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg"
],
"maxSize": 1000000,
"description": "Small image to be displayed on the profile."
},
"handle": {
"type": "string",
"format": "handle"
},
"pronouns": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"displayName": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
}
}
}