# social.drydown.fragrance

> 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.fragrance)
- [Documentation](https://lexicon.garden/lexicon/did:plc:t7y5hsuunzeyna2ecje4le7z/social.drydown.fragrance/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:t7y5hsuunzeyna2ecje4le7z/social.drydown.fragrance/examples)

## Definitions

### `social.drydown.fragrance`

**Type**: `record`

An individual fragrance with house reference

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Fragrance name |
| `year` | `integer` | No | Year of release (optional) |
| `house` | `string` (at-uri) | Yes | AT URI reference to house record (at://did/social.drydown.house/rkey) |
| `createdAt` | `string` (datetime) | Yes | Timestamp when fragrance was created |
| `updatedAt` | `string` (datetime) | No | Timestamp of last update |

## Raw Schema

```json
{
  "id": "social.drydown.fragrance",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "house",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 200,
            "minLength": 1,
            "description": "Fragrance name"
          },
          "year": {
            "type": "integer",
            "maximum": 2100,
            "minimum": 1000,
            "description": "Year of release (optional)"
          },
          "house": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI reference to house record (at://did/social.drydown.house/rkey)"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when fragrance was created"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp of last update"
          }
        }
      },
      "description": "An individual fragrance with house reference"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
