# app.winesky.listItem

> 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.listItem)
- [Documentation](https://lexicon.garden/lexicon/did:plc:kg77b5troxbtudevqnfvqba7/app.winesky.listItem/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:kg77b5troxbtudevqnfvqba7/app.winesky.listItem/examples)

## Definitions

### `app.winesky.listItem`

**Type**: `record`

A drink on a Winesky list. Created when a user adds a drink via @winesky.app on Bluesky.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `list` | `string` (at-uri) | Yes |  |
| `drink` | `ref` → `app.winesky.review#drink` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `parentPostUri` | `string` (at-uri) | Yes |  |
| `triggerPostUri` | `string` (at-uri) | No |  |

## Raw Schema

```json
{
  "id": "app.winesky.listItem",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "list",
          "drink",
          "parentPostUri",
          "createdAt"
        ],
        "properties": {
          "list": {
            "type": "string",
            "format": "at-uri"
          },
          "drink": {
            "ref": "app.winesky.review#drink",
            "type": "ref"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "parentPostUri": {
            "type": "string",
            "format": "at-uri"
          },
          "triggerPostUri": {
            "type": "string",
            "format": "at-uri"
          }
        }
      },
      "description": "A drink on a Winesky list. Created when a user adds a drink via @winesky.app on Bluesky."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
