# blue.topcoat.manicure

> 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.manicure)
- [Documentation](https://lexicon.garden/lexicon/did:plc:w4iy4lw2kx3hcpznsaieys3q/blue.topcoat.manicure/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:w4iy4lw2kx3hcpznsaieys3q/blue.topcoat.manicure/examples)

## Definitions

### `blue.topcoat.manicure`

**Type**: `record`

A record of a manicure, including polishes used per nail, technique, and where it was done.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Name or title for this manicure record; can not be empty |
| `nails` | `array` | No | Per-nail details, including which polish(es) were used |
| `images` | `array` | No | Photos of the finished manicure |
| `wornAt` | `string` (datetime) | No | Date/time the manicure was worn or done (may differ from createdAt) |
| `location` | `string` | No | Where the manicure was done |
| `createdAt` | `string` (datetime) | Yes | Timestamp for when this record was created |
| `salonName` | `string` | No | Name of the salon, if applicable |
| `technique` | `string` | No | Application technique used for this manicure |
| `description` | `string` | No | Free-form notes or description about the manicure |
| `descriptionFacets` | `array` | No |  |

### `blue.topcoat.manicure#nailApplication`

**Type**: `object`

Describes which nail polish (or other product) was used on a specific nail.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `nail` | `string` | Yes | Which nail this entry refers to |
| `note` | `string` | No | Optional note about this nail (e.g. accent nail, design detail) |
| `polish` | `ref` → `com.atproto.repo.strongRef` | No | Reference to the blue.topcoat.nailPolish record used on this nail |

## Raw Schema

```json
{
  "id": "blue.topcoat.manicure",
  "defs": {
    "main": {
      "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."
    },
    "nailApplication": {
      "type": "object",
      "required": [
        "nail"
      ],
      "properties": {
        "nail": {
          "type": "string",
          "description": "Which nail this entry refers to",
          "knownValues": [
            "leftThumb",
            "leftIndex",
            "leftMiddle",
            "leftRing",
            "leftPinky",
            "rightThumb",
            "rightIndex",
            "rightMiddle",
            "rightRing",
            "rightPinky"
          ]
        },
        "note": {
          "type": "string",
          "maxLength": 300,
          "description": "Optional note about this nail (e.g. accent nail, design detail)",
          "maxGraphemes": 100
        },
        "polish": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref",
          "description": "Reference to the blue.topcoat.nailPolish record used on this nail"
        }
      },
      "description": "Describes which nail polish (or other product) was used on a specific nail."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
