From 5c9bf68d1eb9bf8727d66283069f3f8488c5819a Mon Sep 17 00:00:00 2001 From: William Casarin <jb55@jb55.com> Date: Tue, 31 Jan 2023 06:42:11 -0800 Subject: [PATCH] Update 56.md Co-authored-by: Leo Wandersleb <leo@leowandersleb.de> --- 56.md | 44 +++++++++++++++++++++++++++----------------- 1 file changed, 27 insertions(+), 17 deletions(-) diff --git a/56.md b/56.md index 00c891a6..d91c78eb 100644 --- a/56.md +++ b/56.md @@ -30,27 +30,37 @@ A `report` tag MUST be included which consists of the following report types: Some report tags only make sense for profile reports, such as `impersonation` -Example code +Example events +-------------- -```swift -enum ReportType: String { - case explicit - case illegal - case spam - case impersonation +```json +{ + "kind": 1984, + "tags": [ + [ "p", <pubkey>, "explicit"] + ], + "content": "", + ... } -func create_report_tags(target: ReportTarget, type: ReportType) -> [[String]] { - var tags: [[String]] - switch target { - case .user(let pubkey): - tags = [["p", pubkey]] - case .note(let notet): - tags = [["e", notet.note_id], ["p", notet.pubkey]] - } +{ + "kind": 1984, + "tags": [ + [ "e", <eventId>, "illegal"], + [ "p", <pubkey>] + ], + "content": "He's insulting the king!", + ... +} - tags.append(["report", type.rawValue]) - return tags +{ + "kind": 1984, + "tags": [ + [ "p", <impersonator pubkey>, "impersonation"], + [ "p", <victim pubkey>] + ], + "content": "Profile is imitating #[1]", + ... } ```