# app.didpic.actor.defs

> Published by [lexicons.didpic.app](https://lexicon.garden/identity/did:plc:an2jtp4jgkkbtmwfzhpbxawd)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.actor.defs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.actor.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:an2jtp4jgkkbtmwfzhpbxawd/app.didpic.actor.defs/examples)

## Definitions

### `app.didpic.actor.defs#feedPref`

**Type**: `object`

Last-selected home feed.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `value` | `string` | Yes |  |

### `app.didpic.actor.defs#labelPrefs`

**Type**: `object`

Per-label moderation preferences.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `labels` | `unknown` | Yes | Map of label id to action ('hide' \| 'blur' \| 'show'). |

### `app.didpic.actor.defs#feedFilters`

**Type**: `object`

Viewer-side feed filtering options.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `hideNoAltText` | `boolean` | Yes |  |

### `app.didpic.actor.defs#profileView`

**Type**: `object`

Full profile view.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes |  |
| `handle` | `string` (handle) | No |  |
| `location` | `string` | No |  |
| `pronouns` | `string` | No |  |
| `avatarCid` | `string` (cid) | No |  |
| `bannerCid` | `string` (cid) | No |  |
| `indexedAt` | `string` (datetime) | No |  |
| `likesCount` | `integer` | No |  |
| `postsCount` | `integer` | No |  |
| `description` | `string` | No |  |
| `displayName` | `string` | No |  |
| `followsCount` | `integer` | No |  |
| `followersCount` | `integer` | No |  |
| `viewerBlocking` | `string` (at-uri) | No | URI of the viewer's block record for this actor, if any. |
| `viewerBlockedBy` | `boolean` | No | Whether this actor has blocked the viewer. |
| `viewerFollowing` | `string` (at-uri) | No | URI of the viewer's follow record for this actor, if any. |
| `descriptionFacets` | `array` | No | Facets within description (mentions, tags, links). |
| `viewerSubscription` | `boolean` | No | Whether the viewer is subscribed to this actor's post alerts. |

### `app.didpic.actor.defs#composePrefs`

**Type**: `object`

Compose-time enforcement options.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `requireAltText` | `boolean` | Yes |  |

### `app.didpic.actor.defs#profileBasic`

**Type**: `object`

Minimal profile info embedded inside other views.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes |  |
| `handle` | `string` (handle) | No |  |
| `avatarCid` | `string` (cid) | No |  |
| `displayName` | `string` | No |  |
| `viewerFollowing` | `string` (at-uri) | No | URI of the viewer's follow record for this actor, if any. |

## Raw Schema

```json
{
  "id": "app.didpic.actor.defs",
  "defs": {
    "feedPref": {
      "type": "object",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "string",
          "knownValues": [
            "home",
            "discover"
          ]
        }
      },
      "description": "Last-selected home feed."
    },
    "labelPrefs": {
      "type": "object",
      "required": [
        "labels"
      ],
      "properties": {
        "labels": {
          "type": "unknown",
          "description": "Map of label id to action ('hide' | 'blur' | 'show')."
        }
      },
      "description": "Per-label moderation preferences."
    },
    "feedFilters": {
      "type": "object",
      "required": [
        "hideNoAltText"
      ],
      "properties": {
        "hideNoAltText": {
          "type": "boolean"
        }
      },
      "description": "Viewer-side feed filtering options."
    },
    "profileView": {
      "type": "object",
      "required": [
        "did"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        },
        "handle": {
          "type": "string",
          "format": "handle"
        },
        "location": {
          "type": "string",
          "maxLength": 640,
          "maxGraphemes": 64
        },
        "pronouns": {
          "type": "string",
          "maxLength": 640,
          "maxGraphemes": 64
        },
        "avatarCid": {
          "type": "string",
          "format": "cid"
        },
        "bannerCid": {
          "type": "string",
          "format": "cid"
        },
        "indexedAt": {
          "type": "string",
          "format": "datetime"
        },
        "likesCount": {
          "type": "integer",
          "minimum": 0
        },
        "postsCount": {
          "type": "integer",
          "minimum": 0
        },
        "description": {
          "type": "string",
          "maxLength": 2560,
          "maxGraphemes": 256
        },
        "displayName": {
          "type": "string",
          "maxLength": 640,
          "maxGraphemes": 64
        },
        "followsCount": {
          "type": "integer",
          "minimum": 0
        },
        "followersCount": {
          "type": "integer",
          "minimum": 0
        },
        "viewerBlocking": {
          "type": "string",
          "format": "at-uri",
          "description": "URI of the viewer's block record for this actor, if any."
        },
        "viewerBlockedBy": {
          "type": "boolean",
          "description": "Whether this actor has blocked the viewer."
        },
        "viewerFollowing": {
          "type": "string",
          "format": "at-uri",
          "description": "URI of the viewer's follow record for this actor, if any."
        },
        "descriptionFacets": {
          "type": "array",
          "items": {
            "ref": "app.didpic.richtext.facet",
            "type": "ref"
          },
          "description": "Facets within description (mentions, tags, links)."
        },
        "viewerSubscription": {
          "type": "boolean",
          "description": "Whether the viewer is subscribed to this actor's post alerts."
        }
      },
      "description": "Full profile view."
    },
    "composePrefs": {
      "type": "object",
      "required": [
        "requireAltText"
      ],
      "properties": {
        "requireAltText": {
          "type": "boolean"
        }
      },
      "description": "Compose-time enforcement options."
    },
    "profileBasic": {
      "type": "object",
      "required": [
        "did"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        },
        "handle": {
          "type": "string",
          "format": "handle"
        },
        "avatarCid": {
          "type": "string",
          "format": "cid"
        },
        "displayName": {
          "type": "string",
          "maxLength": 640,
          "maxGraphemes": 64
        },
        "viewerFollowing": {
          "type": "string",
          "format": "at-uri",
          "description": "URI of the viewer's follow record for this actor, if any."
        }
      },
      "description": "Minimal profile info embedded inside other views."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
