# tech.waow.doodl.moderation

> Published by [waow.tech](https://lexicon.garden/identity/did:plc:siv7zbedip4vcet4v67piibr)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:siv7zbedip4vcet4v67piibr/tech.waow.doodl.moderation)
- [Documentation](https://lexicon.garden/lexicon/did:plc:siv7zbedip4vcet4v67piibr/tech.waow.doodl.moderation/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:siv7zbedip4vcet4v67piibr/tech.waow.doodl.moderation/examples)

## Definitions

### `tech.waow.doodl.moderation`

**Type**: `record`

doodl's operator moderation list (singleton 'self', on the doodl operator account). Drawings whose AT-URI is listed in `hidden` are dropped from doodl's explore, share pages, and remix surfaces by every doodl client. This cannot remove the record from the author's PDS — it only tells doodl to stop surfacing it.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `hidden` | `array` | Yes | Drawings to hide. |
| `updatedAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "tech.waow.doodl.moderation",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "hidden",
          "updatedAt"
        ],
        "properties": {
          "hidden": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "uri"
              ],
              "properties": {
                "at": {
                  "type": "string",
                  "format": "datetime",
                  "description": "Optional time it was hidden."
                },
                "uri": {
                  "type": "string",
                  "format": "at-uri",
                  "description": "AT-URI of the drawing to hide (at://<did>/tech.waow.doodl.drawing/<rkey>)."
                },
                "reason": {
                  "type": "string",
                  "maxLength": 1000,
                  "description": "Optional internal note on why it was hidden."
                }
              }
            },
            "description": "Drawings to hide."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "doodl's operator moderation list (singleton 'self', on the doodl operator account). Drawings whose AT-URI is listed in `hidden` are dropped from doodl's explore, share pages, and remix surfaces by every doodl client. This cannot remove the record from the author's PDS — it only tells doodl to stop surfacing it."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
