Trinh H. Nguyen

add hasParentActivity

...@@ -14,6 +14,12 @@ ...@@ -14,6 +14,12 @@
14 rdf:type owl:Class ; 14 rdf:type owl:Class ;
15 rdfs:label "Acitivity"^^xsd:string ; 15 rdfs:label "Acitivity"^^xsd:string ;
16 rdfs:subClassOf owl:Thing ; 16 rdfs:subClassOf owl:Thing ;
17 + rdfs:subClassOf [
18 + rdf:type owl:Restriction ;
19 + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
20 + owl:onClass :Acitivity ;
21 + owl:onProperty :hasParentActivity ;
22 + ] ;
17 . 23 .
18 :Data 24 :Data
19 rdf:type owl:Class ; 25 rdf:type owl:Class ;
...@@ -49,7 +55,7 @@ ...@@ -49,7 +55,7 @@
49 rdfs:subClassOf owl:Thing ; 55 rdfs:subClassOf owl:Thing ;
50 rdfs:subClassOf [ 56 rdfs:subClassOf [
51 rdf:type owl:Restriction ; 57 rdf:type owl:Restriction ;
52 - owl:minCardinality "0"^^xsd:nonNegativeInteger ; 58 + owl:qualifiedCardinality "0"^^xsd:nonNegativeInteger ;
53 owl:onProperty :hasDescription ; 59 owl:onProperty :hasDescription ;
54 ] ; 60 ] ;
55 rdfs:subClassOf [ 61 rdfs:subClassOf [
......