No description available.
Properties
avatar
string
uri
Optional
A valid URI.
did
string
did
Required
A decentralized identifier (DID).
displayName
string
Optional
No description available.
maxLength: 1280 bytesmaxGraphemes: 128 graphemeshandle
string
handle
Required
An AT Protocol handle (e.g., alice.bsky.social).
reputation
integer
Optional
Author's reputation in the community
View raw schema
{
"type": "object",
"required": [
"did",
"handle"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"avatar": {
"type": "string",
"format": "uri"
},
"handle": {
"type": "string",
"format": "handle"
},
"reputation": {
"type": "integer",
"description": "Author's reputation in the community"
},
"displayName": {
"type": "string",
"maxLength": 1280,
"maxGraphemes": 128
}
}
}