{
"id": "blue.topcoat.nailPolish",
"defs": {
"main": {
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"minLength": 1,
"description": "Name of the nail polish; can not be empty",
"maxGraphemes": 64
},
"brand": {
"type": "string",
"maxLength": 640,
"minLength": 1,
"description": "Brand or manufacturer of the nail polish",
"maxGraphemes": 128
},
"finish": {
"type": "string",
"description": "Finish type of the polish",
"knownValues": [
"glossy",
"matte",
"glitter",
"shimmer",
"metallic",
"holographic",
"satin",
"duochrome",
"jelly",
"crackle"
]
},
"images": {
"type": "array",
"items": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 2000000
},
"maxLength": 4,
"description": "Photos of the polish, e.g. bottle and swatch"
},
"formula": {
"type": "string",
"description": "Formula type of the polish",
"knownValues": [
"regular",
"gel",
"dip",
"acrylic",
"vegan",
"5-free",
"10-free",
"breathable"
]
},
"colourHex": {
"type": "string",
"maxLength": 7,
"description": "Approximate hex colour value of the polish, e.g. #FF5733",
"maxGraphemes": 7
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp for when this record was created"
},
"colourName": {
"type": "string",
"maxLength": 640,
"description": "Name of the colour as given by the brand",
"maxGraphemes": 64
},
"description": {
"type": "string",
"maxLength": 3000,
"description": "Free-form notes or description about the polish",
"maxGraphemes": 300
},
"descriptionFacets": {
"type": "array",
"items": {
"ref": "app.bsky.richtext.facet",
"type": "ref"
}
}
}
},
"description": "A record of a nail polish, including brand, color, finish, and formula details."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}