From d1e2e58dbf63be5185405938f8859c2e08a5091f Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 25 Apr 2024 09:38:45 -0400 Subject: [PATCH] Adds recommendations, endorsements and changes from tags to nip-32 labels for skills --- 55.md | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/55.md b/55.md index 5ee24fa9..6be1b1a9 100644 --- a/55.md +++ b/55.md @@ -59,11 +59,42 @@ This NIP defines event kind `11000` as the pubkey's resume. Life acomplishments "", "", // blank if currently working there. "" ], - ["t", ""], + ["L", ""], + ["l", "", ""], ], "content": "", //... } ``` -All tags can happen more than once. \ No newline at end of file +All tags can happen more than once. + +## Skill Endorsements + +NIP-32 labels SHOULD be used to endorse the resume's skills. The `a` tag MUST be added to link to the resume. + +```json +{ + "kind": 1985, + "tags": [ + ["L", ""], + ["l", "", ""], + ["a", "11000::"] + ], + ... +} +``` + +## Recommendations + +Kind `518` MUST be used to write a recommendation into a resume. The `a` tag MUST be added to link to the resume. + +```json +{ + "kind": 518, + "tags": [ + ["a", "11000::"] + ], + "content": "" +} +``` \ No newline at end of file