mirror of
https://github.com/nostr-protocol/nips.git
synced 2025-12-14 10:58:51 +00:00
23 lines
378 B
Markdown
23 lines
378 B
Markdown
NIP-F3
|
|
======
|
|
|
|
Scrobbling
|
|
----------
|
|
|
|
`draft` `optional`
|
|
|
|
This NIP defines `kind:1073` as a _scrobble_ event. It has the following format:
|
|
|
|
```yaml
|
|
{
|
|
"kind": 1073,
|
|
"tags": [
|
|
["i", "isrc:<code>"],
|
|
["title", "<song title>"],
|
|
["album", "<song album>", "<optional variant>"],
|
|
["artist", "<musician or band>", "<optional variant>"]
|
|
]
|
|
// other fields...
|
|
}
|
|
```
|