tech.tokimeki.kaku.post

tokimeki.blue

Documentation

A drawing post created with the drawing tool

main record

A drawing post created with the drawing tool

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp when the post was created

image blob Required

The drawn image (max 1MB)

maxSize: 1.0 MB
tags array of string Optional

Tags for categorization

maxLength: 8 items
text string Optional

Optional description or title

maxLength: 1000 bytesmaxGraphemes: 300 graphemes
View raw schema
{
  "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"
}

Lexicon Garden

@