# tech.waow.doodl.iconset

> Published by [waow.tech](https://lexicon.garden/identity/did:plc:siv7zbedip4vcet4v67piibr)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:siv7zbedip4vcet4v67piibr/tech.waow.doodl.iconset)
- [Documentation](https://lexicon.garden/lexicon/did:plc:siv7zbedip4vcet4v67piibr/tech.waow.doodl.iconset/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:siv7zbedip4vcet4v67piibr/tech.waow.doodl.iconset/examples)

## Definitions

### `tech.waow.doodl.iconset`

**Type**: `record`

Maps named UI slots to the user's chosen drawings. A singleton (key 'self'). Pure config — holds no images, only strongRefs to drawing records.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `updatedAt` | `string` (datetime) | No |  |
| `assignments` | `array` | Yes |  |

### `tech.waow.doodl.iconset#assignment`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `slot` | `string` | Yes | UI slot name, e.g. 'settings'. |
| `drawing` | `ref` → `com.atproto.repo.strongRef` | Yes | The drawing assigned to this slot. |

## Raw Schema

```json
{
  "id": "tech.waow.doodl.iconset",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "assignments"
        ],
        "properties": {
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "assignments": {
            "type": "array",
            "items": {
              "ref": "#assignment",
              "type": "ref"
            },
            "maxLength": 64
          }
        }
      },
      "description": "Maps named UI slots to the user's chosen drawings. A singleton (key 'self'). Pure config — holds no images, only strongRefs to drawing records."
    },
    "assignment": {
      "type": "object",
      "required": [
        "slot",
        "drawing"
      ],
      "properties": {
        "slot": {
          "type": "string",
          "maxLength": 64,
          "description": "UI slot name, e.g. 'settings'."
        },
        "drawing": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref",
          "description": "The drawing assigned to this slot."
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
