# st.snowpo.post

> Published by [snowpo.st](https://lexicon.garden/identity/did:plc:e7lsxyaj7uuuwh7wtx5ewqp3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:e7lsxyaj7uuuwh7wtx5ewqp3/st.snowpo.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:e7lsxyaj7uuuwh7wtx5ewqp3/st.snowpo.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:e7lsxyaj7uuuwh7wtx5ewqp3/st.snowpo.post/examples)

## Definitions

### `st.snowpo.post`

**Type**: `record`

Record linking to a Markdown file.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `content` | `blob` | Yes |  |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this post was originally created. |
| `updatedAt` | `string` (datetime) | No | Client-declared timestamp when this post was last updated. |
| `commentRoot` | `string` (at-uri) | No | A Bluesky post to use as the comment root |
| `previewText` | `string` | No | Display title or preview text |

## Raw Schema

```json
{
  "id": "st.snowpo.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "content",
          "createdAt"
        ],
        "properties": {
          "content": {
            "type": "blob",
            "accept": [
              "text/markdown"
            ],
            "maxSize": 1000000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this post was originally created."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this post was last updated."
          },
          "commentRoot": {
            "type": "string",
            "format": "at-uri",
            "description": "A Bluesky post to use as the comment root"
          },
          "previewText": {
            "type": "string",
            "maxLength": 300,
            "description": "Display title or preview text"
          }
        }
      },
      "description": "Record linking to a Markdown file."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
