tech.tokimeki.kaku.request

tokimeki.blue

Documentation

A request for someone to draw something

main record

A request for someone to draw something

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

isOpen boolean Optional

Whether still accepting responses

Default: true
referenceImages array of blob Optional

Reference images for the request

maxLength: 4 items
tags array of string Optional

Tags for categorization

maxLength: 8 items
targetActor string did Optional

Optional: specific artist to request

text string Required

Description of what to draw

maxLength: 1000 bytesmaxGraphemes: 300 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "text",
      "createdAt"
    ],
    "properties": {
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxLength": 64
        },
        "maxLength": 8,
        "description": "Tags for categorization"
      },
      "text": {
        "type": "string",
        "maxLength": 1000,
        "description": "Description of what to draw",
        "maxGraphemes": 300
      },
      "isOpen": {
        "type": "boolean",
        "default": true,
        "description": "Whether still accepting responses"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "targetActor": {
        "type": "string",
        "format": "did",
        "description": "Optional: specific artist to request"
      },
      "referenceImages": {
        "type": "array",
        "items": {
          "type": "blob",
          "accept": [
            "image/png",
            "image/jpeg"
          ],
          "maxSize": 1000000
        },
        "maxLength": 4,
        "description": "Reference images for the request"
      }
    }
  },
  "description": "A request for someone to draw something"
}

Lexicon Garden

@