# me.wilb.content.page

> Published by [wilb.me](https://lexicon.garden/identity/did:plc:oxdlsmnvpk2riyyuvq5jtdkd)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:oxdlsmnvpk2riyyuvq5jtdkd/me.wilb.content.page)
- [Documentation](https://lexicon.garden/lexicon/did:plc:oxdlsmnvpk2riyyuvq5jtdkd/me.wilb.content.page/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:oxdlsmnvpk2riyyuvq5jtdkd/me.wilb.content.page/examples)

## Definitions

### `me.wilb.content.page#link`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (uri) | Yes |  |
| `title` | `string` | No |  |

### `me.wilb.content.page`

**Type**: `record`

A simple page with text, an image, and a link

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `body` | `string` | No |  |
| `cover` | `ref` → `lex:me.wilb.content.page#image` | No |  |
| `links` | `array` | No |  |
| `title` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

### `me.wilb.content.page#image`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `alt` | `string` | No |  |
| `image` | `blob` | Yes |  |

## Raw Schema

```json
{
  "id": "me.wilb.content.page",
  "defs": {
    "link": {
      "type": "object",
      "required": [
        "uri"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "uri"
        },
        "title": {
          "type": "string",
          "maxGraphemes": 300
        }
      }
    },
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "createdAt"
        ],
        "properties": {
          "body": {
            "type": "string"
          },
          "cover": {
            "ref": "lex:me.wilb.content.page#image",
            "type": "ref"
          },
          "links": {
            "type": "array",
            "items": {
              "ref": "lex:me.wilb.content.page#link",
              "type": "ref"
            }
          },
          "title": {
            "type": "string",
            "maxGraphemes": 200
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A simple page with text, an image, and a link"
    },
    "image": {
      "type": "object",
      "required": [
        "image"
      ],
      "properties": {
        "alt": {
          "type": "string",
          "maxGraphemes": 5000
        },
        "image": {
          "type": "blob",
          "accept": [
            "image/*"
          ],
          "maxSize": 5000000
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
