# us.polhem.blog.content

> Published by [polhem.us](https://lexicon.garden/identity/did:plc:p5a4pydyirvdkmc3lhw2iykp)

✓ This is the authoritative definition for this NSID.

## Description

Generic blocks of web content for my personal blog (https://polhem.us)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:p5a4pydyirvdkmc3lhw2iykp/us.polhem.blog.content)
- [Documentation](https://lexicon.garden/lexicon/did:plc:p5a4pydyirvdkmc3lhw2iykp/us.polhem.blog.content/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:p5a4pydyirvdkmc3lhw2iykp/us.polhem.blog.content/examples)

## Definitions

### `us.polhem.blog.content`

**Type**: `record`

Record describing a page content block.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `slug` | `string` | Yes |  |
| `images` | `array` | No |  |
| `content` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "us.polhem.blog.content",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "content",
          "slug",
          "createdAt"
        ],
        "properties": {
          "slug": {
            "type": "string",
            "maxLength": 100
          },
          "images": {
            "type": "array",
            "items": {
              "ref": "us.polhem.blog.image",
              "type": "ref"
            }
          },
          "content": {
            "type": "string",
            "maxLength": 100000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Record describing a page content block."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Generic blocks of web content for my personal blog (https://polhem.us)"
}
```
