# community.gifthood.replygate

> Published by [gifthood.community](https://lexicon.garden/identity/did:plc:7prvtl4j6wsfmkrfrnwknuxj)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7prvtl4j6wsfmkrfrnwknuxj/community.gifthood.replygate)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7prvtl4j6wsfmkrfrnwknuxj/community.gifthood.replygate/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7prvtl4j6wsfmkrfrnwknuxj/community.gifthood.replygate/examples)

## Definitions

### `community.gifthood.replygate`

**Type**: `record`

The listing owner's moderation of notes on their own listing, bsky-threadgate style: the record key MUST match the listing's record key. hiddenReplies drop from default views (view policy, not deletion — the note survives in its author's repo; reports remain the violation path). Future allow/close rules are additive fields here.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `listing` | `ref` → `com.atproto.repo.strongRef` | Yes | Strong reference to the owner's own listing. Belt for the matching-rkey suspenders; indexers verify both. |
| `createdAt` | `string` (datetime) | Yes |  |
| `hiddenReplies` | `array` | No | AT-URIs of community.gifthood.reply records hidden from default views on this listing. |

## Raw Schema

```json
{
  "id": "community.gifthood.replygate",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "listing",
          "createdAt"
        ],
        "properties": {
          "listing": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Strong reference to the owner's own listing. Belt for the matching-rkey suspenders; indexers verify both."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "hiddenReplies": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            },
            "maxLength": 300,
            "description": "AT-URIs of community.gifthood.reply records hidden from default views on this listing."
          }
        }
      },
      "description": "The listing owner's moderation of notes on their own listing, bsky-threadgate style: the record key MUST match the listing's record key. hiddenReplies drop from default views (view policy, not deletion — the note survives in its author's repo; reports remain the violation path). Future allow/close rules are additive fields here."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
