# support.supper.actor.about

> Published by [supper.support](https://lexicon.garden/identity/did:plc:mcsqdltevtjpu26xthzzmm2l)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.actor.about)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.actor.about/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mcsqdltevtjpu26xthzzmm2l/support.supper.actor.about/examples)

## Definitions

### `support.supper.actor.about`

**Type**: `record`

Extended creator about section for Supper, stored on the user's PDS. Separate from the Bluesky profile bio.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | Rich text about section for the creator's Supper page. |
| `createdAt` | `string` (datetime) | Yes | When this about section was first written. |

## Raw Schema

```json
{
  "id": "support.supper.actor.about",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 20000,
            "description": "Rich text about section for the creator's Supper page.",
            "maxGraphemes": 2000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this about section was first written."
          }
        }
      },
      "description": "Extended creator about section for Supper, stored on the user's PDS. Separate from the Bluesky profile bio."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
