A fragrance house or brand
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"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"
}