# build.clovernight.identity.profile

> Published by [studio.pds.clovernight.build](https://lexicon.garden/identity/did:plc:eylr5g42jkpwyputz3xbgynj)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.identity.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.identity.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.identity.profile/examples)

## Definitions

### `build.clovernight.identity.profile#link`

**Type**: `object`

A labeled external link.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` | Yes | Link URL. |
| `label` | `string` | Yes | Link label. |

### `build.clovernight.identity.profile`

**Type**: `record`

A builder's CloverNight-suite identity, read by CloverNight, WooPulse, and dionis.dev alike. One DID, one profile, portable across the suite. Singleton per repo.

**Key**: `self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `bio` | `string` | No | Short bio. |
| `links` | `array` | No | External links (site, social). |
| `avatar` | `blob` | No | Profile avatar image. |
| `createdAt` | `string` (datetime) | No | ISO 8601 timestamp the profile was created. |
| `displayName` | `string` | No | Display name. |

## Raw Schema

```json
{
  "id": "build.clovernight.identity.profile",
  "defs": {
    "link": {
      "type": "object",
      "required": [
        "label",
        "uri"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "maxLength": 2048,
          "description": "Link URL."
        },
        "label": {
          "type": "string",
          "maxLength": 64,
          "description": "Link label."
        }
      },
      "description": "A labeled external link."
    },
    "main": {
      "key": "self",
      "type": "record",
      "record": {
        "type": "object",
        "properties": {
          "bio": {
            "type": "string",
            "maxLength": 1024,
            "description": "Short bio."
          },
          "links": {
            "type": "array",
            "items": {
              "ref": "#link",
              "type": "ref"
            },
            "maxLength": 16,
            "description": "External links (site, social)."
          },
          "avatar": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1048576,
            "description": "Profile avatar image."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "ISO 8601 timestamp the profile was created."
          },
          "displayName": {
            "type": "string",
            "maxLength": 128,
            "description": "Display name."
          }
        }
      },
      "description": "A builder's CloverNight-suite identity, read by CloverNight, WooPulse, and dionis.dev alike. One DID, one profile, portable across the suite. Singleton per repo."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
