Examples/mylib/A3

From Schema Bib Extend Community Group

SchemaBibExtend example page.

Notes:
Paperback Book example - approximating to FRBR Manifestation

Types:
schema:Book
schema:ProductModel


Web Page

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

Dune

Author: Frank Herbert
Format: Paperback
isbn: 0450011844
isbn: 9780450011849
gtin13: 9780450011849
Genre: Fiction
Copyright Year: 1965
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: Paperback<br/>
isbn: 0450011844<br/>
isbn: 9780450011849<br/>
gtin13: 9780450011849<br/>
Genre: Fiction<br/>
Copyright Year: 1965<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/42213862>WorldCat.org</a>
</div>


Microdata

<div itemid="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A3"
     itemscope itemtype="http://schema.org/Book">
<link itemprop="additionalType" href="http://schema.org/ProductModel"/>
<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/Paperback"/>Paperback<br/>
isbn: <span itemprop="isbn">0450011844</span><br/>
isbn: <span itemprop="isbn">9780450011849</span><br/>
gtin13: <span itemprop="gtin13">9780450011849</span><br/>
Genre: <span itemprop="genre">Fiction</span><br/>
Copyright Year: <span itemprop="copyrightYear">1965</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/42213862">WorldCat.org</a>
</div>

RDFa

<div resource="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A3"
    vocab="http://schema.org/" 
    typeOf="Book ProductModel">
<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/Paperback"/>Paperback<br/>
isbn: <span property="isbn">0450011844</span><br/>
isbn: <span property="isbn">9780450011849</span><br/>
gtin13: <span itemprop="gtin13">9780450011849</span><br/>
Genre: <span property="genre">Fiction</span><br/>
Copyright Year: <span property="copyrightYear">1965</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/42213862">WorldCat.org</a>
</div>

Turtle

@prefix schema: <http://schema.org/> .
@prefix schemap: <http://proposed-schema.org/> .

<http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A3>
	a schema:Book, schema:ProductModel;
        schema:bookFormat schema:Paperback;
	schema:name "Dune";
	schema:author <http://viaf.org/viaf/59083797>;
	schema:isbn "0450011844";
	schema:isbn "9780450011849";
	gtin13 "9780450011849";
	schema:genre "Fiction";
	schema:copyrightYear "1965";
	schemap:exampleOfWork http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A0;
	schema:sameAs http://www.worldcat.org/oclc/42213862
	.