diff options
| author | Oscar Merry <oscardmerry@gmail.com> | 2024-05-09 12:27:43 +0100 |
|---|---|---|
| committer | Oscar Merry <oscardmerry@gmail.com> | 2024-05-09 12:27:43 +0100 |
| commit | b7bb46ac038bc5411f55bfa7646259da203c13c3 (patch) | |
| tree | 794cce2a1956efa1996dbe5f08ededc20826275e | |
| parent | 280eb498e0ac56b8f9356c1b7a88cc8b31579801 (diff) | |
Use ISANs for Movies, Include Actual Examples
| -rw-r--r-- | XX.md | 14 |
1 files changed, 9 insertions, 5 deletions
| @@ -10,7 +10,7 @@ There are certain established global content identifiers that would be useful to | |||
| 10 | 10 | ||
| 11 | - Book [ISBNs](https://en.wikipedia.org/wiki/ISBN) | 11 | - Book [ISBNs](https://en.wikipedia.org/wiki/ISBN) |
| 12 | - Podcast [GUIDs](https://podcastnamespace.org/tag/guid) | 12 | - Podcast [GUIDs](https://podcastnamespace.org/tag/guid) |
| 13 | - Movie [EIDRs](https://www.eidr.org) | 13 | - Movie [ISANs](https://en.wikipedia.org/wiki/International_Standard_Audiovisual_Number) |
| 14 | 14 | ||
| 15 | Since the `i` tag is already used for similar references in kind-0 metadata events it makes sense to use it for these content ids as well. | 15 | Since the `i` tag is already used for similar references in kind-0 metadata events it makes sense to use it for these content ids as well. |
| 16 | 16 | ||
| @@ -19,13 +19,17 @@ Since the `i` tag is already used for similar references in kind-0 metadata even | |||
| 19 | 19 | ||
| 20 | ### Books: | 20 | ### Books: |
| 21 | 21 | ||
| 22 | - Book ISBN: `["i", "book:isbn:123"]` | 22 | - Book ISBN: `["i", "book:isbn:9780765382030"]` - https://isbnsearch.org/isbn/9780765382030 |
| 23 | |||
| 24 | Book ISBNs MUST be referenced _**without hyphens**_ as many book search APIs return the ISBNs without hyphens. Removing hypens from ISBNs is trivial, whereas adding the hyphens back in is non-trivial requiring a library. | ||
| 23 | 25 | ||
| 24 | ### Podcasts: | 26 | ### Podcasts: |
| 25 | 27 | ||
| 26 | - Podcast Feed GUID: `["i", "podcast:guid:123"]` | 28 | - Podcast RSS Feed GUID: `["i", "podcast:guid:c90e609a-df1e-596a-bd5e-57bcc8aad6cc"]` - https://podcastindex.org/podcast/c90e609a-df1e-596a-bd5e-57bcc8aad6cc |
| 27 | - Podcast Item GUID: `["i", "podcast:item:guid:123"]` | 29 | - Podcast RSS Item GUID: `["i", "podcast:item:guid:d98d189b-dc7b-45b1-8720-d4b98690f31f"]` |
| 28 | 30 | ||
| 29 | ### Movies: | 31 | ### Movies: |
| 30 | 32 | ||
| 31 | - Movie EIDR: `["i", "movie:eidr:123"]` \ No newline at end of file | 33 | - Movie ISAN: `["i", "movie:isan:0000-0000-401A-0000-7"]` - https://web.isan.org/public/en/isan/0000-0000-401A-0000-7 |
| 34 | |||
| 35 | Movie ISANs SHOULD be referenced _**without the version part**_ as the versions / edits of movies are not relevant. More info on ISAN parts here - https://support.isan.org/hc/en-us/articles/360002783131-Records-relations-and-hierarchies-in-the-ISAN-Registry \ No newline at end of file | ||