A drawing post created with the drawing tool
Record Key
tid
Timestamp-based ID
Properties
aspectRatio
ref
tech.tokimeki.kaku.defs#aspectRatio
Required
Aspect ratio of the image
createdAt
string
datetime
Required
Timestamp when the post was created
image
blob
Required
The drawn image (max 1MB)
maxSize: 1.0 MBlinkedPost
ref
com.atproto.repo.strongRef
Optional
Bluesky post created for this drawing
subject
ref
com.atproto.repo.strongRef
Optional
Reference to a related Bluesky post
tags
array
of
string
Optional
Tags for categorization
maxLength: 8 itemstext
string
Optional
Optional description or title
maxLength: 1000 bytesmaxGraphemes: 300 graphemesView 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"
}