# social.drydown.house

> Published by [drydown.social](https://lexicon.garden/identity/did:plc:t7y5hsuunzeyna2ecje4le7z)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:t7y5hsuunzeyna2ecje4le7z/social.drydown.house)
- [Documentation](https://lexicon.garden/lexicon/did:plc:t7y5hsuunzeyna2ecje4le7z/social.drydown.house/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:t7y5hsuunzeyna2ecje4le7z/social.drydown.house/examples)

## Definitions

### `social.drydown.house`

**Type**: `record`

A fragrance house or brand

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | House/brand name (must be unique per user) |
| `createdAt` | `string` (datetime) | Yes | Timestamp when house was created |
| `updatedAt` | `string` (datetime) | No | Timestamp of last update (for name corrections) |

## Raw Schema

```json
{
  "id": "social.drydown.house",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "description": "House/brand name (must be unique per user)"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when house was created"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp of last update (for name corrections)"
          }
        }
      },
      "description": "A fragrance house or brand"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
