Tore Christiansen

Added documentation example for Calendar

Showing 60 changed files with 13 additions and 1 deletions
This diff could not be displayed because it is too large.
...@@ -679,6 +679,7 @@ ...@@ -679,6 +679,7 @@
679 . 679 .
680 :Calendar1 680 :Calendar1
681 rdf:type :Calendar ; 681 rdf:type :Calendar ;
682 + rdfs:label "Calendar 1"^^xsd:string ;
682 . 683 .
683 :CalendarDay 684 :CalendarDay
684 rdf:type owl:Class ; 685 rdf:type owl:Class ;
...@@ -731,7 +732,7 @@ ...@@ -731,7 +732,7 @@
731 :CalendarSet 732 :CalendarSet
732 rdf:type owl:Class ; 733 rdf:type owl:Class ;
733 :shouldHaveID "true" ; 734 :shouldHaveID "true" ;
734 - rdfs:comment "An Information Object that is a collection of Calendars."^^xsd:string ; 735 + rdfs:comment "A Class that is a collection of Calendars."^^xsd:string ;
735 rdfs:label "Calendar Set"^^xsd:string ; 736 rdfs:label "Calendar Set"^^xsd:string ;
736 rdfs:subClassOf owl:Class ; 737 rdfs:subClassOf owl:Class ;
737 rdfs:subClassOf [ 738 rdfs:subClassOf [
...@@ -1154,6 +1155,11 @@ ...@@ -1154,6 +1155,11 @@
1154 rdf:type rdfs:Class ; 1155 rdf:type rdfs:Class ;
1155 rdfs:subClassOf :PlanForEvent ; 1156 rdfs:subClassOf :PlanForEvent ;
1156 . 1157 .
1158 +:EngineeringManhours
1159 + rdf:type owl:Class ;
1160 + rdfs:subClassOf :TimeBasedResource ;
1161 + rdfs:subClassOf SCCS:COR_K ;
1162 +.
1157 :EquipmentShutdown 1163 :EquipmentShutdown
1158 rdf:type :ShutdownType ; 1164 rdf:type :ShutdownType ;
1159 rdfs:label "Equipment Shutdown"^^xsd:string ; 1165 rdfs:label "Equipment Shutdown"^^xsd:string ;
...@@ -2901,6 +2907,12 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2901,6 +2907,12 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2901 rdfs:subClassOf [ 2907 rdfs:subClassOf [
2902 rdf:type owl:Restriction ; 2908 rdf:type owl:Restriction ;
2903 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 2909 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
2910 + owl:onClass :Calendar ;
2911 + owl:onProperty :hasCalendar ;
2912 + ] ;
2913 + rdfs:subClassOf [
2914 + rdf:type owl:Restriction ;
2915 + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
2904 owl:onClass :CompletelyFreeField ; 2916 owl:onClass :CompletelyFreeField ;
2905 owl:onProperty :hasCompletelyFreeFieldDefinition ; 2917 owl:onProperty :hasCompletelyFreeFieldDefinition ;
2906 ] ; 2918 ] ;
......