remove mentions to uuids (#1920)

This commit is contained in:
fiatjaf_ 2025-05-13 08:01:06 -03:00 committed by GitHub
parent 873afc5fb8
commit 7555a93f90
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 6 deletions

12
52.md
View File

@ -25,7 +25,7 @@ The format uses an _addressable event_ of `kind:31922`.
The `.content` of these events should be a detailed description of the calendar event. It is required but can be an empty string. The `.content` of these events should be a detailed description of the calendar event. It is required but can be an empty string.
The list of tags are as follows: The list of tags are as follows:
* `d` (required) universally unique identifier (UUID). Generated by the client creating the calendar event. * `d` (required) a short unique string identifier. Generated by the client creating the calendar event.
* `title` (required) title of the calendar event * `title` (required) title of the calendar event
* `start` (required) inclusive start date in ISO 8601 format (YYYY-MM-DD). Must be less than `end`, if it exists. * `start` (required) inclusive start date in ISO 8601 format (YYYY-MM-DD). Must be less than `end`, if it exists.
* `end` (optional) exclusive end date in ISO 8601 format (YYYY-MM-DD). If omitted, the calendar event ends on the same date as `start`. * `end` (optional) exclusive end date in ISO 8601 format (YYYY-MM-DD). If omitted, the calendar event ends on the same date as `start`.
@ -46,7 +46,7 @@ The following tags are deprecated:
"kind": 31922, "kind": 31922,
"content": "<description of calendar event>", "content": "<description of calendar event>",
"tags": [ "tags": [
["d", "<UUID>"], ["d", "<random-identifier>"],
["title", "<title of calendar event>"], ["title", "<title of calendar event>"],
@ -84,7 +84,7 @@ The format uses an _addressable event_ kind `31923`.
The `.content` of these events should be a detailed description of the calendar event. It is required but can be an empty string. The `.content` of these events should be a detailed description of the calendar event. It is required but can be an empty string.
The list of tags are as follows: The list of tags are as follows:
* `d` (required) universally unique identifier (UUID). Generated by the client creating the calendar event. * `d` (required) a short unique string identifier. Generated by the client creating the calendar event.
* `title` (required) title of the calendar event * `title` (required) title of the calendar event
* `start` (required) inclusive start Unix timestamp in seconds. Must be less than `end`, if it exists. * `start` (required) inclusive start Unix timestamp in seconds. Must be less than `end`, if it exists.
* `end` (optional) exclusive end Unix timestamp in seconds. If omitted, the calendar event ends instantaneously. * `end` (optional) exclusive end Unix timestamp in seconds. If omitted, the calendar event ends instantaneously.
@ -110,7 +110,7 @@ The following tags are deprecated:
"kind": 31923, "kind": 31923,
"content": "<description of calendar event>", "content": "<description of calendar event>",
"tags": [ "tags": [
["d", "<UUID>"], ["d", "<random-identifier>"],
["title", "<title of calendar event>"], ["title", "<title of calendar event>"],
["summary", "<brief description of the calendar event>"], ["summary", "<brief description of the calendar event>"],
@ -167,7 +167,7 @@ The format uses a custom replaceable list of kind `31924` with a list of tags as
"kind": 31924, "kind": 31924,
"content": "<description of calendar>", "content": "<description of calendar>",
"tags": [ "tags": [
["d", "<UUID>"], ["d", "<random-identifier>"],
["title", "<calendar title>"], ["title", "<calendar title>"],
["a", "<31922 or 31923>:<calendar event author pubkey>:<d-identifier of calendar event>", "<optional relay url>"], ["a", "<31922 or 31923>:<calendar event author pubkey>:<d-identifier of calendar event>", "<optional relay url>"],
["a", "<31922 or 31923>:<calendar event author pubkey>:<d-identifier of calendar event>", "<optional relay url>"] ["a", "<31922 or 31923>:<calendar event author pubkey>:<d-identifier of calendar event>", "<optional relay url>"]
@ -215,7 +215,7 @@ The list of tags are as follows:
"tags": [ "tags": [
["e", "<kind 31922 or 31923 event id", "<optional recommended relay URL>"] ["e", "<kind 31922 or 31923 event id", "<optional recommended relay URL>"]
["a", "<31922 or 31923>:<calendar event author pubkey>:<d-identifier of calendar event>", "<optional recommended relay URL>"], ["a", "<31922 or 31923>:<calendar event author pubkey>:<d-identifier of calendar event>", "<optional recommended relay URL>"],
["d", "<UUID>"], ["d", "<random-identifier>"],
["status", "<accepted/declined/tentative>"], ["status", "<accepted/declined/tentative>"],
["fb", "<free/busy>"], ["fb", "<free/busy>"],
["p", "<hex pubkey of kind 31922 or 31923 event>", "<optional recommended relay URL>"] ["p", "<hex pubkey of kind 31922 or 31923 event>", "<optional recommended relay URL>"]