@prefix msg0: <http://web.resource.org/cc/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix status: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix data-view: <http://www.w3.org/2003/g/data-view#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

<http://vocab.org/review/terms.rdf> a foaf:Document , <http://purl.org/dc/dcmitype/Text> ;
	foaf:primaryTopic <http://purl.org/stuff/rev#> ;
	dct:hasFormat <http://vocab.org/review/terms.html> , <http://vocab.org/review/terms.json> , <http://vocab.org/review/terms.turtle> ;
	foaf:topic <http://purl.org/stuff/rev#> .

<http://vocab.org/review/terms.html> a <http://purl.org/dc/dcmitype/Text> , foaf:Document ;
	dc:format "text/html" ;
	rdfs:label "HTML" .

<http://vocab.org/review/terms.json> a <http://purl.org/dc/dcmitype/Text> , foaf:Document ;
	dc:format "application/json" ;
	rdfs:label "JSON" .

<http://vocab.org/review/terms.turtle> a <http://purl.org/dc/dcmitype/Text> , foaf:Document ;
	dc:format "text/plain" ;
	rdfs:label "Turtle" .

<http://purl.org/stuff/rev#> a <http://www.w3.org/2002/07/owl#Ontology> , <http://www.w3.org/2002/07/owl#Thing> ;
	rdfs:label "RDF Review Vocabulary" ;
	dc:description "Vocabulary for expressing reviews and ratings using the Resource Description Framework. It is compatible with hReview and conforms to OWL Lite" ;
	dc:date "2007-11-08" ;
	data-view:profileTransformation <http://danja.talis.com/xmlns/rev_2007-11-09/hreview2rdfxml.xsl> ;
	status:userdocs <http://vocab.org/review/html> ;
	vann:preferredNamespaceUri "http://purl.org/stuff/rev#" ;
	vann:preferredNamespacePrefix "rev" .

<http://purl.org/stuff/rev> a msg0:Work ;
	msg0:license <http://creativecommons.org/licenses/by/1.0/> ;
	dc:type <http://purl.org/dc/dcmitype/Text> .

<http://creativecommons.org/licenses/by/1.0/> a msg0:License ;
	msg0:permits msg0:Reproduction , msg0:Distribution , msg0:DerivativeWorks ;
	msg0:requires msg0:Notice , msg0:Attribution .

<http://purl.org/stuff/rev#Review> a rdfs:Class , <http://www.w3.org/2002/07/owl#Class> ;
	rdfs:label "Review"@en ;
	rdfs:comment "A review of an work"@en ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	status:term_status "stable" ;
	status:moreinfo "core term" .

<http://purl.org/stuff/rev#rating> a rdf:Property , <http://www.w3.org/2002/07/owl#DatatypeProperty> ;
	rdfs:label "rating"@en ;
	rdfs:comment "A numeric value"@en ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	status:term_status "stable" ;
	status:moreinfo "core term" .

<http://purl.org/stuff/rev#text> a rdf:Property , <http://www.w3.org/2002/07/owl#DatatypeProperty> ;
	rdfs:label "text"@en ;
	rdfs:comment "The text of the review"@en ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	status:term_status "stable" ;
	status:moreinfo "core term" .

<http://purl.org/stuff/rev#hasReview> a rdf:Property , <http://www.w3.org/2002/07/owl#ObjectProperty> ;
	rdfs:label "has Review"@en ;
	rdfs:comment "Associates a work with a a review"@en ;
	rdfs:domain rdfs:Resource ;
	rdfs:range <http://purl.org/stuff/rev#Review> ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	status:term_status "stable" ;
	status:moreinfo "core term" .

<http://purl.org/stuff/rev#reviewer> a rdf:Property , <http://www.w3.org/2002/07/owl#ObjectProperty> ;
	rdfs:label "reviewer"@en ;
	rdfs:comment "The person that has written the review"@en ;
	rdfs:domain <http://purl.org/stuff/rev#Review> ;
	rdfs:range foaf:Person ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	status:term_status "stable" ;
	status:moreinfo "core term" .

<http://purl.org/stuff/rev#minRating> a rdf:Property ;
	rdfs:label "min Rating"@en ;
	rdfs:comment "A numeric value"@en ;
	dc:description "Minimum value for rating property"@en ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	status:term_status "stable" ;
	status:moreinfo "Introduced by request of Revyu.com" .

<http://purl.org/stuff/rev#maxRating> a rdf:Property ;
	rdfs:label "max Rating"@en ;
	rdfs:comment "A numeric value"@en ;
	dc:description "Maximum value for rating property"@en ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	status:term_status "stable" ;
	status:moreinfo "Introduced by request of Revyu.com" .

<http://purl.org/stuff/rev#type> a rdf:Property , <http://www.w3.org/2002/07/owl#DatatypeProperty> ;
	rdfs:label "type" ;
	rdfs:comment "The type of media of a work under review" ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	status:term_status "deprecated" ;
	status:moreinfo "core term" .

<http://purl.org/stuff/rev#Comment> a rdfs:Class , <http://www.w3.org/2002/07/owl#Class> ;
	rdfs:label "Comment" ;
	rdfs:comment "A comment on a review" ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	status:term_status "deprecated" ;
	status:moreinfo "proposed by iterating.com" .

<http://purl.org/stuff/rev#Feedback> a rdfs:Class , <http://www.w3.org/2002/07/owl#Class> ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	status:term_status "testing" , "deprecated" ;
	rdfs:comment "Feedback on the review. Expresses whether the review was useful or not" ;
	rdfs:label "Feedback" ;
	status:moreinfo "proposed by iterating.com" .

<http://purl.org/stuff/rev#hasFeedback> a rdf:Property , <http://www.w3.org/2002/07/owl#ObjectProperty> ;
	rdfs:label "hasFeedback" ;
	rdfs:comment "Associates a review with a feedback on the review" ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	rdfs:range <http://purl.org/stuff/rev#Feedback> ;
	rdfs:domain <http://purl.org/stuff/rev#Review> ;
	status:term_status "deprecated" ;
	status:moreinfo "proposed by iterating.com" .

<http://purl.org/stuff/rev#totalVotes> a rdf:Property , <http://www.w3.org/2002/07/owl#DatatypeProperty> ;
	rdfs:label "totalVotes" ;
	rdfs:comment "Number of usefulness votes (integer)" ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	rdfs:range rdfs:Literal ;
	rdfs:domain <http://purl.org/stuff/rev#Review> ;
	status:term_status "deprecated" ;
	status:moreinfo "proposed by iterating.com" .

<http://purl.org/stuff/rev#commenter> a rdf:Property , <http://www.w3.org/2002/07/owl#ObjectProperty> ;
	rdfs:label "commenter" ;
	rdfs:comment "The commenter on the review" ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	rdfs:range foaf:Agent ;
	rdfs:domain <http://purl.org/stuff/rev#Feedback> , <http://purl.org/stuff/rev#Comment> ;
	status:term_status "deprecated" ;
	status:moreinfo "proposed by iterating.com" .

<http://purl.org/stuff/rev#positiveVotes> a rdf:Property , <http://www.w3.org/2002/07/owl#DatatypeProperty> ;
	rdfs:label "positiveVotes" ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	rdfs:range rdfs:Literal ;
	rdfs:domain <http://purl.org/stuff/rev#Review> ;
	rdfs:comment "Number of positive usefulness votes (integer)" ;
	status:term_status "deprecated" ;
	status:moreinfo "proposed by iterating.com" .

<http://purl.org/stuff/rev#title> a rdf:Property , <http://www.w3.org/2002/07/owl#DatatypeProperty> ;
	rdfs:label "title" ;
	rdfs:comment "The title of the review" ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	rdfs:subPropertyOf dc:title ;
	rdfs:range rdfs:Literal ;
	rdfs:domain <http://purl.org/stuff/rev#Review> ;
	status:term_status "deprecated" ;
	status:moreinfo "proposed by iterating.com" .

<http://purl.org/stuff/rev#hasComment> a rdf:Property , <http://www.w3.org/2002/07/owl#ObjectProperty> ;
	rdfs:label "hasComment" ;
	rdfs:isDefinedBy <http://purl.org/stuff/rev#> ;
	rdfs:range <http://purl.org/stuff/rev#Comment> ;
	rdfs:domain <http://purl.org/stuff/rev#Review> ;
	rdfs:comment "Used to associate a review with a comment on the review" ;
	status:term_status "deprecated" ;
	status:moreinfo "proposed by iterating.com" .

rdfs:Class a <http://www.w3.org/2002/07/owl#Class> .

rdfs:Resource a <http://www.w3.org/2002/07/owl#Class> .

foaf:Agent a <http://www.w3.org/2002/07/owl#Class> .

foaf:Person a <http://www.w3.org/2002/07/owl#Class> .

dc:date a <http://www.w3.org/2002/07/owl#DatatypeProperty> .

dc:title a <http://www.w3.org/2002/07/owl#DatatypeProperty> .

dc:description a <http://www.w3.org/2002/07/owl#DatatypeProperty> .

status:term_status a <http://www.w3.org/2002/07/owl#AnnotationProperty> .

status:moreinfo a <http://www.w3.org/2002/07/owl#AnnotationProperty> .
