@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix pnt: <http://data.press.net/ontology/tag/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

<http://data.press.net/ontology/tag/> a owl:Ontology ;
	dcterms:title "SNaP Tag Ontology"@en ;
	dcterms:created "2011-07-28"^^xsd:date ;
	dcterms:modified "2011-10-03"^^xsd:date ;
	dcterms:license <http://creativecommons.org/licenses/by-nd/3.0/> ;
	foaf:maker <http://uk.linkedin.com/in/pauliharman> .

<http://uk.linkedin.com/in/pauliharman> a foaf:Person ;
	foaf:name "Paul Harman" .

<http://data.press.net/ontology/tag/> foaf:maker <http://uk.linkedin.com/in/jarredmcginnis> .

<http://uk.linkedin.com/in/jarredmcginnis> a foaf:Person ;
	foaf:name "Jarred McGinnis" .

<http://data.press.net/ontology/tag/> foaf:maker <http://uk.linkedin.com/in/paulwilton> .

<http://uk.linkedin.com/in/paulwilton> a foaf:Person ;
	foaf:name "Paul Wilton" .

<http://data.press.net/ontology/tag/> rdfs:comment "The Tag Ontology defines relationships for semantically annotating taggable things (for example news assets) with domain entities (stuff) and events."@en ;
	owl:versionInfo "0.1.0"^^xsd:string .

pnt:Taggable a owl:Class ;
	rdfs:label "Generic Taggable Class"@en ;
	rdfs:comment "Generic Taggable Class - Taggable things can be tagged"@en ;
	rdfs:isDefinedBy <http://data.press.net/ontology/tag/> ;
	vs:term_status "testing" .

pnt:Tag a owl:Class ;
	rdfs:label "Generic Tag Class"@en ;
	rdfs:comment "Generic Tag Class - Taggables are tagged with a Tag"@en ;
	rdfs:isDefinedBy <http://data.press.net/ontology/tag/> ;
	vs:term_status "testing" .

pnt:isTaggedWith a owl:ObjectProperty ;
	rdfs:domain pnt:Taggable ;
	rdfs:range pnt:Tag ;
	rdfs:label "Property that associates Tags with Taggables"@en ;
	rdfs:comment "Property that associates Tags with Taggables:  Taggable X isTaggedWith Tag Y"@en ;
	rdfs:isDefinedBy <http://data.press.net/ontology/tag/> ;
	vs:term_status "testing" .

pnt:about a owl:ObjectProperty ;
	rdfs:subPropertyOf pnt:isTaggedWith ;
	rdfs:domain pnt:Taggable ;
	rdfs:range pnt:Tag ;
	rdfs:label "Property that associates Tags with Taggables refining pnt:isTaggedWith"@en ;
	rdfs:comment "Property that associates Tags with Taggables, refines pnt:isTaggedWith:  Taggable X about Tag Y.  pnt:about is a stronger relationship that pnt:mentions"@en ;
	rdfs:isDefinedBy <http://data.press.net/ontology/tag/> ;
	vs:term_status "testing" .

pnt:mentions a owl:ObjectProperty ;
	rdfs:subPropertyOf pnt:isTaggedWith ;
	rdfs:domain pnt:Taggable ;
	rdfs:range pnt:Tag ;
	rdfs:label "Property that associates Tags with Taggables refining pnt:isTaggedWith"@en ;
	rdfs:comment "Property that associates Tags with Taggables, refines pnt:isTaggedWith:  Taggable X mentions Tag Y.  pnt:mentions is a weaker relationship that pnt:about"@en ;
	rdfs:isDefinedBy <http://data.press.net/ontology/tag/> ;
	vs:term_status "testing" .
