A record of a manicure, including polishes used per nail, technique, and where it was done.
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Timestamp for when this record was created
description
string
Optional
Free-form notes or description about the manicure
maxLength: 3000 bytesmaxGraphemes: 300 graphemesdescriptionFacets
array
of
ref
app.bsky.richtext.facet
Optional
No description available.
images
array
of
blob
Optional
Photos of the finished manicure
maxLength: 4 itemslocation
string
Optional
Where the manicure was done
self, salon, othernails
array
of
ref
#nailApplication
Optional
Per-nail details, including which polish(es) were used
maxLength: 20 itemsname
string
Required
Name or title for this manicure record; can not be empty
maxLength: 640 bytesminLength: 1 bytesmaxGraphemes: 64 graphemessalonName
string
Optional
Name of the salon, if applicable
maxLength: 640 bytesmaxGraphemes: 128 graphemestechnique
string
Optional
Application technique used for this manicure
polish, gel, acrylic, dip, press-on, builder-gel, nail-art, otherwornAt
string
datetime
Optional
Date/time the manicure was worn or done (may differ from createdAt)
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"minLength": 1,
"description": "Name or title for this manicure record; can not be empty",
"maxGraphemes": 64
},
"nails": {
"type": "array",
"items": {
"ref": "#nailApplication",
"type": "ref"
},
"maxLength": 20,
"description": "Per-nail details, including which polish(es) were used"
},
"images": {
"type": "array",
"items": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 2000000
},
"maxLength": 4,
"description": "Photos of the finished manicure"
},
"wornAt": {
"type": "string",
"format": "datetime",
"description": "Date/time the manicure was worn or done (may differ from createdAt)"
},
"location": {
"type": "string",
"description": "Where the manicure was done",
"knownValues": [
"self",
"salon",
"other"
]
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp for when this record was created"
},
"salonName": {
"type": "string",
"maxLength": 640,
"description": "Name of the salon, if applicable",
"maxGraphemes": 128
},
"technique": {
"type": "string",
"description": "Application technique used for this manicure",
"knownValues": [
"polish",
"gel",
"acrylic",
"dip",
"press-on",
"builder-gel",
"nail-art",
"other"
]
},
"description": {
"type": "string",
"maxLength": 3000,
"description": "Free-form notes or description about the manicure",
"maxGraphemes": 300
},
"descriptionFacets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
}
}
}
},
"description": "A record of a manicure, including polishes used per nail, technique, and where it was done."
}