No description available.
Properties
View raw schema
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"format": "uri"
},
"title": {
"type": "string"
}
}
}
No description available.
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"format": "uri"
},
"title": {
"type": "string"
}
}
}
Author view for lists and search results. Adds the profile bio to the basic view.
avatar
string
uri
Optional
Avatar image URL
bio
string
Optional
No description available.
maxGraphemes: 256 graphemesdid
string
did
Required
A decentralized identifier (DID).
displayName
string
Optional
No description available.
maxGraphemes: 64 graphemeshandle
string
handle
Required
An AT Protocol handle (e.g., alice.bsky.social).
indexedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
{
"type": "object",
"required": [
"did",
"handle"
],
"properties": {
"bio": {
"type": "string",
"maxGraphemes": 256
},
"did": {
"type": "string",
"format": "did"
},
"avatar": {
"type": "string",
"format": "uri",
"description": "Avatar image URL"
},
"handle": {
"type": "string",
"format": "handle"
},
"indexedAt": {
"type": "string",
"format": "datetime"
},
"displayName": {
"type": "string",
"maxGraphemes": 64
}
},
"description": "Author view for lists and search results. Adds the profile bio to the basic view."
}
Minimal author view embedded in feed items. Carries only what a card renders, so a client does not fetch the author again for every artwork.
{
"type": "object",
"required": [
"did",
"handle"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"avatar": {
"type": "string",
"format": "uri",
"description": "Avatar image URL"
},
"handle": {
"type": "string",
"format": "handle"
},
"displayName": {
"type": "string",
"maxGraphemes": 64
}
},
"description": "Minimal author view embedded in feed items. Carries only what a card renders, so a client does not fetch the author again for every artwork."
}
Full author view for the profile screen. The aggregate counts exist only at this tier.
artworksCount
integer
Optional
No description available.
avatar
string
uri
Optional
Avatar image URL
banner
string
uri
Optional
Banner image URL
bio
string
Optional
No description available.
maxGraphemes: 256 graphemesdid
string
did
Required
A decentralized identifier (DID).
displayName
string
Optional
No description available.
maxGraphemes: 64 graphemesfollowersCount
integer
Optional
No description available.
followsCount
integer
Optional
No description available.
handle
string
handle
Required
An AT Protocol handle (e.g., alice.bsky.social).
indexedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
links
array
of refapp.bivri.actor.defs#profileLink
Optional
No description available.
{
"type": "object",
"required": [
"did",
"handle"
],
"properties": {
"bio": {
"type": "string",
"maxGraphemes": 256
},
"did": {
"type": "string",
"format": "did"
},
"links": {
"type": "array",
"items": {
"ref": "app.bivri.actor.defs#profileLink",
"type": "ref"
}
},
"avatar": {
"type": "string",
"format": "uri",
"description": "Avatar image URL"
},
"banner": {
"type": "string",
"format": "uri",
"description": "Banner image URL"
},
"handle": {
"type": "string",
"format": "handle"
},
"indexedAt": {
"type": "string",
"format": "datetime"
},
"displayName": {
"type": "string",
"maxGraphemes": 64
},
"followsCount": {
"type": "integer"
},
"artworksCount": {
"type": "integer"
},
"followersCount": {
"type": "integer"
}
},
"description": "Full author view for the profile screen. The aggregate counts exist only at this tier."
}