# tech.tokimeki.kaku.post

> Published by [tokimeki.blue](https://lexicon.garden/identity/did:plc:4tr5dqti7nmu6g2czpthntak)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.kaku.post)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.kaku.post/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.kaku.post/examples)

## Definitions

### `tech.tokimeki.kaku.post`

**Type**: `record`

A drawing post created with the drawing tool

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tags` | `array` | No | Tags for categorization |
| `text` | `string` | No | Optional description or title |
| `image` | `blob` | Yes | The drawn image (max 1MB) |
| `subject` | `ref` → `com.atproto.repo.strongRef` | No | Reference to a related Bluesky post |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the post was created |
| `linkedPost` | `ref` → `com.atproto.repo.strongRef` | No | Bluesky post created for this drawing |
| `aspectRatio` | `ref` → `tech.tokimeki.kaku.defs#aspectRatio` | Yes | Aspect ratio of the image |

## Raw Schema

```json
{
  "id": "tech.tokimeki.kaku.post",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "image",
          "aspectRatio",
          "createdAt"
        ],
        "properties": {
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 64,
              "maxGraphemes": 32
            },
            "maxLength": 8,
            "description": "Tags for categorization"
          },
          "text": {
            "type": "string",
            "maxLength": 1000,
            "description": "Optional description or title",
            "maxGraphemes": 300
          },
          "image": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000,
            "description": "The drawn image (max 1MB)"
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Reference to a related Bluesky post"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the post was created"
          },
          "linkedPost": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Bluesky post created for this drawing"
          },
          "aspectRatio": {
            "ref": "tech.tokimeki.kaku.defs#aspectRatio",
            "type": "ref",
            "description": "Aspect ratio of the image"
          }
        }
      },
      "description": "A drawing post created with the drawing tool"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
