Trinh H. Nguyen

added 1 data property (hasDescription) and 1 object property (hasSomethingElse) …

…-- for testing purpose
......@@ -36,6 +36,12 @@
owl:onClass :Acitivity ;
owl:onProperty :hasAcitivity ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onClass :SomethingElse ;
owl:onProperty :hasSomethingElse ;
owl:qualifiedCardinality "2"^^xsd:nonNegativeInteger ;
] ;
.
:Project
rdf:type owl:Class ;
......@@ -43,15 +49,29 @@
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minCardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty :hasDescription ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass :Plan ;
owl:onProperty :hasPlan ;
] ;
.
:SomethingElse
rdf:type owl:Class ;
rdfs:subClassOf owl:Thing ;
.
:hasAcitivity
rdf:type owl:ObjectProperty ;
rdfs:label "has acitivity"^^xsd:string ;
.
:hasDescription
rdf:type owl:DatatypeProperty ;
rdfs:domain :Project ;
rdfs:range xsd:string ;
.
:hasPlan
rdf:type owl:ObjectProperty ;
rdfs:label "has plan"^^xsd:string ;
......@@ -60,3 +80,6 @@
rdf:type owl:ObjectProperty ;
rdfs:label "has project"^^xsd:string ;
.
:hasSomethingElse
rdf:type owl:ObjectProperty ;
.
......