# blue.registry.itemRemoval

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

✓ This is the authoritative definition for this NSID.

## Description

A record indicating the list owner has removed an item from their list.

## Links

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

## Definitions

### `blue.registry.itemRemoval`

**Type**: `record`

Removes an item from a list. Stored in the list owner's repo.

**Key**: `tid`

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

## Raw Schema

```json
{
  "id": "blue.registry.itemRemoval",
  "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 being removed."
          },
          "list": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the list."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the item was removed."
          }
        }
      },
      "description": "Removes an item from a list. Stored in the list owner's repo."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A record indicating the list owner has removed an item from their list."
}
```
