# fm.teal.actor.defs

> Published by [teal.fm](https://lexicon.garden/identity/did:plc:iwhuynr6mm6xxuh25o4do2tx)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:iwhuynr6mm6xxuh25o4do2tx/fm.teal.actor.defs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:iwhuynr6mm6xxuh25o4do2tx/fm.teal.actor.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:iwhuynr6mm6xxuh25o4do2tx/fm.teal.actor.defs/examples)

## Definitions

### `fm.teal.actor.defs#statusView`

**Type**: `object`

A declaration of the status of the actor.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `item` | `ref` → `fm.teal.feed.defs#playView` | No |  |
| `time` | `string` (datetime) | No | The datetime at which the status was recorded. |
| `expiry` | `string` (datetime) | No | The datetime after which the status is no longer current. |

### `fm.teal.actor.defs#profileView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | No | The decentralized identifier of the actor |
| `avatar` | `string` (cid) | No | IPLD of the avatar |
| `banner` | `string` (cid) | No | IPLD of the banner image |
| `status` | `ref` → `#statusView` | No |  |
| `createdAt` | `string` (datetime) | No |  |
| `description` | `string` | No | Free-form profile description text. |
| `displayName` | `string` | No |  |
| `featuredItem` | `ref` → `fm.teal.actor.profile#featuredItem` | No | The user's most recent item featured on their profile. |
| `descriptionFacets` | `array` | No | Annotations of text in the profile description (mentions, URLs, hashtags, etc). May be changed to another (backwards compatible) lexicon. |

### `fm.teal.actor.defs#miniProfileView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | No | The decentralized identifier of the actor |
| `avatar` | `string` (cid) | No | IPLD of the avatar |
| `handle` | `string` (handle) | No |  |
| `displayName` | `string` | No |  |

## Raw Schema

```json
{
  "id": "fm.teal.actor.defs",
  "defs": {
    "statusView": {
      "type": "object",
      "properties": {
        "item": {
          "ref": "fm.teal.feed.defs#playView",
          "type": "ref"
        },
        "time": {
          "type": "string",
          "format": "datetime",
          "description": "The datetime at which the status was recorded."
        },
        "expiry": {
          "type": "string",
          "format": "datetime",
          "description": "The datetime after which the status is no longer current."
        }
      },
      "description": "A declaration of the status of the actor."
    },
    "profileView": {
      "type": "object",
      "properties": {
        "did": {
          "type": "string",
          "format": "did",
          "description": "The decentralized identifier of the actor"
        },
        "avatar": {
          "type": "string",
          "format": "cid",
          "description": "IPLD of the avatar"
        },
        "banner": {
          "type": "string",
          "format": "cid",
          "description": "IPLD of the banner image"
        },
        "status": {
          "ref": "#statusView",
          "type": "ref"
        },
        "createdAt": {
          "type": "string",
          "format": "datetime"
        },
        "description": {
          "type": "string",
          "description": "Free-form profile description text."
        },
        "displayName": {
          "type": "string"
        },
        "featuredItem": {
          "ref": "fm.teal.actor.profile#featuredItem",
          "type": "ref",
          "description": "The user's most recent item featured on their profile."
        },
        "descriptionFacets": {
          "type": "array",
          "items": {
            "ref": "app.bsky.richtext.facet",
            "type": "ref"
          },
          "description": "Annotations of text in the profile description (mentions, URLs, hashtags, etc). May be changed to another (backwards compatible) lexicon."
        }
      }
    },
    "miniProfileView": {
      "type": "object",
      "properties": {
        "did": {
          "type": "string",
          "format": "did",
          "description": "The decentralized identifier of the actor"
        },
        "avatar": {
          "type": "string",
          "format": "cid",
          "description": "IPLD of the avatar"
        },
        "handle": {
          "type": "string",
          "format": "handle"
        },
        "displayName": {
          "type": "string"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
