# me.ngerakines.blahg.post

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

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/me.ngerakines.blahg.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/me.ngerakines.blahg.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/me.ngerakines.blahg.post/examples)

## Definitions

### `me.ngerakines.blahg.post`

**Type**: `record`

A blog post

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `langs` | `array` | No | Indicates human language of text content. |
| `title` | `string` | Yes | The title of the post. |
| `content` | `blob` | Yes | The content of the post. |
| `attachments` | `array` | No | Media attached to the post. |
| `publishedAt` | `string` (datetime) | Yes | The date and time the post was published. |

### `me.ngerakines.blahg.post#attachment`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `alt` | `string` | No | Alt text description of the content, for accessibility. |
| `content` | `blob` | Yes |  |

## Raw Schema

```json
{
  "id": "me.ngerakines.blahg.post",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "content",
          "publishedAt"
        ],
        "properties": {
          "langs": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "language"
            },
            "maxLength": 3,
            "description": "Indicates human language of text content."
          },
          "title": {
            "type": "string",
            "maxLength": 2000,
            "description": "The title of the post.",
            "maxGraphemes": 200
          },
          "content": {
            "type": "blob",
            "accept": [
              "text/plain",
              "text/html",
              "text/markdown"
            ],
            "maxSize": 1000000,
            "description": "The content of the post."
          },
          "attachments": {
            "type": "array",
            "items": {
              "ref": "#attachment",
              "type": "ref"
            },
            "description": "Media attached to the post."
          },
          "publishedAt": {
            "type": "string",
            "format": "datetime",
            "description": "The date and time the post was published."
          }
        }
      },
      "description": "A blog post"
    },
    "attachment": {
      "type": "object",
      "required": [
        "content"
      ],
      "properties": {
        "alt": {
          "type": "string",
          "maxLength": 10000,
          "description": "Alt text description of the content, for accessibility.",
          "maxGraphemes": 1000
        },
        "content": {
          "type": "blob",
          "accept": [
            "image/*"
          ],
          "maxSize": 3000000
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
