# app.offprint.page

> Published by [offprint.app](https://lexicon.garden/identity/did:plc:pgjkomf37an4czloay5zeth6)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.page)
- [Documentation](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.page/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:pgjkomf37an4czloay5zeth6/app.offprint.page/examples)

## Definitions

### `app.offprint.page`

**Type**: `record`

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `path` | `string` | Yes | Root-relative path the page is served at, with a leading slash (e.g. "/about" or "/p/colophon"). |
| `title` | `string` | Yes | Page title. |
| `content` | `ref` → `app.offprint.content` | Yes | Page body. Same block format as documents. |
| `updatedAt` | `string` (datetime) | No | Last edit timestamp. |
| `coverImage` | `blob` | No | Optional hero / cover image. |
| `description` | `string` | No | Brief description / meta description for SEO. |
| `publication` | `string` (at-uri) | Yes | Required AT-URI to the `site.standard.publication` this page belongs to. |
| `publishedAt` | `string` (datetime) | No | Publish timestamp. |

## Raw Schema

```json
{
  "id": "app.offprint.page",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "publication",
          "path",
          "title",
          "content"
        ],
        "properties": {
          "path": {
            "type": "string",
            "description": "Root-relative path the page is served at, with a leading slash (e.g. \"/about\" or \"/p/colophon\")."
          },
          "title": {
            "type": "string",
            "description": "Page title.",
            "maxGraphemes": 500
          },
          "content": {
            "ref": "app.offprint.content",
            "type": "ref",
            "description": "Page body. Same block format as documents."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Last edit timestamp."
          },
          "coverImage": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000,
            "description": "Optional hero / cover image."
          },
          "description": {
            "type": "string",
            "description": "Brief description / meta description for SEO.",
            "maxGraphemes": 3000
          },
          "publication": {
            "type": "string",
            "format": "at-uri",
            "description": "Required AT-URI to the `site.standard.publication` this page belongs to."
          },
          "publishedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Publish timestamp."
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
