No description available.
Properties
avatar
string
uri
Optional
A valid URI.
createdAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 2560 bytesmaxGraphemes: 256 graphemesdid
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).
labels
array
of refcom.atproto.label.defs#label
Optional
No description available.
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"
}
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 2560,
"maxGraphemes": 256
},
"displayName": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
}
}
}