Examples/mylib/A0

From Schema Bib Extend Community Group

SchemaBibExtend example page.

Notes:
Book example - approximating to FRBR Expression

Types:
schema:Book

Web Page

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

Dune

Author: Frank Herbert
A Book
From the work: DuneA6
Genre: Fiction
Copyright Year: 1965

Versions: DuneA1, DuneA3

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/>
A Book<br/>
From the work: <a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">Dune</a><br/>
Genre: Fiction<br/>
Copyright Year: 1965<br/>
<p>Versions: 
<a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A1>Dune</a>, 
<a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A3>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/A0" 
     itemscope itemtype="http://schema.org/Book">
<p><span itemprop="name">Dune</span></p>

Author: <a itemprop="author" href="http://viaf.org/viaf/59083797">Frank Herbert</a><br/>
A Book<br/>
From the work: <a itemprop="exampleOfWork" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">Dune</a><br/>
Genre: <span itemprop="genre">Fiction</span><br/>
Copyright Year: <span itemprop="copyrightYear">1965</span><br/>
<p>Versions: 
<a itemprop="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A1">Dune</a>, 
<a itemprop="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A3">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/A0" 
     vocab="http://schema.org/" 
     typeof="Book">
<p><span property="name">Dune</span></p>

Author: <a property ="author" href="http://viaf.org/viaf/59083797">Frank Herbert</a><br/>
A Book<br/>
From the work: <a property="exampleOfWork" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">Dune</a><br/>
Genre: <span property="genre">Fiction</span><br/>
Copyright Year: <span property="copyrightYear">1965</span><br/>
<p>Versions: 
<a property="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A1">Dune</a>, 
<a property="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A3">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/A0>
	a schema:Book;
	schema:name "Dune";
	schema:author <http://viaf.org/viaf/59083797>;
	schema:genre "Fiction";
	schema:copyrightYear "1965";
	schemap:exampleOfWork <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6>;
	schemap:workExample <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A1>, 
		<http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A3>;
	schemap:commonEndeavor <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A10>;
	.