Examples/mylib/A2

From Schema Bib Extend Community Group

SchemaBibExtend example page.

Notes:
Ebook example - approximating to FRBR Manifestation

Types:
schema:Book
schema:ProductModel
pto:E-book

Web Page

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

Dune

Author: Frank Herbert
Format: EBook - Kindle Edition
From the work: DuneA6
isbn: 044100590X
isbn: 9780441005901
gtin13: 9780441005901
Genre: Fiction
Published: 1999
Edition of: DuneA0
More details at WorldCat.org


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/>
Format: EBook - Kindle Edition<br/>
From the work: <a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">Dune</a><br/>
isbn: 044100590X<br/>
isbn: 9780441005901<br/>
gtin13: 9780441005901<br/>
Genre: Fiction<br/>
Published: 1999<br/>
Edition of:  <a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A0">Dune</a>
More details at:  <a href="http://www.worldcat.org/oclc/42400887">WorldCat.org</a>
</div>

Microdata

<div itemid="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A2"
     itemscope itemtype="http://schema.org/Book">
<link itemprop="additionalType" href="http://schema.org/ProductModel"/>
<link itemprop="additionalType" href="http://www.productontology.org/id/E-book"/>
<p><span itemprop="name">Dune</span></p>

Author: <a itemprop="author" href="http://viaf.org/viaf/59083797">Frank Herbert</a><br/>
Format: <link itemprop="bookFormat" href="http://schema.org/EBook"/>EBook - <span itemprop="bookEdition">Kindle Edition</span><br/>
From the work: <a itemprop="exampleOfWork" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">Dune</a><br/>
isbn: <span itemprop="isbn">044100590X</span><br/>
isbn: <span itemprop="isbn">9780441005901</span><br/>
gtin13: <span itemprop="gtin13">9780441005901</span><br/>
Genre: <span itemprop="genre">Fiction</span><br/>
Published: <span itemprop="datePublished">1999</span><br/>
Edition of:  <a itemprop="exampleOfWork" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A0">Dune</a>
More details at:  <a itemprop="sameAs" href="http://www.worldcat.org/oclc/42400887">WorldCat.org</a>
</div>


RDFa

<div resource="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A2"
    vocab="http://schema.org/" 
    typeOf="Book ProductModel http://www.productontology.org/id/E-book">
<p><span itemprop="name">Dune</span></p>

Author: <a property ="author" href="http://viaf.org/viaf/59083797">Frank Herbert</a><br/>
Format: <link property="bookFormat" href="http://schema.org/EBook"/>EBook - <span property="bookEdition">Kindle Edition</span><br/>
From the work: <a property="exampleOfWork" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6">Dune</a><br/>
isbn: <span property="isbn">044100590X</span><br/>
isbn: <span property="isbn">9780441005901</span><br/>
gtin13: <span itemprop="gtin13">9780441005901</span><br/>
Genre: <span property="genre">Fiction</span><br/>
Published: <span property="datePublished">1999</span><br/>
Edition of:  <a property="exampleOfWork" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A0">Dune</a>
More details at:  <a property="sameAs" href="http://www.worldcat.org/oclc/42400887">WorldCat.org</a>
</div>


Turtle

@prefix schema: <http://schema.org/> .
@prefix schemap: <http://proposed-schema.org/> .
@prefix pto: <http://www.productontology.org/id/>.

<http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A2>
	a schema:Book, schema:Product, pto:E-book;
	schema:name "Dune";
	schema:author <http://viaf.org/viaf/59083797>;
	schema:bookEdition "Kindle Edition";
	schema:bookFormat "EBook";
	schema:isbn "044100590X";
	schema:isbn "9780441005901";
	gtin13 "9780441005901";
	schema:genre "Fiction";
	schema: datePublished "1999";
	schemap:exampleOfWork <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A6>;
	schemap:exampleOfWork <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A0>;
	schema:sameAs <http://www.worldcat.org/oclc/42400887>
	.