# social.respawn.actor.profile

> Published by [respawn.social](https://lexicon.garden/identity/did:plc:hiabolqnnpdnrb5grmdaaepg)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:hiabolqnnpdnrb5grmdaaepg/social.respawn.actor.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:hiabolqnnpdnrb5grmdaaepg/social.respawn.actor.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:hiabolqnnpdnrb5grmdaaepg/social.respawn.actor.profile/examples)

## Definitions

### `social.respawn.actor.profile#fave`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `game` | `ref` → `social.respawn.defs#gameRef` | Yes |  |
| `cover` | `ref` → `social.respawn.defs#cover` | No |  |

### `social.respawn.actor.profile`

**Type**: `record`

A Respawn-app profile for an actor. Mirrors app.bsky.actor.profile so existing Bluesky details can prefill it.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bsky` | `string` (did) | No | DID of the actor's Bluesky account, so a viewer can open it in their preferred Bluesky client. |
| `faves` | `array` | No | The actor's favorite games. |
| `avatar` | `blob` | No | Small image to be displayed next to the actor's display name. |
| `channel` | `string` (uri) | No | URL of the actor's streaming or video channel. |
| `pronouns` | `string` | No | The actor's pronouns. Clients default to they/their when absent. |
| `createdAt` | `string` (datetime) | No |  |
| `description` | `string` | No | Free-form profile description text. |
| `displayName` | `string` | No |  |
| `adultContent` | `string` | No | How to display adult content to visitors of this profile. Clients default to blur when absent. |

## Raw Schema

```json
{
  "id": "social.respawn.actor.profile",
  "defs": {
    "fave": {
      "type": "object",
      "required": [
        "game"
      ],
      "properties": {
        "game": {
          "ref": "social.respawn.defs#gameRef",
          "type": "ref"
        },
        "cover": {
          "ref": "social.respawn.defs#cover",
          "type": "ref"
        }
      }
    },
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "bsky": {
            "type": "string",
            "format": "did",
            "description": "DID of the actor's Bluesky account, so a viewer can open it in their preferred Bluesky client."
          },
          "faves": {
            "type": "array",
            "items": {
              "ref": "#fave",
              "type": "ref"
            },
            "maxLength": 4,
            "description": "The actor's favorite games."
          },
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000,
            "description": "Small image to be displayed next to the actor's display name."
          },
          "channel": {
            "type": "string",
            "format": "uri",
            "description": "URL of the actor's streaming or video channel."
          },
          "pronouns": {
            "type": "string",
            "maxLength": 320,
            "description": "The actor's pronouns. Clients default to they/their when absent.",
            "knownValues": [
              "they/their",
              "she/her",
              "she/their",
              "he/his",
              "he/their",
              "xe/xyr",
              "ze/hir",
              "ze/zir",
              "it/its"
            ],
            "maxGraphemes": 32
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 2560,
            "description": "Free-form profile description text.",
            "maxGraphemes": 256
          },
          "displayName": {
            "type": "string",
            "maxLength": 640,
            "maxGraphemes": 64
          },
          "adultContent": {
            "type": "string",
            "description": "How to display adult content to visitors of this profile. Clients default to blur when absent.",
            "knownValues": [
              "show",
              "blur",
              "hide"
            ]
          }
        }
      },
      "description": "A Respawn-app profile for an actor. Mirrors app.bsky.actor.profile so existing Bluesky details can prefill it."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
