# coop.hypha.spores.site.profile

> Published by [hypha.coop](https://lexicon.garden/identity/did:plc:rxduhzsfgfpl2glle7vagcwl)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.spores.site.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.spores.site.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.spores.site.profile/examples)

## Definitions

### `coop.hypha.spores.site.profile`

**Type**: `record`

Custom profile information for spores.garden sites

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `avatar` | `blob` | No | Avatar image blob |
| `banner` | `blob` | No | Banner image blob |
| `createdAt` | `string` (datetime) | No | Creation timestamp |
| `updatedAt` | `string` (datetime) | No | Last update timestamp |
| `description` | `string` | No | Profile description/bio |
| `displayName` | `string` | No | Display name |

## Raw Schema

```json
{
  "id": "coop.hypha.spores.site.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp",
              "image/gif"
            ],
            "maxSize": 1000000,
            "description": "Avatar image blob"
          },
          "banner": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp",
              "image/gif"
            ],
            "maxSize": 2000000,
            "description": "Banner image blob"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Creation timestamp"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Last update timestamp"
          },
          "description": {
            "type": "string",
            "maxLength": 50000,
            "description": "Profile description/bio",
            "maxGraphemes": 5000
          },
          "displayName": {
            "type": "string",
            "maxLength": 2000,
            "description": "Display name",
            "maxGraphemes": 200
          }
        }
      },
      "description": "Custom profile information for spores.garden sites"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
