# com.imlunahey.atrium.furniture

> Published by [imlunahey.com](https://lexicon.garden/identity/did:plc:k6acu4chiwkixvdedcmdgmal)

## Description

A furniture item the user owns in the atrium hangout. One record per item (rkey=tid); the inventory is the collection of records under this collection. Placement in a specific room is a separate concern (handled by a per-room layout record in a future revision).

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:k6acu4chiwkixvdedcmdgmal/com.imlunahey.atrium.furniture)
- [Documentation](https://lexicon.garden/lexicon/did:plc:k6acu4chiwkixvdedcmdgmal/com.imlunahey.atrium.furniture/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:k6acu4chiwkixvdedcmdgmal/com.imlunahey.atrium.furniture/examples)

## Definitions

### `com.imlunahey.atrium.furniture`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `kind` | `string` | Yes | Which procedural shape the renderer composes for this item. Clients must ignore items whose kind they don't recognise (forward compatibility for future kinds). |
| `name` | `string` | No | Optional human label for the item — shown in the inventory UI. |
| `color` | `string` | Yes | Lowercase #rrggbb hex. Top-face color; the renderer derives the side-face shades. |
| `createdAt` | `string` (datetime) | Yes | Client-supplied creation timestamp. UTC. |

## Raw Schema

```json
{
  "id": "com.imlunahey.atrium.furniture",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "kind",
          "color",
          "createdAt"
        ],
        "properties": {
          "kind": {
            "type": "string",
            "description": "Which procedural shape the renderer composes for this item. Clients must ignore items whose kind they don't recognise (forward compatibility for future kinds).",
            "knownValues": [
              "chair",
              "table",
              "plant",
              "lamp",
              "crate",
              "rug"
            ]
          },
          "name": {
            "type": "string",
            "maxLength": 60,
            "description": "Optional human label for the item — shown in the inventory UI."
          },
          "color": {
            "type": "string",
            "maxLength": 7,
            "minLength": 7,
            "description": "Lowercase #rrggbb hex. Top-face color; the renderer derives the side-face shades."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-supplied creation timestamp. UTC."
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A furniture item the user owns in the atrium hangout. One record per item (rkey=tid); the inventory is the collection of records under this collection. Placement in a specific room is a separate concern (handled by a per-room layout record in a future revision)."
}
```
