Examples/mylib/A5

From Schema Bib Extend Community Group

SchemaBibExtend example page.

Notes:
Hardback Book example - approximating to FRBR Item

Types:
schema:Book
schema:IndividualProduct

Web Page

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

Dune

Author: Frank Herbert
Format: Hardback
isbn: 1439501661
isbn: 9780801950773
gtin13: 9780801950773
Genre: Fiction
Copyright Year: 1965
Edition of: DuneA1
More details at WorldCat.org
Barcode: 2-1234-12345678-1


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: Hardback<br/>
isbn: 1439501661<br/>
isbn: 9780801950773<br/>
gtin13: 9780801950773<br/>
Genre: Fiction<br/>
Copyright Year: 1965<br/>
Edition of:  <a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A1">Dune</a><br/>
More details at:  <a href="http://www.worldcat.org/oclc/464251305">WorldCat.org</a><br/>
Barcode: "2-1234-12345678-1" <br/>
</div>

Microdata

<div itemid="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A5"
     itemscope itemtype="http://schema.org/Book">
<link itemprop="additionalType" href="http://schema.org/IndividualProduct"/>
<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/Hardcover"/>Hardback<br/>
isbn: <span itemprop="isbn">1439501661</span><br/>
isbn: <span itemprop="isbn">9780801950773</span><br/>
gtin13: <span itemprop="gtin13">9780801950773</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/A1">Dune</a>
More details at:  <a itemprop="sameAs" href="http://www.worldcat.org/oclc/464251305">WorldCat.org</a>
Barcode: <span itemprop="serialNumber">2-1234-12345678-1</span><br/>
</div>


RDFa

<div resource="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A5"
     vocab="http://schema.org/" 
     typeOf="Book http://schema.org/IndividualProduct">
<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/Hardcover"/>Hardback<br/>
isbn: <span property="isbn">1439501661</span><br/>
isbn: <span property="isbn">9780801950773</span><br/>
gtin13: <span itemprop="gtin13">9780801950773</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/A1">Dune</a>
More details at:  <a property="sameAs" href="http://www.worldcat.org/oclc/464251305">WorldCat.org</a>
Barcode: <span property="serialNumber">2-1234-12345678-1</span><br/>

</div>


Turtle

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

<http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A5>
	a schema:Book, schema:IndividualProduct;
	schema:name "Dune";
	schema:author <http://viaf.org/viaf/59083797>;
	schema:bookFormat schema:Hardcover;
	schema:isbn "1439501661";
	schema:isbn "9780801950773";
	gtin13 "9780801950773";
	schema:genre "Fiction";
	schema:copyrightYear "1965";
	schemap:exampleOfWork <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A1>;
	schema:sameAs <http://www.worldcat.org/oclc/464251305>;
        schema:serialNumber "2-1234-12345678-1"
	.