···18// RECORDTYPE: ActorProfile
19type ActorProfile struct {
20 LexiconTypeID string `json:"$type,const=sh.tangled.actor.profile" cborgen:"$type,const=sh.tangled.actor.profile"`
0021 // bluesky: Include link to this account on Bluesky.
22 Bluesky bool `json:"bluesky" cborgen:"bluesky"`
23 // description: Free-form profile description text.
···18// RECORDTYPE: ActorProfile
19type ActorProfile struct {
20 LexiconTypeID string `json:"$type,const=sh.tangled.actor.profile" cborgen:"$type,const=sh.tangled.actor.profile"`
21+ // avatar: Small image to be displayed next to posts from account. AKA, 'profile picture'
22+ Avatar *util.LexBlob `json:"avatar,omitempty" cborgen:"avatar,omitempty"`
23 // bluesky: Include link to this account on Bluesky.
24 Bluesky bool `json:"bluesky" cborgen:"bluesky"`
25 // description: Free-form profile description text.