# $Date: 2009-06-20 22:12:01 -0400 (Sat, 20 Jun 2009) $
# $Revision: 26441 $
# $Author: lkagal $

# The Respect My Privacy Vocabulary Definition
# author: tkang@mit.edu

@prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix cc: <http://web.resource.org/cc/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix : <http://dig.csail.mit.edu/2008/02/rmp/rmp-schema#> .


:restricts a rdfs:Property;
	rdfs:comment "Applies a restriction";
	rdfs:label "restricts";
	rdfs:range :Restriction.

:Restriction a rdfs:Class;
	rdfs:comment "A privacy restriction";
	rdfs:label "Privacy Restriction".
		
:No-Commercial a :Restriction;
	rdfs:comment "The no-commercial restriction states that the owner of this profile does not want the information on this profile used for commercial purposes.";
	rdfs:label "No-Commercial".
	
:No-Depiction a :Restriction;
	rdfs:comment "The no-depiction restriction states that the owner of this profile does not want this profile associated with any pictures.";
	rdfs:label "No-Depiction".
	
:No-Employment a :Restriction;
	rdfs:comment "The no-employment restriction states that the owner of this profile does not want the information on this profile used for employment purposes.";
	rdfs:label "No-Employment".	

:No-Financial a :Restriction;
	rdfs:comment "The no-financial restriction states that the owner of this profile does not want the information on this profile used for financial decisions.";
	rdfs:label "No-Financial".	
	
:No-Medical a :Restriction;
	rdfs:comment "The no-medical restriction states that the owner of this profile does not want the information on this profile used for decisions related to medicine or medical care";
	rdfs:label "No-Medical".	
	

:Purpose a rdfs:Class;
	rdfs:comment "purpose";
	rdfs:label "Purpose or Use of data".

:use a rdfs:Property;
	rdfs:comment "Purpose of data";
	rdfs:label "purpose";
	rdfs:range :Purpose.

:Commercial a :Purpose;
        rdfs:label "Commercial";
        owl:differentFrom :No-Commercial.

:Depiction a :Purpose;
        rdfs:label "Depiction";
        owl:differentFrom :No-Depiction.

:Employment a :Purpose;
        rdfs:label "Employment";
        owl:differentFrom :No-Employment.

:Financial a :Purpose;
        rdfs:label "Financial";
        owl:differentFrom :No-Financial.

:Medical a :Purpose;
        rdfs:label "Medical";
        owl:differentFrom :No-Medical.

#ends

