An individual fragrance with house reference
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp when fragrance was created
house
string
at-uri
Required
AT URI reference to house record (at://did/social.drydown.house/rkey)
name
string
Required
Fragrance name
maxLength: 200 bytesminLength: 1 bytesupdatedAt
string
datetime
Optional
Timestamp of last update
year
integer
Optional
Year of release (optional)
minimum: 1000maximum: 2100View raw schema
{
"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"
}