# app.bivri.actor.defs

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

✓ This is the authoritative definition for this NSID.

## 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.

## Links

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

## Definitions

### `app.bivri.actor.defs#profileLink`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes |  |
| `title` | `string` | No |  |

### `app.bivri.actor.defs#profileView`

**Type**: `object`

Author view for lists and search results. Adds the profile bio to the basic view.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No |  |
| `did` | `string` (did) | Yes |  |
| `avatar` | `string` (uri) | No | Avatar image URL |
| `handle` | `string` (handle) | Yes |  |
| `indexedAt` | `string` (datetime) | No |  |
| `displayName` | `string` | No |  |

### `app.bivri.actor.defs#profileViewBasic`

**Type**: `object`

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.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes |  |
| `avatar` | `string` (uri) | No | Avatar image URL |
| `handle` | `string` (handle) | Yes |  |
| `displayName` | `string` | No |  |

### `app.bivri.actor.defs#profileViewDetailed`

**Type**: `object`

Full author view for the profile screen. The aggregate counts exist only at this tier.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No |  |
| `did` | `string` (did) | Yes |  |
| `links` | `array` | No |  |
| `avatar` | `string` (uri) | No | Avatar image URL |
| `banner` | `string` (uri) | No | Banner image URL |
| `handle` | `string` (handle) | Yes |  |
| `indexedAt` | `string` (datetime) | No |  |
| `displayName` | `string` | No |  |
| `followsCount` | `integer` | No |  |
| `artworksCount` | `integer` | No |  |
| `followersCount` | `integer` | No |  |

## Raw Schema

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