# farm.lore.remove

> Published by [lore.farm](https://lexicon.garden/identity/did:plc:pfyyashnoatlhgwwfq7ut64l)

✓ This is the authoritative definition for this NSID.

## Description

A request to remove content from a world.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:pfyyashnoatlhgwwfq7ut64l/farm.lore.remove)
- [Documentation](https://lexicon.garden/lexicon/did:plc:pfyyashnoatlhgwwfq7ut64l/farm.lore.remove/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:pfyyashnoatlhgwwfq7ut64l/farm.lore.remove/examples)

## Definitions

### `farm.lore.remove`

**Type**: `record`

Requests removal of a piece of content from a world's lore or canon. Only curators may create removal records.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `world` | `string` | Yes | The world domain the content is being removed from. |
| `reason` | `string` | No | Optional reason for the removal. |
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | Reference to the content being removed. |
| `createdAt` | `string` (datetime) | Yes | Timestamp of the removal request. |

## Examples

The following examples demonstrate valid data for this lexicon. [View all examples](https://lexicon.garden/lexicon/did:plc:pfyyashnoatlhgwwfq7ut64l/farm.lore.remove/examples)

### Example 1 (`#main`)

**Description**: Removing content from a world.

```json
{
  "$type": "farm.lore.remove",
  "world": "reverie.house",
  "reason": "No longer aligns with the world's evolving narrative.",
  "subject": {
    "cid": "bafyreibtnoogvsegearbdsyjldnbqat5ecsvh4zofnemfq6twmzv7zmfvu",
    "uri": "at://did:plc:zwzau5z5p5ne4avjcrztr5mz/app.bsky.feed.post/3m6fe3h5ao22p"
  },
  "createdAt": "2026-03-23T12:00:00.000Z"
}
```

## Raw Schema

```json
{
  "id": "farm.lore.remove",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "world",
          "createdAt"
        ],
        "properties": {
          "world": {
            "type": "string",
            "maxLength": 253,
            "description": "The world domain the content is being removed from."
          },
          "reason": {
            "type": "string",
            "maxLength": 1024,
            "description": "Optional reason for the removal."
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Reference to the content being removed."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp of the removal request."
          }
        }
      },
      "description": "Requests removal of a piece of content from a world's lore or canon. Only curators may create removal records."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A request to remove content from a world."
}
```
