Files
bsky-social-app/lexicons/app/bsky/actor/contentVisibilityDeclaration.json
vineyardbovines e945cda919 Merge branch 'main' of github.com:bluesky-social/social-app into app-2774
# Conflicts:
#	package.json
#	pnpm-lock.yaml
#	src/screens/Settings/PrivacyAndSecuritySettings.tsx
2026-08-14 09:17:31 -04:00

22 lines
679 B
JSON

{
"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."
}
}
}
}
}
}