Showing
1 changed file
with
14 additions
and
8 deletions
| ... | @@ -103,6 +103,13 @@ | ... | @@ -103,6 +103,13 @@ |
| 103 | rdf:type owl:Restriction ; | 103 | rdf:type owl:Restriction ; |
| 104 | :shouldUseAnyUri "true"^^xsd:boolean ; | 104 | :shouldUseAnyUri "true"^^xsd:boolean ; |
| 105 | owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; | 105 | owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; |
| 106 | + owl:onClass :ClassOfResult ; | ||
| 107 | + owl:onProperty :hasResult ; | ||
| 108 | + ] ; | ||
| 109 | + rdfs:subClassOf [ | ||
| 110 | + rdf:type owl:Restriction ; | ||
| 111 | + :shouldUseAnyUri "true"^^xsd:boolean ; | ||
| 112 | + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; | ||
| 106 | owl:onClass :Contractor ; | 113 | owl:onClass :Contractor ; |
| 107 | owl:onProperty :hasSubContractor ; | 114 | owl:onProperty :hasSubContractor ; |
| 108 | ] ; | 115 | ] ; |
| ... | @@ -143,13 +150,6 @@ | ... | @@ -143,13 +150,6 @@ |
| 143 | ] ; | 150 | ] ; |
| 144 | rdfs:subClassOf [ | 151 | rdfs:subClassOf [ |
| 145 | rdf:type owl:Restriction ; | 152 | rdf:type owl:Restriction ; |
| 146 | - :shouldUseAnyUri "true"^^xsd:boolean ; | ||
| 147 | - owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; | ||
| 148 | - owl:onClass :Result ; | ||
| 149 | - owl:onProperty :hasResult ; | ||
| 150 | - ] ; | ||
| 151 | - rdfs:subClassOf [ | ||
| 152 | - rdf:type owl:Restriction ; | ||
| 153 | :shouldUseRef "true"^^xsd:boolean ; | 153 | :shouldUseRef "true"^^xsd:boolean ; |
| 154 | owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; | 154 | owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; |
| 155 | owl:onClass :Calendar ; | 155 | owl:onClass :Calendar ; |
| ... | @@ -2022,12 +2022,18 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel | ... | @@ -2022,12 +2022,18 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel |
| 2022 | rdf:type owl:Class ; | 2022 | rdf:type owl:Class ; |
| 2023 | owl:unionOf ( | 2023 | owl:unionOf ( |
| 2024 | :CostBasedResource | 2024 | :CostBasedResource |
| 2025 | - :TimeBasedResourceValue | 2025 | + :TimeBasedResource |
| 2026 | ) ; | 2026 | ) ; |
| 2027 | ] ; | 2027 | ] ; |
| 2028 | rdfs:subClassOf [ | 2028 | rdfs:subClassOf [ |
| 2029 | rdf:type owl:Restriction ; | 2029 | rdf:type owl:Restriction ; |
| 2030 | owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; | 2030 | owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; |
| 2031 | + owl:onClass :ClassOfResource ; | ||
| 2032 | + owl:onProperty :hasResourceType ; | ||
| 2033 | + ] ; | ||
| 2034 | + rdfs:subClassOf [ | ||
| 2035 | + rdf:type owl:Restriction ; | ||
| 2036 | + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; | ||
| 2031 | owl:onClass :CompletelyFreeField ; | 2037 | owl:onClass :CompletelyFreeField ; |
| 2032 | owl:onProperty :hasCompletelyFreeFieldDefinition ; | 2038 | owl:onProperty :hasCompletelyFreeFieldDefinition ; |
| 2033 | ] ; | 2039 | ] ; | ... | ... |
-
Please register or login to post a comment