2024-11-22 15:14:11 -05:00
NIP-62
======
2024-11-22 19:23:48 -05:00
Curated Publication
2024-11-22 15:14:11 -05:00
----------
`draft` `optional`
2024-11-22 19:23:48 -05:00
This NIP defines the minimum specification for curated publication - ordered, optionally-hierarchical assemblies of nostr events. Collections provide a standard way to organize and present related content, similar to how books organize chapters or journals organize articles.
2024-11-22 15:14:11 -05:00
## Event Kinds
This NIP defines two primary event kinds:
2024-11-22 19:23:48 -05:00
- `30040` : Publication Index
- `30041` : Publication Content
2024-11-22 15:14:11 -05:00
2024-11-22 19:23:48 -05:00
## kind 30040: Publication Index
2024-11-22 15:14:11 -05:00
2024-11-22 19:23:48 -05:00
A publication index defines the structure and metadata of a collection. It serves as a table of contents that references the actual content sections.
2024-11-22 15:14:11 -05:00
### Requirements
- The `content` field MUST be empty
- MUST include a `title` tag containing the full title of the collection
- MUST be uniquely identifiable by the combination of:
- `d` tag
- `pubkey`
2024-11-22 16:14:06 -05:00
- `kind`
2024-11-27 15:19:39 -05:00
- MUST include `a` tags listing the events in desired display order.
- Format: `["a", "kind:pubkey:dtag", "relay hint", "event id"]`
- Optional event ID field enables version tracking while maintaining updateable references
2024-11-22 15:14:11 -05:00
- Referenced events SHOULD be kind 30041 sections or nested kind 30040 indices
- Additional event kinds MAY be supported
2024-11-27 15:19:39 -05:00
- MUST include a `auto-update` tag specifying update behavior:
- Format: `["auto-update", "<yes|ask|no>"]`
- Controls whether clients should automatically update to newer versions
2024-11-22 15:14:11 -05:00
- For derivative works:
- MUST include a `p` tag identifying the original author
- MUST include an `E` tag referencing the original event immediately after the `p` tag
### Example Index
```json
{
"id": "< event_id > ",
"pubkey": "< event_originator_pubkey > ",
"created_at": 1725087283,
"kind": 30040,
"tags": [
["d", "aesop's-fables-by-aesop"],
["title", "Aesop's Fables"],
["author", "Aesop"],
["i", "isbn:9780765382030"],
2024-11-22 19:44:08 -05:00
["t", "fables"],
["t", "classical"],
["t", "literature"],
2024-11-22 15:14:11 -05:00
["published_on", "2003-05-03"],
["published_by", "public domain"],
["image", "https://imageserver.com/piclink.jpg"],
["summary", "Collection of selected fables from the ancient Greek philosopher, known as Aesop."],
2024-11-27 15:19:39 -05:00
["a", "< id > ", "< relay_url > ", "< pubkey > "],
["a", "< id > ", "< relay_url > ", "< pubkey > "],
["auto-update", "< yes | ask | no > "],
2024-11-22 15:14:11 -05:00
["p", "< pubkey_0 > "],
["E", "< original_event_id > ", "< relay_url > ", "< pubkey > "]
],
"sig": "< event_signature > "
}
```
2024-11-22 19:23:48 -05:00
## 30041: Publication Content
2024-11-22 15:14:11 -05:00
2024-11-22 19:23:48 -05:00
Also known as sections, zettels, episodes, or chapters contain the actual content that makes up a collection.
2024-11-22 15:14:11 -05:00
### Requirements
- MUST include a `d` tag
- MUST include a `title` tag describing the section (e.g., "Introduction", "Chapter 1", etc.)
- The `content` field:
- MUST contain text meant for display to the end user
- MAY contain AsciiDoc markup
- MAY contain wikilinks (denoted by double brackets)
### Example Section
```json
{
"id": "< event_id > ",
"pubkey": "8ae74c618a4713f32129...",
"created_at": 1708083476,
"kind": 30041,
"tags": [
["title", "The Farmer and The Snake"],
["d", "aesop's-fables-by-aesop-the-farmer-and-the-snake"],
2024-11-22 16:14:06 -05:00
["wikilink", "fable", "ad9dad8c4006d781d94ae001884b6987caa2a6852f3f43a571ca6838d0ced3af", "wss://thecitadel.nostr1.com"]
2024-11-22 15:14:11 -05:00
],
"content": "== The Farmer and The Snake\nA [[fable]], by Aesop.\nONE WINTER a Farmer found a Snake stiff and frozen with cold. He had compassion on it, and taking it up, placed it in his bosom. The Snake was quickly revived by the warmth, and resuming its natural instincts, bit its benefactor, inflicting on him a mortal wound. 'Oh,' cried the Farmer with his last breath, 'I am rightly served for pitying a scoundrel.'\nThe greatest kindness will not bind the ungrateful.",
"sig": "49cab8c75fb35cec71d07258..."
}
```
## Extensions
Collections are flexible and can be extended for different types of content. Examples include:
- Books
- Academic journals
- Course materials
- Documentation
Additional tags relevant to the specific content type MAY be included in both index and section events.