# work.mattriley.about

> Published by [mattriley.work](https://lexicon.garden/identity/did:plc:g5frjlzwnpjtxlc6chaqbl4o)

## Description

The about/bio content displayed on mattriley.work.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:g5frjlzwnpjtxlc6chaqbl4o/work.mattriley.about)
- [Documentation](https://lexicon.garden/lexicon/did:plc:g5frjlzwnpjtxlc6chaqbl4o/work.mattriley.about/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:g5frjlzwnpjtxlc6chaqbl4o/work.mattriley.about/examples)

## Definitions

### `work.mattriley.about`

**Type**: `record`

Singleton record holding the site's about section.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `content` | `string` | Yes | HTML about/bio content rendered by the frontend. |
| `tagline` | `string` | No | Short one-line tagline shown under the site title. |

## Raw Schema

```json
{
  "id": "work.mattriley.about",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "content"
        ],
        "properties": {
          "content": {
            "type": "string",
            "description": "HTML about/bio content rendered by the frontend."
          },
          "tagline": {
            "type": "string",
            "description": "Short one-line tagline shown under the site title."
          }
        }
      },
      "description": "Singleton record holding the site's about section."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "The about/bio content displayed on mattriley.work."
}
```
