{
"id": "app.bivri.actor.defs",
"defs": {
"profileLink": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"format": "uri"
},
"title": {
"type": "string"
}
}
},
"profileView": {
"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."
},
"profileViewBasic": {
"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."
},
"profileViewDetailed": {
"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."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1,
"description": "Actor view type definitions. Tiered like app.bsky.actor.defs so embedded views stay cheap: basic is embedded in feed items, detailed is served by getProfile."
}