Examples/mylib/A10

From Schema Bib Extend Community Group
Revision as of 19:17, 6 February 2013 by Rwallis (talk | contribs) (Created page with "__NOTOC__ ''SchemaBibExtend example page.'' ''Notes'': <br/> Movie example - approximating to FRBR Expression ''Types'':<br/> [http://schema.org/Movie schema:Movie]<br/> === …")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

SchemaBibExtend example page.

Notes:
Movie example - approximating to FRBR Expression

Types:
schema:Movie

Web Page

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

Dune

Author: Frank Herbert
Screenplay: David Lynch
A Movie
From the work: Dune
Genre: Fiction
Published: 1984

Similar to: Book - Dune

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/>
Screenplay: <a href="http://viaf.org/viaf/44276842">David Lynch</a><br/>
A Movie<br/>
From the work: <a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">Dune</a><br/>
Genre: Fiction<br/>
Published: 1984<br/>
<p>Similar to: Book - <a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A0>Dune</a>
</p>
</div>

Microdata

<div itemid="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A10" 
     itemscope itemtype="http://schema.org/Movie">
<p><span itemprop="name">Dune</span></p>

Author: <a itemprop="author" href="http://viaf.org/viaf/59083797">Frank Herbert</a><br/>
Screenplay: <a itemprop="creator" href="http://viaf.org/viaf/44276842">David Lynch</a><br/>
A Movie<br/>
From the work: <a itemprop="instanceOf" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">Dune</a><br/>
Genre: <span itemprop="genre">Fiction</span><br/>
Published: <span itemprop="datePublished">1999</span><br/>
<p>Similar to: Book - <a itemprop="commonEndeavor" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A0">Dune</a>
</p>
</div>

RDFa

<div resource="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A10" 
     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/>
Screenplay: <a property="creator" href="http://viaf.org/viaf/44276842">David Lynch</a><br/>
A Book<br/>
From the work: <a property="instanceOf" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">Dune</a><br/>
Genre: <span property="genre">Fiction</span><br/>
Published: <span property="datePublished">1999</span><br/>
<p>Similar to: Book - <a property="commonEndeavor" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A0">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/A10>
	a schema:Book;
	schema:name "Dune";
	schema:author <http://viaf.org/viaf/59083797>;
	schema:creator <http://viaf.org/viaf/44276842>;
	schema:genre "Fiction";
	schema:datePublished "1999";
	schemap:instanceOf <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6>;
	schemap:commonEndeavor <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A0>;
	.