# blue.topcoat.nailPolish

> Published by [topcoat.blue](https://lexicon.garden/identity/did:plc:w4iy4lw2kx3hcpznsaieys3q)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:w4iy4lw2kx3hcpznsaieys3q/blue.topcoat.nailPolish)
- [Documentation](https://lexicon.garden/lexicon/did:plc:w4iy4lw2kx3hcpznsaieys3q/blue.topcoat.nailPolish/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:w4iy4lw2kx3hcpznsaieys3q/blue.topcoat.nailPolish/examples)

## Definitions

### `blue.topcoat.nailPolish`

**Type**: `record`

A record of a nail polish, including brand, color, finish, and formula details.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Name of the nail polish; can not be empty |
| `brand` | `string` | No | Brand or manufacturer of the nail polish |
| `finish` | `string` | No | Finish type of the polish |
| `images` | `array` | No | Photos of the polish, e.g. bottle and swatch |
| `formula` | `string` | No | Formula type of the polish |
| `colourHex` | `string` | No | Approximate hex colour value of the polish, e.g. #FF5733 |
| `createdAt` | `string` (datetime) | Yes | Timestamp for when this record was created |
| `colourName` | `string` | No | Name of the colour as given by the brand |
| `description` | `string` | No | Free-form notes or description about the polish |
| `descriptionFacets` | `array` | No |  |

## Raw Schema

```json
{
  "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
}
```
