Note: You are viewing the development version of Schema.org. See how we work for more details.

workTranslation

A Schema.org Property
Defined in the bib section.
A work that is a translation of the content of this work. E.g. 西遊記 has an English workTranslation “Journey to the West”, a German workTranslation “Monkeys Pilgerfahrt” and a Vietnamese translation Tây du ký bình khảo.

Inverse-property: translationOfWork


Values expected to be one of these types

Used on these types

Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. A CreativeWork and its translation.

  2. <div>
  3. <div>
  4.         <h1>Rouge et le noir</h1>
  5.     <div>Author: Stendhal</div>
  6.         <div>Language: French</div>
  7.         <div>Has Translation: Red and Black : A New Translation, Backgrounds and Sources, Criticism</div>
  8. </div>

  9. <div>
  10.     <h1>Red and Black : A New Translation, Backgrounds and Sources, Criticism</h1>
  11.     <div>Author: Stendhal</div>
  12.         <div>Language: English</div>
  13.         <div>Subject: Psychological fiction, French</div>
  14.         <div>Translation of: Rouge et le noir</div>
  15.         <div>Translator: Robert Martin Adams</div>
  16. </div>
  17. </div>
Example encoded as Microdata embedded in HTML.
  1. <div>
  2. <div itemscope itemtype="https://schema.org/Book" itemid="http://worldcat.org/entity/work/id/2292573321">
  3.         <h1><span itemprop="name">Rouge et le noir</span></h1>
  4.     <div>Author: <span itemprop="author" itemscope itemtype="https://schema.org/Person" itemid="http://viaf.org/viaf/17823">Stendhal</span></div>
  5.         <div>Language: <meta itemprop="inLanguage" content="fr" />French</div>
  6.         <div>Has Translation: <span itemprop="workTranslation" itemscope itemtype="https://schema.org/CreativeWork" itemid="http://worldcat.org/entity/work/id/460647">Red and Black : A New Translation, Backgrounds and Sources, Criticism</span></div>
  7. </div>
  8. <div itemscope itemtype="https://schema.org/Book" itemid="http://worldcat.org/entity/work/id/460647">
  9.     <h1><span itemprop="name">Red and Black : A New Translation, Backgrounds and Sources, Criticism</span></h1>
  10.     <div>Author: <span itemprop="author" itemscope itemtype="https://schema.org/Person" itemid="http://viaf.org/viaf/17823">Stendhal</span></div>
  11.         <div>Language: <meta itemprop="inLanguage" content="en" />English</div>
  12.         <div>Subject: <span itemprop="about">Psychological fiction, French</span></div>
  13.         <div>Translation of: <span itemprop="translationOfWork" itemscope itemtype="https://schema.org/CreativeWork" itemid="http://worldcat.org/entity/work/id/2292573321">Rouge et le noir</span></div>
  14.         <div>Translator: <span itemprop="translator" itemscope itemtype="https://schema.org/Person" itemid="http://viaf.org/viaf/8453420">Robert Martin Adams</span></div>
  15. </div>
  16. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/">
  2. <div typeof="Book" resource="http://worldcat.org/entity/work/id/2292573321">
  3.         <h1><span property="name">Rouge et le noir</span></h1>
  4.     <div>Author: <span property="author" typeof="Person" resource="http://viaf.org/viaf/17823">Stendhal</span></div>
  5.         <div>Language: <span property="inLanguage" content="fr">French</span></div>
  6.         <div>Has Translation: <span property="workTranslation" typeof="CreativeWork" resource="http://worldcat.org/entity/work/id/460647">Red and Black : A New Translation, Backgrounds and Sources, Criticism</span></div>
  7. </div>
  8. <div typeof="Book" resource="http://worldcat.org/entity/work/id/460647">
  9.     <h1><span property="name">Red and Black : A New Translation, Backgrounds and Sources, Criticism</span></h1>
  10.     <div>Author: <span property="author" typeof="Person" resource="http://viaf.org/viaf/17823">Stendhal</span></div>
  11.         <div>Language: <span property="inLanguage" content="en">English</span></div>
  12.         <div>Subject: <span property="about">Psychological fiction, French</span></div>
  13.         <div>Translation of: <span property="translationOfWork" typeof="CreativeWork" resource="http://worldcat.org/entity/work/id/2292573321">Rouge et le noir</span></div>
  14.         <div>Translator: <span property="translator" typeof="Person" resource="http://viaf.org/viaf/8453420">Robert Martin Adams</span></div>
  15. </div>
  16. </div>
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2.     {
  3.         "@context": "https://schema.org/",
  4.         "@graph": [
  5.             {
  6.                 "@id": "http://worldcat.org/entity/work/id/2292573321",
  7.                 "@type": "Book",
  8.                 "author": {
  9.                     "@id": "http://viaf.org/viaf/17823"
  10.                 },
  11.                 "inLanguage": "fr",
  12.                 "name": "Rouge et le noir",
  13.                 "workTranslation": {
  14.                     "@type": "Book",
  15.                     "@id": "http://worldcat.org/entity/work/id/460647"
  16.                 }
  17.             },
  18.             {
  19.                 "@id": "http://worldcat.org/entity/work/id/460647",
  20.                 "@type": "Book",
  21.                 "about": "Psychological fiction, French",
  22.                 "author": {
  23.                     "@id": "http://viaf.org/viaf/17823"
  24.                 },
  25.                 "inLanguage": "en",
  26.                 "name": "Red and Black : A New Translation, Backgrounds and Sources, Criticism",
  27.                 "translationOfWork": {
  28.                     "@id": "http://worldcat.org/entity/work/id/2292573321"
  29.                 },
  30.                 "translator": {
  31.                     "@id": "http://viaf.org/viaf/8453420"
  32.                 }
  33.             }
  34.         ]
  35.     }
  36. </script>
Structured representation of the JSON-LD example.