# beer.lizard.blog.post

> Published by [lizard.beer](https://lexicon.garden/identity/did:plc:3hmpatr4emhvmci3tvnkiav6)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:3hmpatr4emhvmci3tvnkiav6/beer.lizard.blog.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:3hmpatr4emhvmci3tvnkiav6/beer.lizard.blog.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:3hmpatr4emhvmci3tvnkiav6/beer.lizard.blog.post/examples)

## Definitions

### `beer.lizard.blog.post`

**Type**: `record`

A long-form blog post published by lizard.beer.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `slug` | `string` | No | The lizard.beer URL slug for the post. |
| `title` | `string` | Yes | The title of the blog post. |
| `content` | `string` | Yes | The body of the blog post in Markdown. |
| `summary` | `string` | No | A short summary or excerpt of the post. |
| `createdAt` | `string` (datetime) | Yes | When the post was originally published. |
| `updatedAt` | `string` (datetime) | No | When the post was most recently updated. |
| `canonicalUrl` | `string` (uri) | No | The canonical URL of the post on lizard.beer. |

## Raw Schema

```json
{
  "id": "beer.lizard.blog.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "content",
          "createdAt"
        ],
        "properties": {
          "slug": {
            "type": "string",
            "maxLength": 500,
            "description": "The lizard.beer URL slug for the post."
          },
          "title": {
            "type": "string",
            "maxLength": 3000,
            "description": "The title of the blog post.",
            "maxGraphemes": 300
          },
          "content": {
            "type": "string",
            "maxLength": 20000,
            "description": "The body of the blog post in Markdown."
          },
          "summary": {
            "type": "string",
            "maxLength": 10000,
            "description": "A short summary or excerpt of the post.",
            "maxGraphemes": 1000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the post was originally published."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the post was most recently updated."
          },
          "canonicalUrl": {
            "type": "string",
            "format": "uri",
            "description": "The canonical URL of the post on lizard.beer."
          }
        }
      },
      "description": "A long-form blog post published by lizard.beer."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
