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

exampleOfWork

A Schema.org Property
A creative work that this work is an example/instance/realization/derivation of.

Inverse-property: workExample

Values expected to be one of these types
CreativeWork
Used on these types
CreativeWork

Acknowledgements

The W3C Schema Bib Extend (BibEx) group led the work to improve schema.org for bibliographic information, including terms for periodicals, articles and multi-volume works. The design was inspired in places (e.g. pageStart, pageEnd, pagination) by the Bibliographic Ontology, 'bibo'.


Examples

Example 1
Copied
Example notes or example HTML without markup.
<p>
    <em>The Fellowship of the Rings</em> was written by J.R.R Tolkien and
    was originally published in the United Kingdom in 1954 by George Allen &
    Unwin.
</p>
<p>
    The book has been republished many times, including editions by
    HarperCollins in 1974 (ISBN: 0007149212) and by Ballantine in 1984
    (ISBN: 0345296052).
</p>
<p>
    The book has also been adapted for the screen several times. <em>J.R.R.
    Tolkien's The Lord of the Rings</em>, an animated version directed by Ralph
    Bakshi and released in 1978, covered the events of the novel and parts of
    its sequel. The movie <em>The Lord of the Rings: The Fellowship of the
    Ring</em>, directed by Peter Jackson and released in 2001, ran 178 minutes
    long in its theatrical release.
</p>
Example encoded as Microdata embedded in HTML.
<p itemscope itemtype="https://schema.org/Book" itemid="http://www.freebase.com/m/0h35m">
    <em itemprop="name">The Fellowship of the Rings</em> was written by
    <span itemprop="author">J.R.R Tolkien</span> and was originally published
    in the <span itemprop="publisher" itemscope itemtype="https://schema.org/Organization">
        <span itemprop="location">United Kingdom</span> by
        <span itemprop="name">George Allen &amp; Unwin</span>
    </span> in <time itemprop="datePublished">1954</time>.
    The book has been republished many times, including editions by
    <span itemprop="workExample" itemscope itemtype="https://schema.org/Book">
        <span itemprop="publisher" itemscope itemtype="https://schema.org/Organization">
            <span itemprop="name">HarperCollins</span>
        </span> in <time itemprop="datePublished">1974</time>
        (ISBN: <span itemprop="isbn">0007149212</span>)
    </span> and by
    <span itemprop="workExample" itemscope itemtype="https://schema.org/Book">
        <span itemprop="publisher" itemscope itemtype="https://schema.org/Organization">
            <span itemprop="name">Ballantine</span>
        </span> in <time itemprop="datePublished">1984</time>
        (ISBN: <span itemprop="isbn">0345296052</span>).
    </span>
</p>
<p>
    The book has also been adapted for the screen several times.
    <span itemscope itemtype="https://schema.org/Movie">
        <link itemprop="exampleOfWork" href="http://www.freebase.com/m/0h35m">
        <em itemprop="name">J.R.R. Tolkien's The Lord of the Rings</em>, an
        animated version directed by <span itemprop="director">Ralph Bakshi</span>
        and released in <time itemprop="datePublished">1978</time>, covered the
        events of the novel and parts of its sequel.
    </span>
    <span itemscope itemtype="https://schema.org/Movie">
        <link itemprop="exampleOfWork" href="http://www.freebase.com/m/0h35m">
        The movie <em itemprop="name">The Lord of the Rings: The Fellowship of the
        Ring</em>, directed by <span itemprop="director">Peter Jackson</span> and
        released in <time itemprop="datePublished">2001</time>, ran
        <time itemprop="duration" datetime="PT178M">178</time> minutes long in its
        theatrical release.
    </span>
</p>
Example encoded as RDFa embedded in HTML.
<div vocab="https://schema.org/">
    <p typeof="Book" resource="http://www.freebase.com/m/0h35m">
        <em property="name">The Fellowship of the Rings</em> was written by
        <span property="author">J.R.R Tolkien</span> and was originally published
        in the <span property="publisher" typeof="Organization">
            <span property="location">United Kingdom</span> by
            <span property="name">George Allen &amp; Unwin</span>
        </span> in <time property="datePublished">1954</time>.
        The book has been republished many times, including editions by
        <span property="workExample" typeof="Book">
            <span property="publisher" typeof="Organization">
                <span property="name">HarperCollins</span>
            </span> in <time property="datePublished">1974</time>
            (ISBN: <span property="isbn">0007149212</span>)
        </span> and by
        <span property="workExample" typeof="Book">
            <span property="publisher" typeof="Organization">
                <span property="name">Ballantine</span>
            </span> in <time property="datePublished">1984</time>
            (ISBN: <span property="isbn">0345296052</span>).
        </span>
    </p>
    <p>
        The book has also been adapted for the screen several times.
        <span typeof="Movie">
            <link property="exampleOfWork" href="http://www.freebase.com/m/0h35m">
            <em property="name">J.R.R. Tolkien's The Lord of the Rings</em>, an
            animated version directed by <span property="director">Ralph Bakshi</span>
            and released in <time property="datePublished">1978</time>, covered the
            events of the novel and parts of its sequel.
        </span>
        <span typeof="Movie">
            <link property="exampleOfWork" href="http://www.freebase.com/m/0h35m">
            The movie <em property="name">The Lord of the Rings: The Fellowship of the
            Ring</em>, directed by <span property="director">Peter Jackson</span> and
            released in <time property="datePublished">2001</time>, ran
            <time property="duration" datetime="PT178M">178</time> minutes long in its
            theatrical release.
        </span>
    </p>
</div>
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context":  "https://schema.org/",
  "@graph": [
    {
      "@id": "http://www.freebase.com/m/0h35m",
      "@type": "Book",
      "author": "J.R.R Tolkien",
      "datePublished": "1954",
      "name": "The Fellowship of the Ring",
      "publisher": {
          "@type": "Organization",
          "location": "United Kingdom",
          "name": "George Allen & Unwin"
      },
      "workExample": [
        {
          "@type": "Book",
          "datePublished": "1974",
          "isbn": "0007149212",
          "publisher": {
            "@type": "Organization",
            "name": "HarperCollins"
          }
        },
        {
          "@type": "Book",
          "datePublished": "1984",
          "isbn": "0345296052",
          "publisher": {
            "@type": "Organization",
            "name": "Ballantine"
          }
        }
      ]
    },
    {
      "@type": "Movie",
      "datePublished": "2001",
      "director": "Peter Jackson",
      "duration": "PT178M",
      "name": "The Lord of the Rings: The Fellowship of the Ring",
      "exampleOfWork": {
        "@id": "http://www.freebase.com/m/0h35m"
      }
    },
    {
      "@type": "Movie",
      "datePublished": "1978",
      "director": "Ralph Bakshi",
      "name": "J.R.R. Tolkien's The Lord of the Rings",
      "exampleOfWork": {
        "@id": "http://www.freebase.com/m/0h35m"
      }
    }
  ]
}
</script>
Structured representation of the JSON-LD example.
n="center"> SIGN UP!!! CLICK HERE TO GET 52 BOOKS FREE!!

SIGN UP!! FOR BOOKS AND REGULAR ARTICLES

https://againstsatanism.com/Prices.htm

 

HOW TO DEFEAT SATANISM AND LUCIFERIANISM AND BOOST YOUR EVOLUTION THROUGH ENERGY ENHANCEMENT MEDITATION

"I have experience of many forms of meditation and practices for self improvement including: Transcendental meditation (TM) 12 years, Kriya Yoga 9 years, Sushila Buddhi Dharma (SUBUD) 7 years, and more recently the Sedona Method and the Course in Miracles.

The Energy Enhancement programme encapsulates and expands all of these systems, it is complete and no questions are left unanswered."

Jean, NUCLEAR ENGINEER

 

Energy Enhancement Level 0 Super Chi Prana, Power, Strength, Immortality

https://www.energyenhancement.org/LEVEL-Energy-Enhancement-Super-Chi-Immortality-Prana-Meditation-Course.htm

Energy Enhancement Meditation LEVEL 1 Immortality - Activate the Antahkarana! Gain Infinite Energy from the Chakras above the Head - Power UP!! Open Your Third Eye, Gain Super Samadhi Kundalini Alchemical VITRIOL Energy. Ground All Negative Energies. Access Quantum Immortality

https://www.energyenhancement.org/Level1.htm

Energy Enhancement Meditation LEVEL 2 - The Energy Enhancement Seven Step Process to Totally Remove Energy Blockages, Totally Remove All Problems, Totally Remove Negative Emotions, Heal Your DNA, Remove your Karma - OPEN YOUR LIFE!!

https://www.energyenhancement.org/Level2.htm

Energy Enhancement Meditation LEVEL 3 - Eliminate even Deeper Energy Blockages - The Removal of Strategies. Quantum Integration. The Karma Cleaning Process to Totally Eliminate All Your Karma, all your Trauma, all your Energy Blockages from All your Past Lifetimes!!

https://www.energyenhancement.org/Level3.htm

Energy Enhancement Meditation LEVEL 4 - Stop the Suck!! Heal All your Relationships!! Find Your Twin Flame!! MASTER ENERGY CONNECTIONS AND RELATIONSHIPS

https://www.energyenhancement.org/Level4.htm

 

OUR SPECIAL MEDITATION REVOLUTION OFFER!!

WE HAVE THE TECHNOLOGY

WE CAN REMOVE YOUR ENERGY BLOCKAGES, ENTITIES AND DEMONS

WE CAN RE-BUILD YOU..