# blog.micro.content

> Published by [micro.blog](https://lexicon.garden/identity/did:plc:wshwyrtacrpz3ybxv4it5stl)

✓ This is the authoritative definition for this NSID.

## Description

Markdown and rendered HTML content for Micro.blog posts attached to Standard.site documents.

## Links

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

## Definitions

### `blog.micro.content`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `html` | `string` | Yes | The rendered HTML content for the post. |
| `markdown` | `string` | Yes | The original Markdown content for the post. |

## Raw Schema

```json
{
  "id": "blog.micro.content",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "markdown",
        "html"
      ],
      "properties": {
        "html": {
          "type": "string",
          "maxLength": 30000,
          "description": "The rendered HTML content for the post."
        },
        "markdown": {
          "type": "string",
          "maxLength": 30000,
          "description": "The original Markdown content for the post."
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Markdown and rendered HTML content for Micro.blog posts attached to Standard.site documents."
}
```
