Examples/mylib/A10

From Schema Bib Extend Community Group

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
Director: David Lynch
Producer: Raffaella De Laurentiis
Production Company: De Laurentiis
Genre: Fiction
Published: 1984

Similar to: Novel - 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/>
Duration: 140 Minutes<br/>
Director: <a href="http://viaf.org/viaf/44276842"> David Lynch</a><br/>
Producer: <a href="http://www.imdb.com/name/nm0209581/">Raffaella De Laurentiis</a><br/>
Production Company: <a href="http://www.imdb.com/company/co0067696/">De Laurentiis</a><br/>
Genre: Fiction<br/>
Published: 1984<br/>
<p>Similar to: Novel - <a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6>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/>
Duration: <link itemprop="duration" content="PT140M"/> 140 Minutes<br/>
Director: <a itemprop="director" href="http://viaf.org/viaf/44276842"> David Lynch</a><br/>
Producer: <a itemprop="producer" href="http://www.imdb.com/name/nm0209581/">Raffaella De Laurentiis</a><br/>
Production Company: <a itemprop="productionCompany" href="http://www.imdb.com/company/co0067696/">De Laurentiis</a><br/>
Genre: <span itemprop="genre">Fiction</span><br/>
Published: <span itemprop="datePublished">1999</span><br/>
<p>Similar to: Novel - <a itemprop="commonEndeavor" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">Dune</a>
</p>
</div>

RDFa

<div resource="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A10" 
     vocab="http://schema.org/" 
     typeof="Movie">
<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 Movie<br/>
Duration: <link property="duration" content="PT140M"/> 140 Minutes<br/>
Director: <a property="director" href="http://viaf.org/viaf/44276842"> David Lynch</a><br/>
Producer: <a property="producer" href="http://www.imdb.com/name/nm0209581/">Raffaella De Laurentiis</a><br/>
Production Company: <a itemprop="productionCompany" href="http://www.imdb.com/company/co0067696/">De Laurentiis</a><br/>
Genre: <span property="genre">Fiction</span><br/>
Published: <span property="datePublished">1999</span><br/>
<p>Similar to: Novel - <a property="commonEndeavor" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">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:Movie;
	schema:name "Dune";
	schema:author <http://viaf.org/viaf/59083797>;
	schema:creator <http://viaf.org/viaf/44276842>;
	schema:duration "PT140M;
	schema:director <http://viaf.org/viaf/44276842>;
	schema:producer" <http://www.imdb.com/name/nm0209581/>;
	schema:productionCompany <http://www.imdb.com/company/co0067696/>;
	schema:genre "Fiction";
	schema:datePublished "1999";
	schemap:commonEndeavor <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6>;
	.