Appearance
Kind 12: Group Thread Reply
Overview
Kind 12 events are replies to threaded discussions within relay-based groups. It extends the group chat functionality by supporting nested conversation threads similar to forum discussions. This kind is part of the broader relay-based groups ecosystem defined in NIP-29, although it has been marked as deprecated in favor of newer approaches to group interactions.
Specification
Property | Value |
---|---|
Kind Number | 12 |
Event Range | Regular |
Defined in | NIP-29 |
Status | Deprecated |
Content Format
The content
field contains the text of the reply to a thread within a group. This can be plain text, though some clients may support markdown or other formatting features.
Schema
json
"content": "This is my reply to the thread in this group discussion."
Tags
Tag Name | Description | Format | Required |
---|---|---|---|
h | Group identifier | ["h", "<group-id>"] | Yes |
e | Root thread event | ["e", "<thread-event-id>", "<relay-url>", "root"] | Yes |
e | Parent reply (if reply to a reply) | ["e", "<parent-reply-id>", "<relay-url>", "reply"] | Conditional |
previous | Timeline references | ["previous", "<event-id-prefix>"] | Recommended |
Client Behavior
Clients should:
- Display threaded replies in a hierarchical or nested format that makes the thread structure clear
- Include appropriate tags when creating thread replies, marking the root thread with the
"root"
marker - If replying to another reply, include both the root thread reference and the parent reply reference
- Include timeline references as recommended in NIP-29 (at least 3 references)
- Check timeline references to validate event consistency
Relay Behavior
Relays should:
- Verify the sender has permission to post in the group
- Reject events with timeline references to events not in their database
- Apply group-specific moderation rules
- Prevent late publication of events with old timestamps
Use Cases
- Structured conversations within groups
- Extended discussions on specific topics
- Forum-like functionality within Nostr groups
- In-depth conversations that benefit from thread organization
Example
json
{
"id": "0187b5ef93285b37c33eaa3b6ed0dfdfb36591b85cee55db7ac53625a5e67f48",
"pubkey": "15c21a0ba91a1294b7d644c987e30e8f47997e3eee94bb058b0fb187dc9c3a2c",
"created_at": 1671304521,
"kind": 12,
"tags": [
["h", "pizza-lovers-123"],
["e", "a1a2a3a4b1b2b3b4c1c2c3c4d1d2d3d4e1e2e3e4f1f2f3f4aaabbbcccddd", "wss://groups.example.com", "root"],
["e", "d5d5e5e5f5f5a5a5b5b5c5c5d5d5e5e5f5f5a6a6b6b6c6c6d6d6e6e6f6f6", "wss://groups.example.com", "reply"],
["previous", "3a5f861b"],
["previous", "c2a91e7d"],
["previous", "08fe437c"]
],
"content": "I disagree with the previous comment. Deep dish pizza should definitely be considered 'real' pizza!",
"sig": "3045022100a5c0b916fac3c73f572d7f3fade321bbce2db08a159c72c8ffdec9c3e3ebd51502203d2ba8d283ed5ca1573d03bc66e381804b77b83d216825ffafc9dc59b132f481"
}
References
- NIP-29: Relay-based Groups
- NIP-10: Text Notes and Threads (for general threading concepts)
Related Kinds
- Kind 9: Chat Message - Simple chat messages
- Kind 10: Group Chat Threaded Reply - Simpler threaded replies in groups
- Kind 11: Thread - General purpose thread roots
- Kind 40-42: Public Chat - Structured public chat system
Notes
- This kind is marked as deprecated in NIP-29 in favor of newer group messaging approaches.
- The
previous
tag references are used to prevent out-of-context message distribution. - The threading structure follows similar principles to regular threaded conversations (NIP-10), but adapted for the group context.
- Due to its deprecated status, not all clients may support this kind.