# com.crabdance.nandi.post

> Published by [nandi.latha.org](https://lexicon.garden/identity/did:plc:ngokl2gnmpbvuvrfckja3g7p)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ngokl2gnmpbvuvrfckja3g7p/com.crabdance.nandi.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ngokl2gnmpbvuvrfckja3g7p/com.crabdance.nandi.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ngokl2gnmpbvuvrfckja3g7p/com.crabdance.nandi.post/examples)

## Definitions

### `com.crabdance.nandi.post`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tags` | `array` | No | Tags for categorizing the post |
| `title` | `string` | Yes | The title of the blog post |
| `content` | `string` | Yes | The main content of the blog post in markdown |
| `summary` | `string` | No | Optional summary/excerpt of the post |
| `createdAt` | `string` (datetime) | Yes |  |
| `published` | `boolean` | No | Whether the post is published or draft |
| `updatedAt` | `string` (datetime) | No |  |

## Raw Schema

```json
{
  "id": "com.crabdance.nandi.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "content",
          "createdAt"
        ],
        "properties": {
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 50
            },
            "maxLength": 10,
            "description": "Tags for categorizing the post"
          },
          "title": {
            "type": "string",
            "maxLength": 200,
            "minLength": 1,
            "description": "The title of the blog post"
          },
          "content": {
            "type": "string",
            "maxLength": 10000,
            "minLength": 1,
            "description": "The main content of the blog post in markdown"
          },
          "summary": {
            "type": "string",
            "maxLength": 500,
            "description": "Optional summary/excerpt of the post"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "published": {
            "type": "boolean",
            "default": false,
            "description": "Whether the post is published or draft"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
