# community.gifthood.actor.profile

> Published by [gifthood.community](https://lexicon.garden/identity/did:plc:7prvtl4j6wsfmkrfrnwknuxj)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7prvtl4j6wsfmkrfrnwknuxj/community.gifthood.actor.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7prvtl4j6wsfmkrfrnwknuxj/community.gifthood.actor.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7prvtl4j6wsfmkrfrnwknuxj/community.gifthood.actor.profile/examples)

## Definitions

### `community.gifthood.actor.profile`

**Type**: `record`

A member's gifthood-native profile. The member owns it; the AppView indexes it and layers it over their Bluesky profile field-by-field (a set field overrides Bluesky; an absent field inherits). One record per member, keyed `self`. createdAt is the write-once gifthood join date.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | No | Avatar image blob in the member's repo. Overrides the Bluesky avatar when set. |
| `banner` | `blob` | No | Banner image blob in the member's repo. |
| `website` | `string` (uri) | No | A personal link. Overrides the Bluesky website when set. |
| `pronouns` | `string` | No | Free-form pronouns. Overrides the Bluesky pronouns when set. |
| `createdAt` | `string` (datetime) | Yes | The gifthood join date. Write-once: edits MUST preserve it. |
| `description` | `string` | No | Gifthood bio. Overrides the Bluesky description when set. |
| `displayName` | `string` | No | Gifthood display name. Overrides the Bluesky display name when set. |

## Raw Schema

```json
{
  "id": "community.gifthood.actor.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000,
            "description": "Avatar image blob in the member's repo. Overrides the Bluesky avatar when set."
          },
          "banner": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000,
            "description": "Banner image blob in the member's repo."
          },
          "website": {
            "type": "string",
            "format": "uri",
            "description": "A personal link. Overrides the Bluesky website when set."
          },
          "pronouns": {
            "type": "string",
            "maxLength": 200,
            "description": "Free-form pronouns. Overrides the Bluesky pronouns when set.",
            "maxGraphemes": 20
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "The gifthood join date. Write-once: edits MUST preserve it."
          },
          "description": {
            "type": "string",
            "maxLength": 2560,
            "description": "Gifthood bio. Overrides the Bluesky description when set.",
            "maxGraphemes": 256
          },
          "displayName": {
            "type": "string",
            "maxLength": 640,
            "description": "Gifthood display name. Overrides the Bluesky display name when set.",
            "maxGraphemes": 64
          }
        }
      },
      "description": "A member's gifthood-native profile. The member owns it; the AppView indexes it and layers it over their Bluesky profile field-by-field (a set field overrides Bluesky; an absent field inherits). One record per member, keyed `self`. createdAt is the write-once gifthood join date."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
