@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

<http://purl.org/swan/2.0/discourse-relationships/> a owl:Ontology ;
	rdfs:label "Discourse relationships vocabulary v. 3.0"^^<http://www.w3.org/2001/XMLSchema#string> ;
	rdfs:comment "These relationships don't have range and domains defined as they are meant to be reused in different contexts"^^<http://www.w3.org/2001/XMLSchema#string> ;
	owl:versionInfo "3.0"^^<http://www.w3.org/2001/XMLSchema#string> ;
	dct:language "en" ;
	dct:title "Discourse relationships vocabulary"@en ;
	dct:creator <http://www.hcklab.org/foaf.rdf#me> ;
	dct:publisher "Massachusetts General Hospital" ;
	dct:contributor "Paolo Ciccarese"^^<http://www.w3.org/2001/XMLSchema#string> , "Marco Ocana"^^<http://www.w3.org/2001/XMLSchema#string> , "Elizabeth Wu"^^<http://www.w3.org/2001/XMLSchema#string> , "Tim Clark"^^<http://www.w3.org/2001/XMLSchema#string> , "Gwen Wong"^^<http://www.w3.org/2001/XMLSchema#string> , "June Kinoshita"^^<http://www.w3.org/2001/XMLSchema#string> , "David Shotton"^^<http://www.w3.org/2001/XMLSchema#string> ;
	dct:date "October 12, 2010"^^<http://www.w3.org/2001/XMLSchema#string> ;
	dct:format "rdf/xml"^^<http://www.w3.org/2001/XMLSchema#string> .

dct:title a owl:AnnotationProperty .

dct:date a owl:AnnotationProperty .

dct:creator a owl:AnnotationProperty .

dct:format a owl:AnnotationProperty .

dct:language a owl:AnnotationProperty .

dct:publisher a owl:AnnotationProperty .

dct:contributor a owl:AnnotationProperty .

<http://purl.org/swan/2.0/discourse-relationships/relatesTo> a owl:ObjectProperty ;
	rdfs:label "relatesTo" ;
	rdfs:comment """The most generic relationship: it expresses connection 
			between two resources without specifying the nature of such connection"""^^<http://www.w3.org/2001/XMLSchema#string> .

<http://purl.org/swan/2.0/discourse-relationships/refersTo> a owl:ObjectProperty ;
	rdfs:label "refersTo" ;
	rdfs:comment """It connects an entity with another entity in an 
				unidirectional way"""^^<http://www.w3.org/2001/XMLSchema#string> ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/relatesTo> .

<http://purl.org/swan/2.0/discourse-relationships/referencesAsSupportiveEvidence> a owl:ObjectProperty ;
	rdfs:label "referencesAsSupportiveEvidence" ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/refersTo> ;
	rdfs:comment ""^^<http://www.w3.org/2001/XMLSchema#string> .

<http://purl.org/swan/2.0/discourse-relationships/referencesAsRelevantEvidence> a owl:ObjectProperty ;
	rdfs:label "referencesAsRelevantEvidence" ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/refersTo> ;
	rdfs:comment ""^^<http://www.w3.org/2001/XMLSchema#string> .

<http://purl.org/swan/2.0/discourse-relationships/referencesAsInconsistentEvidence> a owl:ObjectProperty ;
	rdfs:label "referencesAsInconsistentEvidence" ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/refersTo> ;
	rdfs:comment ""^^<http://www.w3.org/2001/XMLSchema#string> .

<http://purl.org/swan/2.0/discourse-relationships/motivates> a owl:ObjectProperty ;
	rdfs:label "motivates" ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/refersTo> ;
	rdfs:comment "Something (hypothesis, doubt...) that motivates something else like an experiment"^^<http://www.w3.org/2001/XMLSchema#string> .

<http://purl.org/swan/2.0/discourse-relationships/arisesFrom> a owl:ObjectProperty ;
	rdfs:label "arisesFrom" ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/refersTo> ;
	rdfs:comment "Something (question, doubt...) that arises because of something else"^^<http://www.w3.org/2001/XMLSchema#string> .

<http://purl.org/swan/2.0/discourse-relationships/respondsTo> a owl:ObjectProperty ;
	rdfs:label "respondsTo" ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/refersTo> ;
	rdfs:comment ""^^<http://www.w3.org/2001/XMLSchema#string> .

<http://purl.org/swan/2.0/discourse-relationships/respondsNeutrallyTo> a owl:ObjectProperty ;
	rdfs:label "respondsNeutrallyTo" ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/respondsTo> ;
	rdfs:comment """It expresses the fact that one entity is 
				    		talking about another one without expressing agreement or disagreement"""^^<http://www.w3.org/2001/XMLSchema#string> .

<http://purl.org/swan/2.0/discourse-relationships/respondsPositivelyTo> a owl:ObjectProperty ;
	rdfs:label "respondsPositivelyTo" ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/respondsTo> ;
	rdfs:comment """It expresses the fact that one entity is talking 
				    		about another one expressing agreement"""^^<http://www.w3.org/2001/XMLSchema#string> .

<http://purl.org/swan/2.0/discourse-relationships/respondsNegativelyTo> a owl:ObjectProperty ;
	rdfs:label "respondsNegativelyTo" ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/respondsTo> ;
	rdfs:comment """It expresses the fact that one entity is talking 
				    		about another one expressing disagreement"""^^<http://www.w3.org/2001/XMLSchema#string> .

<http://purl.org/swan/2.0/discourse-relationships/inconsistentWith> a owl:ObjectProperty ;
	rdfs:label "inconsistentWith" ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/relatesTo> ;
	a owl:SymmetricProperty ;
	rdfs:comment """It expresses inconsistency between two resources. 
	    		It is a bidirectional relationship"""^^<http://www.w3.org/2001/XMLSchema#string> .

<http://purl.org/swan/2.0/discourse-relationships/consistentWith> a owl:ObjectProperty ;
	rdfs:label "consistentWith" ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/relatesTo> ;
	a owl:SymmetricProperty ;
	rdfs:comment """It expresses consistency between two resources. 
	    		It is a bidirectional relationship"""^^<http://www.w3.org/2001/XMLSchema#string> .

<http://purl.org/swan/2.0/discourse-relationships/relevantTo> a owl:ObjectProperty ;
	rdfs:label "relevantTo" ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/relatesTo> ;
	a owl:SymmetricProperty ;
	rdfs:comment """It expresses the fact that a resource is 
	    		relevant for another one and vice-versa"""^^<http://www.w3.org/2001/XMLSchema#string> .

<http://purl.org/swan/2.0/discourse-relationships/alternativeTo> a owl:ObjectProperty ;
	rdfs:label "alternativeTo" ;
	rdfs:subPropertyOf <http://purl.org/swan/2.0/discourse-relationships/relatesTo> ;
	a owl:SymmetricProperty ;
	rdfs:comment """It connects two different resources that can be 
	    		considered alternative interpretations of the same experimental results"""^^<http://www.w3.org/2001/XMLSchema#string> .
