No description available.
Properties
avatar
string
uri
Optional
A valid URI.
cid
string
cid
Required
A content identifier (CID) referencing immutable data.
collectionItemCount
integer
Optional
No description available.
minimum: 0creator
ref
app.bsky.actor.defs#profileView
Required
No description available.
description
string
Optional
No description available.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesdescriptionFacets
array
of refapp.bsky.richtext.facet
Optional
No description available.
indexedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
labels
array
of refcom.atproto.label.defs#label
Optional
No description available.
name
string
Required
No description available.
maxLength: 64 bytesminLength: 1 bytesuri
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"type": "object",
"required": [
"uri",
"cid",
"creator",
"name",
"indexedAt"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
},
"name": {
"type": "string",
"maxLength": 64,
"minLength": 1
},
"avatar": {
"type": "string",
"format": "uri"
},
"labels": {
"type": "array",
"items": {
"ref": "com.atproto.label.defs#label",
"type": "ref"
}
},
"creator": {
"ref": "app.bsky.actor.defs#profileView",
"type": "ref"
},
"indexedAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300
},
"descriptionFacets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
}
},
"collectionItemCount": {
"type": "integer",
"minimum": 0
}
}
}