# app.winesky.list

> Published by [winesky.app](https://lexicon.garden/identity/did:plc:kg77b5troxbtudevqnfvqba7)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:kg77b5troxbtudevqnfvqba7/app.winesky.list)
- [Documentation](https://lexicon.garden/lexicon/did:plc:kg77b5troxbtudevqnfvqba7/app.winesky.list/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:kg77b5troxbtudevqnfvqba7/app.winesky.list/examples)

## Definitions

### `app.winesky.list`

**Type**: `record`

A user-curated list of drinks. Lists are append-only / append-and-delete; metadata is intentionally minimal — the name is set at creation and is not user-editable today.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "app.winesky.list",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A user-curated list of drinks. Lists are append-only / append-and-delete; metadata is intentionally minimal — the name is set at creation and is not user-editable today."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
