titleEIDR
A Schema.org PropertyThis term is proposed for full integration into Schema.org, pending implementation feedback and adoption from applications and websites.
- Canonical URL: https://schema.org/titleEIDR
- Check for open issues.
For example, the motion picture known as "Ghostbusters" has a titleEIDR of "10.5240/7EC7-228A-510A-053E-CBB8-J". This title (or work) may have several variants, which EIDR calls "edits". See editEIDR.
Since schema.org types like Movie and TVEpisode can be used for both works and their multiple expressions, it is possible to use titleEIDR alone (for a general description), or alongside editEIDR for a more edit-specific description.
Values expected to be one of these types |
---|
Text |
Used on these types |
---|
Movie |
Source
https://github.com/schemaorg/schemaorg/issues/2469
<!-- Using editEIDR and titleEIDR identifiers for generic titles and specific expressions of a film or TV work -->
<!-- JSONLD only example -->
<!-- JSONLD only example -->
<script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Movie", "name": "The Hitchhiker's Guide to the Galaxy", "disambiguatingDescription": "2005 British-American comic science fiction film directed by Garth Jennings", "sameAs": "https://www.wikidata.org/wiki/Q836821", "titleEIDR": "10.5240/B752-5B47-DBBE-E5D4-5A3F-N", "workExample": [ { "@type": "Movie", "editEIDR": "10.5240/0196-4177-FF62-A346-D0F6-Z", "disambiguatingDescription": "VUDU version" }, { "@type": "Movie", "editEIDR": "10.5240/043D-15C4-838D-80F4-E96A-G", "disambiguatingDescription": "Censored for India" }, { "@type": "Movie", "editEIDR": "10.5240/7BAD-7B81-396E-27EF-360F-N", "disambiguatingDescription": "Theatrical" }, { "@type": "Movie", "editEIDR": "0.5240/1DC4-B3E4-ECEB-7197-BF18-B", "disambiguatingDescription": "Broadcast" } ], "isBasedOn": { "@type": "Book", "name": "The Hitchhiker's Guide to the Galaxy", "isbn": "0-330-25864-8", "sameAs": "https://www.wikidata.org/wiki/Q3107329", "author": { "@type": "Person", "name": "Douglas Adams", "sameAs": "https://www.wikidata.org/wiki/Q42" } } } </script>
<!-- Using editEIDR and titleEIDR identifiers for a specific edition of a movie or TV work. An exampleOfWork described elsewhere -->
<!-- JSONLD only example -->
<!-- JSONLD only example -->
<script type="application/ld+json"> { "@type": "Movie", "name": "The Hitchhiker's Guide to the Galaxy", "titleEIDR": "10.5240/B752-5B47-DBBE-E5D4-5A3F-N", "editEIDR": "10.5240/0196-4177-FF62-A346-D0F6-Z", "disambiguatingDescription": "VUDU version", "exampleOfWork": { "@type": "Movie", "sameAs": "https://www.wikidata.org/wiki/Q836821" } } </script>