# pub.leaflet.publicationPage

> Published by [leaflet.pub](https://lexicon.garden/identity/did:plc:btxrwcaeyodrap5mnjw2fvmz)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:btxrwcaeyodrap5mnjw2fvmz/pub.leaflet.publicationPage)
- [Documentation](https://lexicon.garden/lexicon/did:plc:btxrwcaeyodrap5mnjw2fvmz/pub.leaflet.publicationPage/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:btxrwcaeyodrap5mnjw2fvmz/pub.leaflet.publicationPage/examples)

## Definitions

### `pub.leaflet.publicationPage`

**Type**: `record`

A static page belonging to a publication (e.g. about / contact). The rkey is derived from the page path slug.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `path` | `string` | Yes |  |
| `title` | `string` | No |  |
| `content` | `ref` → `pub.leaflet.content` | Yes |  |
| `publication` | `string` (at-uri) | Yes |  |
| `publishedAt` | `string` (datetime) | No |  |

## Raw Schema

```json
{
  "id": "pub.leaflet.publicationPage",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "publication",
          "path",
          "content"
        ],
        "properties": {
          "path": {
            "type": "string"
          },
          "title": {
            "type": "string",
            "maxLength": 2000
          },
          "content": {
            "ref": "pub.leaflet.content",
            "type": "ref"
          },
          "publication": {
            "type": "string",
            "format": "at-uri"
          },
          "publishedAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A static page belonging to a publication (e.g. about / contact). The rkey is derived from the page path slug."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
