Examples/mylib/A6

From Schema Bib Extend Community Group

SchemaBibExtend example page.

Notes:
Work example - approximating to FRBR Work

Types:
schema:CreativeWork

Web Page

URI: https://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6

Dune

Author: Frank Herbert
Genre: Fiction
Copyright Year: 1965
More details at WorldCat.org

Versions: DuneA0, DuneA2, DuneA8

Similar to: Movie - DuneA10

Codings for page

HTML

Visual formatting (style, colors, bold, etc removed for clarity)

<div>
<p>Dune</p>

Author: <a href="http://viaf.org/viaf/59083797">Frank Herbert</a><br/>
Genre: Fiction<br/>
Copyright Year: 1965<br/>
More details at:  <a href="http://worldcat.org/entity/work/id/364049">WorldCat.org</a><br/>
<p>Versions: 
<a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A0">Dune</a>, 
<a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A2">Dune</a>, 
<a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A8">Dune</a>
</p>
<p>Similar to: Movie - <a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A10">Dune</a>
</p>
</div>


Microdata

<div itemid="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6" 
     itemscope itemtype="http://schema.org/CreativeWork">
<p><span itemprop="name">Dune</span></p>
Author: <a itemprop="author" href="http://viaf.org/viaf/59083797">Frank Herbert</a><br/>
Genre: <span itemprop="genre">Fiction</span><br/>
Copyright Year: <span itemprop="copyrightYear">1965</span><br/>
More details at:  <a itemprop="sameAs" href="http://worldcat.org/entity/work/id/364049">WorldCat.org</a>
<p>Versions: 
<a itemprop="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A0">Dune</a>, 
<a itemprop="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A2">Dune</a>, 
<a itemprop="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A8">Dune</a>
</p>
<p>Similar to: Movie - <a itemprop="commonEndeavor" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A10">Dune</a>
</p>
</div>


RDFa

<div resource="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6" 
     vocab="http://schema.org/" 
     typeOf="CreativeWork">
<p><span itemprop="name">Dune</span></p>

Author: <a property ="author" href="http://viaf.org/viaf/59083797">Frank Herbert</a><br/>
Genre: <span property="genre">Fiction</span><br/>
Copyright Year: <span property="copyrightYear">1965</span><br/>
More details at:  <a property="sameAs" href="http://worldcat.org/entity/work/id/364049">WorldCat.org</a>
<p>Versions: 
<a property="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A0">Dune</a>, 
<a property="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A2">Dune</a>, 
<a property="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A8">Dune</a>
</p>
<p>Similar to: Movie - <a property="commonEndeavor" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A10">Dune</a>
</p>
</div>

Turtle

@prefix schema: <http://schema.org/> .
@prefix schemap: <http://proposed-schema.org/> .

<http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6>
	a schema:CreativeWork;
	schema:name "Dune";
	schema:author <http://viaf.org/viaf/59083797>;
	schema:genre "Fiction";
	schema:copyrightYear "1965";
	schemap:workExample <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A0>, 
		<http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A2>,
		<http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A8>;
	schemap:commonEndeavor <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A10>;
        schema:sameAs <http://worldcat.org/entity/work/id/364049>
	.