add new tags to example

This commit is contained in:
dskvr 2023-02-11 14:12:09 +01:00
parent 3c2f2c6997
commit a86f7dcaae

8
59.md
View File

@ -57,12 +57,12 @@ The tags should be used to represent the Relay's abilities and meta at a point i
9. `"events" == tagEvents[0]` Number of events on relay. `tagEvents[]` **may** be included in the `event.tags[]` array. `tagEvents[1]` **must** be string. There **should** only be **one (1)** `tagEvents[]` 9. `"events" == tagEvents[0]` Number of events on relay. `tagEvents[]` **may** be included in the `event.tags[]` array. `tagEvents[1]` **must** be string. There **should** only be **one (1)** `tagEvents[]`
```json ```json
["events", "502341"], //tagIp[] ["events", "502341"], //tagEvents[]
``` ```
10. `"users" == tagUsers[0]` Relay IP. `tagUsers[]` **may** be included in the `event.tags[]` array. `tagUsers[1]` **must** be string. There **should** be no more than **one (1)** `tagUsers[]` 10. `"users" == tagUsers[0]` Relay IP. `tagUsers[]` **may** be included in the `event.tags[]` array. `tagUsers[1]` **must** be string. There **should** be no more than **one (1)** `tagUsers[]`
```json ```json
["users","37482"] ["users","37482"] //tagUsers[]
``` ```
Example with Minimum Requirements: Example with Minimum Requirements:
@ -97,7 +97,9 @@ Example with all Tags:
["open","true"], ["open","true"],
["read","true"], ["read","true"],
["write","false"], ["write","false"],
["ssl","true"] ["ssl","true"],
["events", "502341"],
["users","37482"],
] ]
} }
``` ```