Examples/mylib/A9

From Schema Bib Extend Community Group

SchemaBibExtend example page.

Notes:
Work example - a Super Work?

Types:
schema:CreativeWork

Web Page

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

Dune

Author: Frank Herbert
Genre: Fiction

Versions: Novel - DuneA6, 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/>
<p>Versions: 
Novel - <a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">Dune</a>, 
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/A9" 
     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/>
<p>Versions: 
Novel - <a itemprop="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">Dune</a>, 
Movie - <a itemprop="workExample" 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/A9" 
     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/>
<p>Versions: 
Novel - <a property="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">Dune</a>, 
Movie <a property="workExample" 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/A9>
	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/A6>, 
		<http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A10>;
	.