formatting fixes

This commit is contained in:
Erik Brakke 2024-08-14 07:25:38 -06:00 committed by GitHub
parent da8fb5663f
commit d6c5772a9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

34
113.md
View File

@ -27,14 +27,14 @@ Activities MAY include an `r` tag, which will include a URL to the location wher
"kind": 30100, "kind": 30100,
"content": "<description-of-activity>", "content": "<description-of-activity>",
"tags": [ "tags": [
['title', 'Title of Activity'], ["title", "Title of Activity"],
['t', '<activity-type-from-nip>'] ["t", "<activity-type-from-nip>"]
['d', 'UUID generated by client'], ["d", "UUID generated by client"],
['r', 'url to download activity file'], ["r", "url to download activity file"],
['published_at', '<unix-timestamp>'], ["published_at", "<unix-timestamp>"],
['updated_at', '<unix-timestamp>'], ["updated_at", "<unix-timestamp>"],
['recorded_at', '<unix-timestamp>'] ["recorded_at", "<unix-timestamp>"]
['encrypted'] // Optional, activity file is encrypted ["encrypted"] // Optional, activity file is encrypted
], ],
} }
``` ```
@ -57,14 +57,14 @@ This NIP does not attempt to describe all the different summaries that users cou
kind: 30101, kind: 30101,
content: "JSON.stringify(summary)", content: "JSON.stringify(summary)",
tags: [ tags: [
['d', 'UUID generated by client'], ["d", "UUID generated by client"],
['r', '<UUID-of-activity>'], ["r", "<UUID-of-activity>"],
['t', 'general-summary'], ["t", "general-summary"],
['g', 'OPTIONAL geohash'], ["g", "OPTIONAL geohash"],
['unit', 'OPTIONAL imperial | metric'], ["unit", "OPTIONAL imperial | metric"],
['published_at', '<unix-timestamp>'], ["published_at", "<unix-timestamp>"],
['updated_at', '<unix-timestamp>'] ["updated_at", "<unix-timestamp>"]
['encrypted'] // Optional, summary content is encrypted ["encrypted"] // Optional, summary content is encrypted
], ],
} }
``` ```
@ -90,6 +90,7 @@ Examples:
If a user wishes to encrypt a summary or activity, they should use the [NIP-44](NIP-44.md) encryption schema to encrypt the content being uploaded. i.e. if an activity is `encrypted` and it includes a link to an activity file to download, that activity file is encrypted via NIP-44. If a user wishes to encrypt a summary or activity, they should use the [NIP-44](NIP-44.md) encryption schema to encrypt the content being uploaded. i.e. if an activity is `encrypted` and it includes a link to an activity file to download, that activity file is encrypted via NIP-44.
## Appendix A - Activity Types ## Appendix A - Activity Types
```
run run
trail-run trail-run
hike hike
@ -137,3 +138,4 @@ windsurf
wheelchair wheelchair
workout workout
yoga yoga
```