APP-2774: Add algorithmic visibility setting (#11417)

This commit is contained in:
Spence Pope
2026-08-16 17:13:17 -04:00
committed by GitHub
parent 1f5c698165
commit 0ba971b1f6
7 changed files with 191 additions and 15 deletions
@@ -0,0 +1,21 @@
{
"lexicon": 1,
"id": "app.bsky.actor.contentVisibilityDeclaration",
"defs": {
"main": {
"type": "record",
"description": "A declaration of an account's preferences for appearing in content discovery surfaces.",
"key": "literal:self",
"record": {
"type": "object",
"required": ["hideFromAlgorithmicRecommendations"],
"properties": {
"hideFromAlgorithmicRecommendations": {
"type": "boolean",
"description": "Whether the account requests that its posts be hidden from algorithmic recommendations. Consumers must treat a missing record as false."
}
}
}
}
}
}