Examples/mylib/A1

From Schema Bib Extend Community Group

SchemaBibExtend example page.

Notes:
Hardback Book example - approximating to FRBR Manifestation + holding

Types:
schema:Book
schema:SomeProducts


Web Page

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

Dune

Author: Frank Herbert
Format: Hardback
isbn: 1439501661
isbn: 9780801950773
gtin13: 9780801950773
Genre: Fiction
Copyright Year: 1965
Edition of: DuneA0
Also part of: DuneA7
More details at WorldCat.org
Quantity Available: 1
Item: DuneA5


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/A0">Dune</a><br/>
Also part of:  <a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A7">Dune</a><br/>
More details at:  <a href="http://www.worldcat.org/oclc/464251305">WorldCat.org</a><br/>
Quantity available: 1 <br/>
Item: <a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A5">Dune</a><br/>
</div>


Microdata

<div itemid="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A1"
     itemscope itemtype="http://schema.org/Book">
<link itemprop="additionalType" href="http://schema.org/SomeProducts"/>
<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/A0">Dune</a>
Also part of:  <a itemprop="isPartOf" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A07">Dune</a>
More details at:  <a itemprop="sameAs" href="http://www.worldcat.org/oclc/464251305">WorldCat.org</a>
Quantity available: <span itemprop="inventoryLevel" itemscope itemtype="http://schema.org/QuantitativeValue">
      <span itemprop="hasValue">1</span>
  </span><br/>
Item:  <a itemprop="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A5">Dune</a><br/>
</div>


RDFa

<div resource="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A1"
     vocab="http://schema.org/" 
     typeOf="Book http://schema.org/SomeProducts">
<p><span property ="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/A0">Dune</a>
Also part of:  <a property="isPartOf" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A7">Dune</a>
More details at:  <a property="sameAs" href="http://www.worldcat.org/oclc/464251305">WorldCat.org</a>

Quantity available: <span property="inventoryLevel" typeof="http://schema.org/QuantitativeValue">
      <span property="hasValue">1</span>
  </span><br/>
Item:  <a property="workExample" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A5">Dune</a><br/>

</div>

Turtle

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

<http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A1>
	a schema:Book, schema:SomeProducts;
	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/A0>;
	schemap:isPartOf <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A7>;
	schema:sameAs <http://www.worldcat.org/oclc/464251305>;
        schema:inventoryLevel [ a schema:QuantitativeValue; schema:hasValue "1"];
	schemap:exampleOfWork <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A5>
	.