# app.bsky.actor.contentVisibilityDeclaration

> Published by [bsky-lexicons.bsky.social](https://lexicon.garden/identity/did:plc:4v4y5r3lwsbtmsxhile2ljac)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.contentVisibilityDeclaration)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.contentVisibilityDeclaration/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/app.bsky.actor.contentVisibilityDeclaration/examples)

## Definitions

### `app.bsky.actor.contentVisibilityDeclaration`

**Type**: `record`

A declaration of an account's preferences for appearing in content discovery surfaces.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `hideFromAlgorithmicRecommendations` | `boolean` | Yes | Whether the account requests that its posts be hidden from algorithmic recommendations. Consumers must treat a missing record as false. |

## Raw Schema

```json
{
  "id": "app.bsky.actor.contentVisibilityDeclaration",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "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."
          }
        }
      },
      "description": "A declaration of an account's preferences for appearing in content discovery surfaces."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
