<rdf:RDF
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
	xmlns:owl="http://www.w3.org/2002/07/owl#"
	xml:base="http://www.hackcraft.net/bookrdf/vocab/0_1/">
	<owl:Ontology rdf:about="">
		<owl:imports rdf:resource="http://xmlns.com/foaf/0.1/"/>
		<owl:imports rdf:resource="http://purl.org/dc/elements/1.1/"/>
		<owl:imports rdf:resource="http://purl.org/dc/DCMIType/"/>
	</owl:Ontology>
	<owl:Class
		rdf:about="Book"
		rdfs:label="Book"
		rdfs:comment="A book (for small values of “book”, give it an ISBN and we’re happy).">
		<rdfs:subClassOf rdf:resource="http://purl.org/dc/DCMIType/Text"/>
	</owl:Class>
	<owl:Class
		rdf:about="Author"
		rdfs:label="Author"
		rdfs:comment="A person or organisation who is solely or partly responsible for the creation of a book.">
		<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
	</owl:Class>
	<owl:Class rdf:about="Publisher"
		rdfs:label="Publisher"
		rdfs:comment="An entity, normally a company or corporation, that publishes a book.">
		<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
	</owl:Class>
	<owl:Class rdf:about="Review"
		rdfs:label="Review"
		rdfs:comment="A piece of writing giving one persons opinion of the book.">
		<rdfs:subClassOf rdf:resource="http://purl.org/dc/DCMIType/Text"/>
	</owl:Class>
	<owl:Class rdf:about="CoverImage"
		rdfs:label="Book Cover Image"
		rdfs:comment="A digital depiction of a book cover.">
		<rdfs:subClassOf rdf:resource="http://purl.org/dc/DCMIType/Image"/>
		<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Image"/>
	</owl:Class>
	
	<rdf:Property rdf:about="isbn"
		rdfs:label="ISBN Number"
		rdfs:comment="The ISBN number of the book.">
		<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/identifier"/>
		<rdfs:domain rdf:resource="Book"/> 
		<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/> 
	</rdf:Property>
	<rdf:Property rdf:about="authoredBy"
		rdfs:label="Authored By"
		rdfs:comment="An author of this book.">
		<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/creator"/>
		<rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/maker"/>
		<rdfs:domain rdf:resource="Book"/> 
		<rdfs:range rdf:resource="Author"/> 
	</rdf:Property>
	<rdf:Property rdf:about="soldAt"
		rdfs:label="Sold At"
		rdfs:comment="A webpage from which the book can be bought.">
		<rdfs:domain rdf:resource="Book"/> 
		<rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/> 
	</rdf:Property>
	<rdf:Property rdf:about="reviewed"
		rdfs:label="Reviewed"
		rdfs:comment="A review of this book">
		<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/description"/>
		<rdfs:domain rdf:resource="Book"/>
	</rdf:Property>
	<rdf:Property rdf:about="similarTo"
		rdfs:label="Similar To"
		rdfs:comment="A similar book to this one (based on categorisation and purchase patterns).">
		<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/relation"/>
		<rdfs:domain rdf:resource="Book"/>
		<rdfs:range rdf:resource="Book"/>
	</rdf:Property>
</rdf:RDF>
