NIP-72 ====== Moderated Communities (Reddit Style) ------------------------------------ `draft` `optional` The goal of this NIP is to create moderator-approved public communities around a topic. It defines the replaceable event `kind:34550` to define the community and the current list of moderators/administrators. Users that want to post into the community, simply tag any Nostr event with the community's `a` tag. Moderators issue an approval event `kind:4550` that links the community with the new post. # Community Definition `kind:34550` SHOULD include any field that helps define the community and the set of moderators. `relay` tags MAY be used to describe the preferred relay to download requests and approvals. ```json { "kind": 34550, "tags": [ ["d", ""], ["description", ""], ["image", "", "x"], //.. other tags relevant to defining the community // moderators ["p", "<32-bytes hex of a pubkey1>", "", "moderator"], ["p", "<32-bytes hex of a pubkey2>", "", "moderator"], ["p", "<32-bytes hex of a pubkey3>", "", "moderator"], // relays used by the community (w/optional marker) ["relay", "", "author"], ["relay", "", "requests"], ["relay", "", "approvals"], ["relay", ""] ], ... } ``` # New Post Request A "post request" is an event that can be published by anyone with the intention to be displayed inside a community. Moderators will be notified of this request and decide about approving it or not. Only after approval these posts will be displayed inside the communities. Event kinds defined in other NIPs can be supported inside communities, but here we defined kind translations for them such that they don't get confused with events published outside communities. | Community-scoped Kind | Description | Original Kind | Original NIP | | --- | --- | --- | --- | | 11 | Community post | 1 | 1 | | 10500 | Community-scoped user metadata | 0 | 1 | | 10501 | Community-scoped follow list | 3 | 2 | | 4548 | Community file metadata | 1063 | 94 | | 30500 | Community long-form article | 23 | 23 | So, for example, in order to publish a "text note" (`kind:1`) inside a community one must use the `kind:11` instead. ```json { "kind": 11, "tags": [ ["a", "34550::", ""], ], "content": "hello world", ... } ``` # Post Approval by moderators The post-approval event MUST include `a` tags of the communities the moderator is posting into (one or more), the `e` tag of the post and `p` tag of the author of the post (for approval notifications). The event SHOULD also include the stringified `post request` event inside the `.content` ([NIP-18-style](18.md)) and a `k` tag with the original post's event kind to allow filtering of approved posts by kind. ```json { "pubkey": "<32-bytes lowercase hex-encoded public key of the event creator>", "kind": 4550, "tags": [ ["a", "34550::", ""], ["e", "", ""], ["p", "", ""], ["k", ""] ], "content": "", ... } ``` It's recommended that multiple moderators approve posts to avoid deleting them from the community when a moderator is removed from the owner's list. In case the full list of moderators must be rotated, the new moderator set must sign new approvals for posts in the past or the community will restart. The owner can also periodically copy and re-sign of each moderator's approval events to make sure posts don't disappear with moderators. Post Approvals of replaceable events can be created in three ways: (i) by tagging the replaceable event as an `e` tag if moderators want to approve each individual change to the repleceable event; (ii) by tagging the replaceable event as an `a` tag if the moderator authorizes the replaceable event author to make changes without additional approvals and (iii) by tagging the replaceable event with both its `e` and `a` tag which empowers clients to display the original and updated versions of the event, with appropriate remarks in the UI. Since relays are instructed to delete old versions of a replaceable event, the `.content` of an `e`-approval MUST have the specific version of the event or Clients might not be able to find that version of the content anywhere. Clients SHOULD evaluate any non-`34550:*` `a` tag as posts to be included in all `34550:*` `a` tags. # Displaying Community clients SHOULD display posts that have been approved by at least 1 moderator or by the community owner. The following filter displays the approved posts. ```json [ "REQ", "_", { "authors": ["", "", "", "", ...], "kinds": [4550], "#a": ["34550::"], } ] ``` Clients MAY hide approvals by blocked moderators at the user's request.