# tech.tokimeki.kaku.preference

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

## Definitions

### `tech.tokimeki.kaku.preference`

**Type**: `record`

User preference for KAKU TOKIMEKI

**Key**: `self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes | Timestamp when the preference was created |
| `updatedAt` | `string` (datetime) | No | Timestamp when the preference was last updated |
| `acceptingRequests` | `boolean` | No | Whether the user is accepting drawing requests |

## Raw Schema

```json
{
  "id": "tech.tokimeki.kaku.preference",
  "defs": {
    "main": {
      "key": "self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the preference was created"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the preference was last updated"
          },
          "acceptingRequests": {
            "type": "boolean",
            "default": false,
            "description": "Whether the user is accepting drawing requests"
          }
        }
      },
      "description": "User preference for KAKU TOKIMEKI"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
