# blue.registry.listItem

> Published by [registry.blue](https://lexicon.garden/identity/did:plc:4olik72a346dcc2hppt7ioo4)

✓ This is the authoritative definition for this NSID.

## Description

Associates an item with a list. Enables many-to-many relationships between lists and items.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.listItem)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.listItem/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4olik72a346dcc2hppt7ioo4/blue.registry.listItem/examples)

## Definitions

### `blue.registry.listItem`

**Type**: `record`

A join record linking an item to a list.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `item` | `string` (at-uri) | Yes | AT-URI of the item record. |
| `list` | `string` (at-uri) | Yes | AT-URI of the list record. |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the item was added to the list. |

## Raw Schema

```json
{
  "id": "blue.registry.listItem",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "list",
          "item",
          "createdAt"
        ],
        "properties": {
          "item": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the item record."
          },
          "list": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the list record."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the item was added to the list."
          }
        }
      },
      "description": "A join record linking an item to a list."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Associates an item with a list. Enables many-to-many relationships between lists and items."
}
```
