Examples/mylib/A7

From Schema Bib Extend Community Group

SchemaBibExtend example page.

Notes:
Box set of Books example - approximating to FRBR Manifestation For simplicity links to only on part of set has been coded.

Types:
schema:Book
schema:Product
pto:Box_set


Web Page

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

Dune

Author: Frank Herbert
Format: Box Set
isbn: 0425039323
Genre: Fiction
Published: 1978
Contains: DuneA1, Dune Messiah, Children of Dune
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: Box Set<br/>
isbn: 0425039323<br/>
Genre: Fiction<br/>
Published: 1978<br/>
Contains: <a href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A1">Dune</a>, Dune Messiah, Children of Dune<br/>
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/A7"
     itemscope itemtype="http://schema.org/Book">
<link itemprop="additionalType" href="http://schema.org/Product"/>
<link itemprop="additionalType" href="http://www.productontology.org/id/Box_set"/>
<p><span itemprop="name">Dune</span></p>

Author: <a itemprop="author" href="http://viaf.org/viaf/59083797">Frank Herbert</a><br/>
Format: Box Set<br/>
isbn: <span itemprop="isbn">0425039323</span><br/>
Genre: <span itemprop="genre">Fiction</span><br/>
Published: <span itemprop="datePublished">1978</span><br/>
Contains: <a itemprop="hasPart" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A1">Dune</a>, Dune Messiah, Children of Dune<br/>
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/A7"
    vocab="http://schema.org/" 
    typeOf="Book http://schema.org/Product http://www.productontology.org/id/Box_set">
<p><span itemprop="name">Dune</span></p>

Author: <a property ="author" href="http://viaf.org/viaf/59083797">Frank Herbert</a><br/>
Format: Box Set<br/>
isbn: <span property="isbn">0425039323</span><br/>
Genre: <span property="genre">Fiction</span><br/>
Published: <span property="datePublished">1978</span><br/>
Contains: <a property="hasPart" href="http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A1">Dune</a>, Dune Messiah, Children of Dune<br/>
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/A7>
	a schema:Book, schema:Product, pto:Box_set;
	schema:name "Dune";
	schema:author <http://viaf.org/viaf/59083797>;
	schema:isbn "0425039323";
	schema:genre "Fiction";
	schema:datePublished "1978";
	schemap:hasPart <http://www.w3.org/community/schemabibex/wiki/Examples/mylib/A1>;
	schema:sameAs http://www.worldcat.org/oclc/42400887
	.