# social.drydown.review

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

## Definitions

### `social.drydown.review`

**Type**: `record`

A single wearing review of a fragrance

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | No | Written review (max 255 graphemes) |
| `sillage` | `integer` | No | Mid-Wear: Trail left behind (1-5) |
| `uvIndex` | `integer` | No | Daily maximum UV index (0-11+) |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the review was created |
| `elevation` | `integer` | No | Elevation in meters above sea level |
| `endRating` | `integer` | No | Final: How it smells at the end (1-5) |
| `fragrance` | `string` (at-uri) | Yes | Reference to the social.drydown.fragrance record |
| `longevity` | `integer` | No | Final: Total duration (1-5) |
| `complexity` | `integer` | No | Final: Depth and evolution (1-5) |
| `stage1Temp` | `integer` | No | Temperature in Celsius at Stage 1 * 10 (e.g. 225 = 22.5°C) |
| `stage2Temp` | `integer` | No | Temperature in Celsius at Stage 2 * 10 (e.g. 225 = 22.5°C) |
| `stage3Temp` | `integer` | No | Temperature in Celsius at Stage 3 * 10 (e.g. 225 = 22.5°C) |
| `weatherOptIn` | `boolean` | No | User opted in to weather data collection |
| `drydownRating` | `integer` | No | Mid-Wear: How it smells after settling (1-5) |
| `midProjection` | `integer` | No | Mid-Wear: Scent bubble radius during mid-wear (1-5) |
| `openingRating` | `integer` | No | First Impression: How it smells immediately (1-5) |
| `overallRating` | `integer` | No | Final: Holistic 'Gut Score' (1-5) |
| `weightedScore` | `integer` | No | Calculated final score * 1000 (e.g. 4250 = 4.25) |
| `openingProjection` | `integer` | No | First Impression: Immediate scent bubble radius (1-5) |
| `stage2CompletedAt` | `string` (datetime) | No | Timestamp when Stage 2 was completed (for accurate temperature) |

## Raw Schema

```json
{
  "id": "social.drydown.review",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "fragrance",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 3000,
            "description": "Written review (max 255 graphemes)",
            "maxGraphemes": 255
          },
          "sillage": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1,
            "description": "Mid-Wear: Trail left behind (1-5)"
          },
          "uvIndex": {
            "type": "integer",
            "maximum": 11,
            "minimum": 0,
            "description": "Daily maximum UV index (0-11+)"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the review was created"
          },
          "elevation": {
            "type": "integer",
            "description": "Elevation in meters above sea level"
          },
          "endRating": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1,
            "description": "Final: How it smells at the end (1-5)"
          },
          "fragrance": {
            "type": "string",
            "format": "at-uri",
            "description": "Reference to the social.drydown.fragrance record"
          },
          "longevity": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1,
            "description": "Final: Total duration (1-5)"
          },
          "complexity": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1,
            "description": "Final: Depth and evolution (1-5)"
          },
          "stage1Temp": {
            "type": "integer",
            "description": "Temperature in Celsius at Stage 1 * 10 (e.g. 225 = 22.5°C)"
          },
          "stage2Temp": {
            "type": "integer",
            "description": "Temperature in Celsius at Stage 2 * 10 (e.g. 225 = 22.5°C)"
          },
          "stage3Temp": {
            "type": "integer",
            "description": "Temperature in Celsius at Stage 3 * 10 (e.g. 225 = 22.5°C)"
          },
          "weatherOptIn": {
            "type": "boolean",
            "description": "User opted in to weather data collection"
          },
          "drydownRating": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1,
            "description": "Mid-Wear: How it smells after settling (1-5)"
          },
          "midProjection": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1,
            "description": "Mid-Wear: Scent bubble radius during mid-wear (1-5)"
          },
          "openingRating": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1,
            "description": "First Impression: How it smells immediately (1-5)"
          },
          "overallRating": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1,
            "description": "Final: Holistic 'Gut Score' (1-5)"
          },
          "weightedScore": {
            "type": "integer",
            "description": "Calculated final score * 1000 (e.g. 4250 = 4.25)"
          },
          "openingProjection": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1,
            "description": "First Impression: Immediate scent bubble radius (1-5)"
          },
          "stage2CompletedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when Stage 2 was completed (for accurate temperature)"
          }
        }
      },
      "description": "A single wearing review of a fragrance"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
