Tore Christiansen

Added Shutdown ontology

1 +# baseURI: http://data.posccaesar.org/ilap/shutdown/
2 +
3 +@prefix : <http://data.posccaesar.org/ilap/shutdown/> .
4 +@prefix owl: <http://www.w3.org/2002/07/owl#> .
5 +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
6 +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
7 +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
8 +
9 +: rdf:type owl:Ontology ;
10 + owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
11 +
12 +:After_Shutdown
13 + rdf:type :ShutdownOperation ;
14 + rdfs:label "After Shutdown"^^xsd:string .
15 +
16 +:Before_Shutdown
17 + rdf:type :ShutdownOperation ;
18 + rdfs:label "Before Shutdown"^^xsd:string .
19 +
20 +:Change_Order_Living_Quarter
21 + rdf:type :ShutdownContent ;
22 + rdfs:label "Change Order Living Quarter"^^xsd:string .
23 +
24 +:Change_over
25 + rdf:type :ShutdownType ;
26 + rdfs:label "Change over"^^xsd:string .
27 +
28 +:Critical
29 + rdf:type :ShutdownPriority ;
30 + rdfs:label "Critical"^^xsd:string .
31 +
32 +:During_Normal_Operation
33 + rdf:type :ShutdownOperation ;
34 + rdfs:label "During Normal Operation"^^xsd:string .
35 +
36 +:During_Shutdown
37 + rdf:type :ShutdownOperation ;
38 + rdfs:label "During Shutdown"^^xsd:string .
39 +
40 +:Equipment_Shutdown
41 + rdf:type :ShutdownContent ;
42 + rdfs:label "Equipment Shutdown"^^xsd:string .
43 +
44 +:Field_Shutdown
45 + rdf:type :ShutdownContent ;
46 + rdfs:label "Field Shutdown"^^xsd:string .
47 +
48 +:Living_Quarter_Shutdown
49 + rdf:type :ShutdownContent ;
50 + rdfs:label "Living Quarter Shutdown"^^xsd:string .
51 +
52 +:Mini_Shutdown
53 + rdf:type :ShutdownContent ;
54 + rdfs:label "Mini Shutdown"^^xsd:string .
55 +
56 +:Non-Scheduled_Shutdown
57 + rdf:type :ShutdownType ;
58 + rdfs:label "Non-Scheduled Shutdown"^^xsd:string .
59 +
60 +:Not_Critical
61 + rdf:type :ShutdownPriority ;
62 + rdfs:label "Not Critical"^^xsd:string .
63 +
64 +:Production_Shutdown
65 + rdf:type :ShutdownContent ;
66 + rdfs:label "Production Shutdown"^^xsd:string .
67 +
68 +:Revision_Shutdown
69 + rdf:type :ShutdownType ;
70 + rdfs:label "Revision Shutdown"^^xsd:string .
71 +
72 +:Scheduled_Shutdown
73 + rdf:type :ShutdownType ;
74 + rdfs:label "Scheduled Shutdown"^^xsd:string .
75 +
76 +:Shutdown
77 + rdf:type owl:Class ;
78 + rdfs:label "Shutdown"^^xsd:string ;
79 + rdfs:subClassOf owl:Thing .
80 +
81 +:ShutdownContent
82 + rdf:type owl:Class ;
83 + rdfs:label "Shutdown content"^^xsd:string ;
84 + rdfs:subClassOf owl:Thing .
85 +
86 +:ShutdownOperation
87 + rdf:type owl:Class ;
88 + rdfs:label "Shutdown operation"^^xsd:string ;
89 + rdfs:subClassOf owl:Thing .
90 +
91 +:ShutdownPeriod
92 + rdf:type owl:Class ;
93 + rdfs:label "Shutdown period"^^xsd:string ;
94 + rdfs:subClassOf owl:Thing .
95 +
96 +:ShutdownPriority
97 + rdf:type owl:Class ;
98 + rdfs:label "Shutdown priority"^^xsd:string ;
99 + rdfs:subClassOf owl:Thing .
100 +
101 +:ShutdownType
102 + rdf:type owl:Class ;
103 + rdfs:label "Shutdown type"^^xsd:string ;
104 + rdfs:subClassOf owl:Thing .
105 +
106 +:Train_Shutdown
107 + rdf:type :ShutdownContent ;
108 + rdfs:label "Train Shutdown"^^xsd:string .
109 +
110 +:Well_Transfer
111 + rdf:type :ShutdownContent ;
112 + rdfs:label "Well Transfer "^^xsd:string .
113 +
114 +:hasShutdownContent
115 + rdf:type owl:ObjectProperty ;
116 + rdfs:domain :Shutdown ;
117 + rdfs:label "has shutdown content"^^xsd:string ;
118 + rdfs:range :ShutdownContent .
119 +
120 +:hasShutdownEnd
121 + rdf:type owl:DatatypeProperty ;
122 + rdfs:domain :ShutdownOperation ;
123 + rdfs:label "has shutdwn end"^^xsd:string ;
124 + rdfs:range xsd:dateTime .
125 +
126 +:hasShutdownName
127 + rdf:type owl:DatatypeProperty ;
128 + rdfs:domain :Shutdown ;
129 + rdfs:label "has shutdown name"^^xsd:string ;
130 + rdfs:range xsd:string .
131 +
132 +:hasShutdownOperation
133 + rdf:type owl:ObjectProperty ;
134 + rdfs:domain :Shutdown ;
135 + rdfs:label "has shutdown operation"^^xsd:string ;
136 + rdfs:range :ShutdownOperation .
137 +
138 +:hasShutdownPeriod
139 + rdf:type owl:ObjectProperty ;
140 + rdfs:domain :Shutdown ;
141 + rdfs:label "Object property 1"^^xsd:string ;
142 + rdfs:range :ShutdownPeriod .
143 +
144 +:hasShutdownPriority
145 + rdf:type owl:ObjectProperty ;
146 + rdfs:domain :Shutdown ;
147 + rdfs:label "has shutdown priority"^^xsd:string ;
148 + rdfs:range :ShutdownPriority .
149 +
150 +:hasShutdownStart
151 + rdf:type owl:DatatypeProperty ;
152 + rdfs:domain :ShutdownOperation ;
153 + rdfs:label "has shutdown start"^^xsd:string ;
154 + rdfs:range xsd:dateTime .
155 +
156 +:hasShutdownType
157 + rdf:type owl:ObjectProperty ;
158 + rdfs:domain :Shutdown ;
159 + rdfs:label "has shutdown type"^^xsd:string ;
160 + rdfs:range :ShutdownType .