# tech.tokimeki.kaku.collection

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

## Definitions

### `tech.tokimeki.kaku.collection`

**Type**: `record`

A collection to organize drawings into folders

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Collection name |
| `isPublic` | `boolean` | No | Whether the collection is publicly visible |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No | Collection description |

## Raw Schema

```json
{
  "id": "tech.tokimeki.kaku.collection",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "description": "Collection name",
            "maxGraphemes": 50
          },
          "isPublic": {
            "type": "boolean",
            "default": true,
            "description": "Whether the collection is publicly visible"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 500,
            "description": "Collection description",
            "maxGraphemes": 200
          }
        }
      },
      "description": "A collection to organize drawings into folders"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
