# tech.tokimeki.kaku.request

> 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.request)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.kaku.request/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.kaku.request/examples)

## Definitions

### `tech.tokimeki.kaku.request`

**Type**: `record`

A request for someone to draw something

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tags` | `array` | No | Tags for categorization |
| `text` | `string` | Yes | Description of what to draw |
| `isOpen` | `boolean` | No | Whether still accepting responses |
| `createdAt` | `string` (datetime) | Yes |  |
| `targetActor` | `string` (did) | No | Optional: specific artist to request |
| `referenceImages` | `array` | No | Reference images for the request |

## Raw Schema

```json
{
  "id": "tech.tokimeki.kaku.request",
  "defs": {
    "main": {
      "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"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
