Showing
7 changed files
with
3405 additions
and
0 deletions
1 | +<?xml version="1.0"?> | ||
2 | + | ||
3 | + | ||
4 | +<!DOCTYPE rdf:RDF [ | ||
5 | + <!ENTITY owl "http://www.w3.org/2002/07/owl#" > | ||
6 | + <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > | ||
7 | + <!ENTITY owl2xml "http://www.w3.org/2006/12/owl2-xml#" > | ||
8 | + <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" > | ||
9 | + <!ENTITY rdl "http://rdl.example.org/sampleReferenceData#" > | ||
10 | + <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" > | ||
11 | + <!ENTITY p7tm "http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#" > | ||
12 | + <!ENTITY dm "http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#" > | ||
13 | + <!ENTITY p7tpl "http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#" > | ||
14 | + <!ENTITY meta "http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/metadata#" > | ||
15 | +]> | ||
16 | + | ||
17 | + | ||
18 | +<rdf:RDF xmlns="http://rdl.example.org/sampleReferenceData#" | ||
19 | + xml:base="http://rdl.example.org/sampleReferenceData" | ||
20 | + xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" | ||
21 | + xmlns:p7tm="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#" | ||
22 | + xmlns:p7tpl="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#" | ||
23 | + xmlns:rdl="http://rdl.example.org/sampleReferenceData#" | ||
24 | + xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | ||
25 | + xmlns:dm="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#" | ||
26 | + xmlns:meta="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/metadata#" | ||
27 | + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" | ||
28 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
29 | + xmlns:owl="http://www.w3.org/2002/07/owl#"> | ||
30 | + <owl:Ontology rdf:about=""> | ||
31 | + <rdfs:comment | ||
32 | + >This ontology contains examples of how a Reference Data Library can be represented using the OWL native Part 8 format.</rdfs:comment> | ||
33 | + <owl:imports rdf:resource="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model"/> | ||
34 | + <owl:imports rdf:resource="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/metadata"/> | ||
35 | + </owl:Ontology> | ||
36 | + | ||
37 | + | ||
38 | + | ||
39 | + | ||
40 | + <!-- | ||
41 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
42 | + // | ||
43 | + // Classes | ||
44 | + // | ||
45 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
46 | + --> | ||
47 | + | ||
48 | + | ||
49 | + | ||
50 | + | ||
51 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Activity --> | ||
52 | + | ||
53 | + <owl:Class rdf:about="&dm;Activity"/> | ||
54 | + | ||
55 | + | ||
56 | + | ||
57 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#ArrangedIndividual --> | ||
58 | + | ||
59 | + <owl:Class rdf:about="&dm;ArrangedIndividual"/> | ||
60 | + | ||
61 | + | ||
62 | + | ||
63 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#AssemblyOfIndividual --> | ||
64 | + | ||
65 | + <owl:Class rdf:about="&dm;AssemblyOfIndividual"/> | ||
66 | + | ||
67 | + | ||
68 | + | ||
69 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#PossibleIndividual --> | ||
70 | + | ||
71 | + <owl:Class rdf:about="&dm;PossibleIndividual"/> | ||
72 | + | ||
73 | + | ||
74 | + | ||
75 | + <!-- http://rdl.example.org/sampleReferenceData#Driving --> | ||
76 | + | ||
77 | + <owl:Class rdf:about="#Driving"> | ||
78 | + <meta:annUniqueName>Driving</meta:annUniqueName> | ||
79 | + <rdfs:subClassOf rdf:resource="&dm;Activity"/> | ||
80 | + </owl:Class> | ||
81 | + | ||
82 | + | ||
83 | + | ||
84 | + <!-- http://rdl.example.org/sampleReferenceData#Equipment --> | ||
85 | + | ||
86 | + <owl:Class rdf:about="#Equipment"> | ||
87 | + <rdfs:subClassOf rdf:resource="&dm;ArrangedIndividual"/> | ||
88 | + <rdfs:comment | ||
89 | + >Sample class for AssemblyRelation example.</rdfs:comment> | ||
90 | + </owl:Class> | ||
91 | + | ||
92 | + | ||
93 | + | ||
94 | + <!-- http://rdl.example.org/sampleReferenceData#EquipmentHasNozzle --> | ||
95 | + | ||
96 | + <owl:Class rdf:about="#EquipmentHasNozzle"> | ||
97 | + <rdfs:subClassOf rdf:resource="&dm;AssemblyOfIndividual"/> | ||
98 | + <rdfs:comment | ||
99 | + >Sample class for AssemblyRelation example.</rdfs:comment> | ||
100 | + </owl:Class> | ||
101 | + | ||
102 | + | ||
103 | + | ||
104 | + <!-- http://rdl.example.org/sampleReferenceData#HardWork --> | ||
105 | + | ||
106 | + <owl:Class rdf:about="#HardWork"> | ||
107 | + <meta:annUniqueName>HardWork</meta:annUniqueName> | ||
108 | + <rdfs:subClassOf rdf:resource="&dm;Activity"/> | ||
109 | + </owl:Class> | ||
110 | + | ||
111 | + | ||
112 | + | ||
113 | + <!-- http://rdl.example.org/sampleReferenceData#Nozzle --> | ||
114 | + | ||
115 | + <owl:Class rdf:about="#Nozzle"> | ||
116 | + <rdfs:subClassOf rdf:resource="&dm;PossibleIndividual"/> | ||
117 | + <rdfs:comment | ||
118 | + >Sample class for AssemblyRelation example.</rdfs:comment> | ||
119 | + </owl:Class> | ||
120 | + | ||
121 | + | ||
122 | + | ||
123 | + <!-- http://rdl.example.org/sampleReferenceData#Person --> | ||
124 | + | ||
125 | + <owl:Class rdf:about="#Person"> | ||
126 | + <meta:annUniqueName>Person</meta:annUniqueName> | ||
127 | + <rdfs:subClassOf rdf:resource="&dm;PossibleIndividual"/> | ||
128 | + </owl:Class> | ||
129 | + | ||
130 | + | ||
131 | + | ||
132 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSegment --> | ||
133 | + | ||
134 | + <owl:Class rdf:about="#PipingNetworkSegment"> | ||
135 | + <meta:annUniqueName | ||
136 | + >PipingNetworkSegment</meta:annUniqueName> | ||
137 | + <rdfs:subClassOf rdf:resource="&dm;PossibleIndividual"/> | ||
138 | + <rdfs:comment | ||
139 | + >Sample class for AssemblyRelation example.</rdfs:comment> | ||
140 | + </owl:Class> | ||
141 | + | ||
142 | + | ||
143 | + | ||
144 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSystem --> | ||
145 | + | ||
146 | + <owl:Class rdf:about="#PipingNetworkSystem"> | ||
147 | + <meta:annUniqueName | ||
148 | + >PipingNetworkSystem</meta:annUniqueName> | ||
149 | + <rdfs:subClassOf rdf:resource="&dm;ArrangedIndividual"/> | ||
150 | + <rdfs:comment | ||
151 | + >Sample class for AssemblyRelation example.</rdfs:comment> | ||
152 | + </owl:Class> | ||
153 | + | ||
154 | + | ||
155 | + | ||
156 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSystemHasSegment --> | ||
157 | + | ||
158 | + <owl:Class rdf:about="#PipingNetworkSystemHasSegment"> | ||
159 | + <meta:annUniqueName | ||
160 | + >PipingNetworkSystemHasSegment</meta:annUniqueName> | ||
161 | + <rdfs:subClassOf rdf:resource="&dm;AssemblyOfIndividual"/> | ||
162 | + <rdfs:comment | ||
163 | + >Sample class for AssemblyRelation example.</rdfs:comment> | ||
164 | + </owl:Class> | ||
165 | + | ||
166 | + | ||
167 | + | ||
168 | + <!-- http://www.w3.org/2002/07/owl#Thing --> | ||
169 | + | ||
170 | + <owl:Class rdf:about="&owl;Thing"/> | ||
171 | + | ||
172 | + | ||
173 | + | ||
174 | + <!-- | ||
175 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
176 | + // | ||
177 | + // Individuals | ||
178 | + // | ||
179 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
180 | + --> | ||
181 | + | ||
182 | + | ||
183 | + | ||
184 | + | ||
185 | + <!-- http://rdl.example.org/sampleReferenceData#Person --> | ||
186 | + | ||
187 | + <owl:Thing rdf:about="#Person"/> | ||
188 | + | ||
189 | + | ||
190 | + | ||
191 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSegment --> | ||
192 | + | ||
193 | + <owl:Thing rdf:about="#PipingNetworkSegment"/> | ||
194 | + | ||
195 | + | ||
196 | + | ||
197 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSystem --> | ||
198 | + | ||
199 | + <owl:Thing rdf:about="#PipingNetworkSystem"/> | ||
200 | + | ||
201 | + | ||
202 | + | ||
203 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSystemHasSegment --> | ||
204 | + | ||
205 | + <owl:Thing rdf:about="#PipingNetworkSystemHasSegment"/> | ||
206 | +</rdf:RDF> | ||
207 | + | ||
208 | + | ||
209 | + | ||
210 | +<!-- Generated by the OWL API (version 2.2.1.1138) http://owlapi.sourceforge.net --> | ||
211 | + |
1 | +<?xml version="1.0"?> | ||
2 | + | ||
3 | + | ||
4 | +<!DOCTYPE rdf:RDF [ | ||
5 | + <!ENTITY owl "http://www.w3.org/2002/07/owl#" > | ||
6 | + <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > | ||
7 | + <!ENTITY owl2xml "http://www.w3.org/2006/12/owl2-xml#" > | ||
8 | + <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" > | ||
9 | + <!ENTITY tpl "http://rdl.example.org/sampleTemplates#" > | ||
10 | + <!ENTITY RDL "http://rdl.example.org/sampleReferenceData#" > | ||
11 | + <!ENTITY inst "http://data.mycompany.com/sampleInstances#" > | ||
12 | + <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" > | ||
13 | + <!ENTITY sampleInstances "http://data.mycompany.com/sampleInstances#" > | ||
14 | + <!ENTITY p7tm "http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#" > | ||
15 | + <!ENTITY dm "http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#" > | ||
16 | + <!ENTITY p7tpl "http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#" > | ||
17 | + <!ENTITY meta "http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/metadata#" > | ||
18 | +]> | ||
19 | + | ||
20 | + | ||
21 | +<rdf:RDF xmlns="http://data.mycompany.com/sampleInstances#" | ||
22 | + xml:base="http://data.mycompany.com/sampleInstances" | ||
23 | + xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" | ||
24 | + xmlns:p7tm="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#" | ||
25 | + xmlns:p7tpl="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#" | ||
26 | + xmlns:sampleInstances="http://data.mycompany.com/sampleInstances#" | ||
27 | + xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | ||
28 | + xmlns:dm="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#" | ||
29 | + xmlns:meta="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/metadata#" | ||
30 | + xmlns:tpl="http://rdl.example.org/sampleTemplates#" | ||
31 | + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" | ||
32 | + xmlns:RDL="http://rdl.example.org/sampleReferenceData#" | ||
33 | + xmlns:owl="http://www.w3.org/2002/07/owl#" | ||
34 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> | ||
35 | + <owl:Ontology rdf:about=""> | ||
36 | + <rdfs:comment | ||
37 | + >This ontology is for collecting various example instantiations of Part 8 classes. This ontology should *not* contain any class or property (relation) definitions.</rdfs:comment> | ||
38 | + <owl:imports rdf:resource="http://rdl.example.org/sampleTemplates"/> | ||
39 | + </owl:Ontology> | ||
40 | + | ||
41 | + | ||
42 | + | ||
43 | + <!-- | ||
44 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
45 | + // | ||
46 | + // Object Properties | ||
47 | + // | ||
48 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
49 | + --> | ||
50 | + | ||
51 | + | ||
52 | + | ||
53 | + | ||
54 | + <!-- http://rdl.example.org/sampleTemplates#hasAssemblyType --> | ||
55 | + | ||
56 | + <owl:ObjectProperty rdf:about="&tpl;hasAssemblyType"/> | ||
57 | + | ||
58 | + | ||
59 | + | ||
60 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasClassOfPart --> | ||
61 | + | ||
62 | + <owl:ObjectProperty rdf:about="&p7tpl;hasClassOfPart"/> | ||
63 | + | ||
64 | + | ||
65 | + | ||
66 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasClassOfWhole --> | ||
67 | + | ||
68 | + <owl:ObjectProperty rdf:about="&p7tpl;hasClassOfWhole"/> | ||
69 | + | ||
70 | + | ||
71 | + | ||
72 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasPart --> | ||
73 | + | ||
74 | + <owl:ObjectProperty rdf:about="&p7tpl;hasPart"/> | ||
75 | + | ||
76 | + | ||
77 | + | ||
78 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasWhole --> | ||
79 | + | ||
80 | + <owl:ObjectProperty rdf:about="&p7tpl;hasWhole"/> | ||
81 | + | ||
82 | + | ||
83 | + | ||
84 | + <!-- | ||
85 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
86 | + // | ||
87 | + // Data properties | ||
88 | + // | ||
89 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
90 | + --> | ||
91 | + | ||
92 | + | ||
93 | + | ||
94 | + | ||
95 | + <!-- http://rdl.example.org/sampleTemplates#valMaximumCardinalityOfPart --> | ||
96 | + | ||
97 | + <owl:DatatypeProperty rdf:about="&tpl;valMaximumCardinalityOfPart"/> | ||
98 | + | ||
99 | + | ||
100 | + | ||
101 | + <!-- http://rdl.example.org/sampleTemplates#valMaximumCardinalityOfWhole --> | ||
102 | + | ||
103 | + <owl:DatatypeProperty rdf:about="&tpl;valMaximumCardinalityOfWhole"/> | ||
104 | + | ||
105 | + | ||
106 | + | ||
107 | + <!-- http://rdl.example.org/sampleTemplates#valMinimumCardinalityOfPart --> | ||
108 | + | ||
109 | + <owl:DatatypeProperty rdf:about="&tpl;valMinimumCardinalityOfPart"/> | ||
110 | + | ||
111 | + | ||
112 | + | ||
113 | + <!-- http://rdl.example.org/sampleTemplates#valMinimumCardinalityOfWhole --> | ||
114 | + | ||
115 | + <owl:DatatypeProperty rdf:about="&tpl;valMinimumCardinalityOfWhole"/> | ||
116 | + | ||
117 | + | ||
118 | + | ||
119 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#valStartTime --> | ||
120 | + | ||
121 | + <owl:DatatypeProperty rdf:about="&p7tpl;valStartTime"/> | ||
122 | + | ||
123 | + | ||
124 | + | ||
125 | + <!-- | ||
126 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
127 | + // | ||
128 | + // Classes | ||
129 | + // | ||
130 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
131 | + --> | ||
132 | + | ||
133 | + | ||
134 | + | ||
135 | + | ||
136 | + <!-- http://rdl.example.org/sampleReferenceData#Driving --> | ||
137 | + | ||
138 | + <owl:Class rdf:about="&RDL;Driving"/> | ||
139 | + | ||
140 | + | ||
141 | + | ||
142 | + <!-- http://rdl.example.org/sampleReferenceData#Person --> | ||
143 | + | ||
144 | + <owl:Class rdf:about="&RDL;Person"/> | ||
145 | + | ||
146 | + | ||
147 | + | ||
148 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSegment --> | ||
149 | + | ||
150 | + <owl:Class rdf:about="&RDL;PipingNetworkSegment"/> | ||
151 | + | ||
152 | + | ||
153 | + | ||
154 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSystem --> | ||
155 | + | ||
156 | + <owl:Class rdf:about="&RDL;PipingNetworkSystem"/> | ||
157 | + | ||
158 | + | ||
159 | + | ||
160 | + <!-- http://rdl.example.org/sampleTemplates#AssemblyRelation --> | ||
161 | + | ||
162 | + <owl:Class rdf:about="&tpl;AssemblyRelation"/> | ||
163 | + | ||
164 | + | ||
165 | + | ||
166 | + <!-- http://rdl.example.org/sampleTemplates#BeginningOfPerson_dateAsEventObject --> | ||
167 | + | ||
168 | + <owl:Class rdf:about="&tpl;BeginningOfPerson_dateAsEventObject"/> | ||
169 | + | ||
170 | + | ||
171 | + | ||
172 | + <!-- http://rdl.example.org/sampleTemplates#BeginningOfPerson_dateAsXsdTime --> | ||
173 | + | ||
174 | + <owl:Class rdf:about="&tpl;BeginningOfPerson_dateAsXsdTime"/> | ||
175 | + | ||
176 | + | ||
177 | + | ||
178 | + <!-- http://rdl.example.org/sampleTemplates#PipingNetworkSystemHasSegment --> | ||
179 | + | ||
180 | + <owl:Class rdf:about="&tpl;PipingNetworkSystemHasSegment"/> | ||
181 | + | ||
182 | + | ||
183 | + | ||
184 | + <!-- http://www.w3.org/2002/07/owl#Thing --> | ||
185 | + | ||
186 | + <owl:Class rdf:about="&owl;Thing"/> | ||
187 | + | ||
188 | + | ||
189 | + | ||
190 | + <!-- | ||
191 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
192 | + // | ||
193 | + // Individuals | ||
194 | + // | ||
195 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
196 | + --> | ||
197 | + | ||
198 | + | ||
199 | + | ||
200 | + | ||
201 | + <!-- http://data.mycompany.com/sampleInstances#BZ-001 --> | ||
202 | + | ||
203 | + <RDL:PipingNetworkSystem rdf:about="#1-BZ-001"> | ||
204 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
205 | + <rdfs:label>1-BZ-001</rdfs:label> | ||
206 | + <rdfs:comment | ||
207 | + >An individual for the "AssemblyRelation" example.</rdfs:comment> | ||
208 | + </RDL:PipingNetworkSystem> | ||
209 | + | ||
210 | + | ||
211 | + | ||
212 | + <!-- http://data.mycompany.com/sampleInstances#BZ-001-01 --> | ||
213 | + | ||
214 | + <RDL:PipingNetworkSegment rdf:about="#1-BZ-001-01"> | ||
215 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
216 | + <rdfs:label>1-BZ-001-01</rdfs:label> | ||
217 | + </RDL:PipingNetworkSegment> | ||
218 | + | ||
219 | + | ||
220 | + | ||
221 | + <!-- http://data.mycompany.com/sampleInstances#BZ-001-02 --> | ||
222 | + | ||
223 | + <owl:Thing rdf:about="#1-BZ-001-02"> | ||
224 | + <rdf:type rdf:resource="&RDL;PipingNetworkSegment"/> | ||
225 | + <rdfs:label>1-BZ-001-02</rdfs:label> | ||
226 | + </owl:Thing> | ||
227 | + | ||
228 | + | ||
229 | + | ||
230 | + <!-- http://data.mycompany.com/sampleInstances#BZ-001-03 --> | ||
231 | + | ||
232 | + <RDL:PipingNetworkSegment rdf:about="#1-BZ-001-03"> | ||
233 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
234 | + <rdfs:label>1-BZ-001-03</rdfs:label> | ||
235 | + </RDL:PipingNetworkSegment> | ||
236 | + | ||
237 | + | ||
238 | + | ||
239 | + <!-- http://data.mycompany.com/sampleInstances#WG-002 --> | ||
240 | + | ||
241 | + <owl:Thing rdf:about="#1-WG-002"> | ||
242 | + <rdf:type rdf:resource="&RDL;PipingNetworkSystem"/> | ||
243 | + <rdfs:label>1-WG-002</rdfs:label> | ||
244 | + <rdfs:comment | ||
245 | + >An individual for the "AssemblyRelation" example.</rdfs:comment> | ||
246 | + </owl:Thing> | ||
247 | + | ||
248 | + | ||
249 | + | ||
250 | + <!-- http://data.mycompany.com/sampleInstances#WG-002-01 --> | ||
251 | + | ||
252 | + <RDL:PipingNetworkSegment rdf:about="#1-WG-002-01"> | ||
253 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
254 | + <rdfs:label>1-WG-002-01</rdfs:label> | ||
255 | + </RDL:PipingNetworkSegment> | ||
256 | + | ||
257 | + | ||
258 | + | ||
259 | + <!-- http://data.mycompany.com/sampleInstances#WG-002-02 --> | ||
260 | + | ||
261 | + <owl:Thing rdf:about="#1-WG-002-02"> | ||
262 | + <rdf:type rdf:resource="&RDL;PipingNetworkSegment"/> | ||
263 | + <rdfs:label>1-WG-002-02</rdfs:label> | ||
264 | + </owl:Thing> | ||
265 | + | ||
266 | + | ||
267 | + | ||
268 | + <!-- http://data.mycompany.com/sampleInstances#Alfred --> | ||
269 | + | ||
270 | + <owl:Thing rdf:about="#Alfred"> | ||
271 | + <rdf:type rdf:resource="&RDL;Person"/> | ||
272 | + <rdfs:label>Alfred</rdfs:label> | ||
273 | + </owl:Thing> | ||
274 | + | ||
275 | + | ||
276 | + <!-- http://data.mycompany.com/sampleInstances#Beginning_of_Alfred_statement_datestamp --> | ||
277 | + <owl:Thing rdf:about="#Beginning_of_Alfred_statement_datestamp"> | ||
278 | + <rdf:type rdf:resource="&tpl;BeginningOfPerson_dateAsXsdTime"/> | ||
279 | + <p7tpl:valStartTime rdf:datatype="&xsd;dateTime">1970-01-01T00:00:00</p7tpl:valStartTime> | ||
280 | + <p7tpl:hasWhole rdf:resource="#Alfred"/> | ||
281 | + </owl:Thing> | ||
282 | + | ||
283 | + | ||
284 | + <!-- http://data.mycompany.com/sampleInstances#Beginning_of_Alfred_statement_event --> | ||
285 | + | ||
286 | + <owl:Thing rdf:about="#Beginning_of_Alfred_statement_event"> | ||
287 | + <rdf:type rdf:resource="&tpl;BeginningOfPerson_dateAsEventObject"/> | ||
288 | + <p7tpl:hasWhole rdf:resource="#Alfred"/> | ||
289 | + <p7tpl:hasPart rdf:resource="#_1970-01-01"/> | ||
290 | + </owl:Thing> | ||
291 | + | ||
292 | + | ||
293 | + | ||
294 | + <!-- http://data.mycompany.com/sampleInstances#MyDrive --> | ||
295 | + | ||
296 | + <RDL:Driving rdf:about="#MyDrive"> | ||
297 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
298 | + <rdfs:label>MyDrive</rdfs:label> | ||
299 | + </RDL:Driving> | ||
300 | + | ||
301 | + | ||
302 | + | ||
303 | + <!-- http://data.mycompany.com/sampleInstances#RxL-001x --> | ||
304 | + | ||
305 | + <owl:Thing rdf:about="#RxL-001x"> | ||
306 | + <rdf:type rdf:resource="&RDL;PipingNetworkSystem"/> | ||
307 | + <rdfs:label>RxL-001x</rdfs:label> | ||
308 | + <rdfs:comment | ||
309 | + >An individual for the "AssemblyRelation" example.</rdfs:comment> | ||
310 | + </owl:Thing> | ||
311 | + | ||
312 | + | ||
313 | + | ||
314 | + <!-- http://data.mycompany.com/sampleInstances#RxS-001x --> | ||
315 | + | ||
316 | + <owl:Thing rdf:about="#RxS-001x"> | ||
317 | + <rdf:type rdf:resource="&RDL;PipingNetworkSegment"/> | ||
318 | + <rdfs:label>RxS-001x</rdfs:label> | ||
319 | + </owl:Thing> | ||
320 | + | ||
321 | + | ||
322 | + | ||
323 | + <!-- http://data.mycompany.com/sampleInstances#RxS-002x --> | ||
324 | + | ||
325 | + <RDL:PipingNetworkSegment rdf:about="#RxS-002x"> | ||
326 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
327 | + <rdfs:label>RxS-002x</rdfs:label> | ||
328 | + </RDL:PipingNetworkSegment> | ||
329 | + | ||
330 | + | ||
331 | + | ||
332 | + <!-- http://data.mycompany.com/sampleInstances#_1970-01-01 --> | ||
333 | + | ||
334 | + <owl:Thing rdf:about="#_1970-01-01"> | ||
335 | + <rdfs:label | ||
336 | + >This individual represents the event/the point in time 1970-01-01, as an individual (not as a "data" value).</rdfs:label> | ||
337 | + </owl:Thing> | ||
338 | + | ||
339 | + | ||
340 | + | ||
341 | + <!-- http://data.mycompany.com/sampleInstances#sample_statement_AssemblyRelation_Nozzle --> | ||
342 | + | ||
343 | + <tpl:AssemblyRelation rdf:about="#sample_statement_AssemblyRelation_Nozzle"> | ||
344 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
345 | + <rdfs:label | ||
346 | + >PipingSegment_statement</rdfs:label> | ||
347 | + <tpl:valMinimumCardinalityOfPart rdf:datatype="&xsd;double">1</tpl:valMinimumCardinalityOfPart> | ||
348 | + <tpl:valMinimumCardinalityOfWhole rdf:datatype="&xsd;double">1</tpl:valMinimumCardinalityOfWhole> | ||
349 | + <tpl:valMaximumCardinalityOfWhole rdf:datatype="&xsd;double">1</tpl:valMaximumCardinalityOfWhole> | ||
350 | + <tpl:valMaximumCardinalityOfPart rdf:datatype="&xsd;double">INF</tpl:valMaximumCardinalityOfPart> | ||
351 | + <p7tpl:hasClassOfWhole rdf:resource="&RDL;Equipment"/> | ||
352 | + <tpl:hasAssemblyType rdf:resource="&RDL;EquipmentHasNozzles"/> | ||
353 | + <p7tpl:hasClassOfPart rdf:resource="&RDL;Nozzle"/> | ||
354 | + </tpl:AssemblyRelation> | ||
355 | + | ||
356 | + | ||
357 | + | ||
358 | + <!-- http://data.mycompany.com/sampleInstances#sample_statement_AssemblyRelation_PipingSegment --> | ||
359 | + | ||
360 | + <tpl:AssemblyRelation rdf:about="#sample_statement_AssemblyRelation_PipingSegment"> | ||
361 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
362 | + <rdfs:label | ||
363 | + >PipingSegment_statement</rdfs:label> | ||
364 | + <tpl:valMinimumCardinalityOfPart rdf:datatype="&xsd;double">1</tpl:valMinimumCardinalityOfPart> | ||
365 | + <tpl:valMinimumCardinalityOfWhole rdf:datatype="&xsd;double">1</tpl:valMinimumCardinalityOfWhole> | ||
366 | + <tpl:valMaximumCardinalityOfWhole rdf:datatype="&xsd;double">1</tpl:valMaximumCardinalityOfWhole> | ||
367 | + <tpl:valMaximumCardinalityOfPart rdf:datatype="&xsd;double">INF</tpl:valMaximumCardinalityOfPart> | ||
368 | + <p7tpl:hasClassOfPart rdf:resource="&RDL;PipingNetworkSegment"/> | ||
369 | + <p7tpl:hasClassOfWhole rdf:resource="&RDL;PipingNetworkSystem"/> | ||
370 | + <tpl:hasAssemblyType rdf:resource="&RDL;PipingNetworkSystemHasSegment"/> | ||
371 | + </tpl:AssemblyRelation> | ||
372 | + | ||
373 | + | ||
374 | + | ||
375 | + <!-- http://data.mycompany.com/sampleInstances#sample_statement_PipingNetworkHasSegment_001 --> | ||
376 | + | ||
377 | + <owl:Thing rdf:about="#sample_statement_PipingNetworkHasSegment_001"> | ||
378 | + <rdf:type rdf:resource="&tpl;PipingNetworkSystemHasSegment"/> | ||
379 | + <rdfs:label | ||
380 | + >sample_statement_PipingNetworkHasSegments_001</rdfs:label> | ||
381 | + <rdfs:comment | ||
382 | + >Example taken from AssemblyRelation.ppt, slide 10.</rdfs:comment> | ||
383 | + <p7tpl:hasWhole rdf:resource="#RxL-001x"/> | ||
384 | + <p7tpl:hasPart rdf:resource="#RxS-001x"/> | ||
385 | + <tpl:hasAssemblyType rdf:resource="&RDL;PipingNetworkSystemHasSegment"/> | ||
386 | + </owl:Thing> | ||
387 | + | ||
388 | + | ||
389 | + | ||
390 | + <!-- http://data.mycompany.com/sampleInstances#sample_statement_PipingNetworkHasSegment_002 --> | ||
391 | + | ||
392 | + <owl:Thing rdf:about="#sample_statement_PipingNetworkHasSegment_002"> | ||
393 | + <rdf:type rdf:resource="&tpl;PipingNetworkSystemHasSegment"/> | ||
394 | + <rdfs:label | ||
395 | + >sample_statement_PipingNetworkHasSegments_002</rdfs:label> | ||
396 | + <rdfs:comment | ||
397 | + >Example taken from AssemblyRelation.ppt, slide 10.</rdfs:comment> | ||
398 | + <p7tpl:hasWhole rdf:resource="#RxL-001x"/> | ||
399 | + <p7tpl:hasPart rdf:resource="#RxS-002x"/> | ||
400 | + <tpl:hasAssemblyType rdf:resource="&RDL;PipingNetworkSystemHasSegment"/> | ||
401 | + </owl:Thing> | ||
402 | + | ||
403 | + | ||
404 | + | ||
405 | + <!-- http://data.mycompany.com/sampleInstances#sample_statement_PipingNetworkHasSegment_003 --> | ||
406 | + | ||
407 | + <tpl:PipingNetworkSystemHasSegment rdf:about="#sample_statement_PipingNetworkHasSegment_003"> | ||
408 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
409 | + <rdfs:label | ||
410 | + >sample_statement_PipingNetworkHasSegments_003</rdfs:label> | ||
411 | + <rdfs:comment | ||
412 | + >Example taken from AssemblyRelation.ppt, slide 10.</rdfs:comment> | ||
413 | + <p7tpl:hasWhole rdf:resource="#1-BZ-001"/> | ||
414 | + <p7tpl:hasPart rdf:resource="#1-BZ-001-01"/> | ||
415 | + <tpl:hasAssemblyType rdf:resource="&RDL;PipingNetworkSystemHasSegment"/> | ||
416 | + </tpl:PipingNetworkSystemHasSegment> | ||
417 | + | ||
418 | + | ||
419 | + | ||
420 | + <!-- http://data.mycompany.com/sampleInstances#sample_statement_PipingNetworkHasSegment_004 --> | ||
421 | + | ||
422 | + <tpl:PipingNetworkSystemHasSegment rdf:about="#sample_statement_PipingNetworkHasSegment_004"> | ||
423 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
424 | + <rdfs:label | ||
425 | + >sample_statement_PipingNetworkHasSegments_004</rdfs:label> | ||
426 | + <rdfs:comment | ||
427 | + >Example taken from AssemblyRelation.ppt, slide 10.</rdfs:comment> | ||
428 | + <p7tpl:hasWhole rdf:resource="#1-BZ-001"/> | ||
429 | + <p7tpl:hasPart rdf:resource="#1-BZ-001-02"/> | ||
430 | + <tpl:hasAssemblyType rdf:resource="&RDL;PipingNetworkSystemHasSegment"/> | ||
431 | + </tpl:PipingNetworkSystemHasSegment> | ||
432 | + | ||
433 | + | ||
434 | + | ||
435 | + <!-- http://data.mycompany.com/sampleInstances#sample_statement_PipingNetworkHasSegment_005 --> | ||
436 | + | ||
437 | + <tpl:PipingNetworkSystemHasSegment rdf:about="#sample_statement_PipingNetworkHasSegment_005"> | ||
438 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
439 | + <rdfs:label | ||
440 | + >sample_statement_PipingNetworkHasSegments_005</rdfs:label> | ||
441 | + <rdfs:comment | ||
442 | + >Example taken from AssemblyRelation.ppt, slide 10.</rdfs:comment> | ||
443 | + <p7tpl:hasWhole rdf:resource="#1-BZ-001"/> | ||
444 | + <p7tpl:hasPart rdf:resource="#1-BZ-001-03"/> | ||
445 | + <tpl:hasAssemblyType rdf:resource="&RDL;PipingNetworkSystemHasSegment"/> | ||
446 | + </tpl:PipingNetworkSystemHasSegment> | ||
447 | + | ||
448 | + | ||
449 | + | ||
450 | + <!-- http://data.mycompany.com/sampleInstances#sample_statement_PipingNetworkHasSegment_006 --> | ||
451 | + | ||
452 | + <tpl:PipingNetworkSystemHasSegment rdf:about="#sample_statement_PipingNetworkHasSegment_006"> | ||
453 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
454 | + <rdfs:label | ||
455 | + >sample_statement_PipingNetworkHasSegments_006</rdfs:label> | ||
456 | + <rdfs:comment | ||
457 | + >Example taken from AssemblyRelation.ppt, slide 10.</rdfs:comment> | ||
458 | + <p7tpl:hasWhole rdf:resource="#1-WG-002"/> | ||
459 | + <p7tpl:hasPart rdf:resource="#1-WG-002-01"/> | ||
460 | + <tpl:hasAssemblyType rdf:resource="&RDL;PipingNetworkSystemHasSegment"/> | ||
461 | + </tpl:PipingNetworkSystemHasSegment> | ||
462 | + | ||
463 | + | ||
464 | + | ||
465 | + <!-- http://data.mycompany.com/sampleInstances#sample_statement_PipingNetworkHasSegment_007 --> | ||
466 | + | ||
467 | + <owl:Thing rdf:about="#sample_statement_PipingNetworkHasSegment_007"> | ||
468 | + <rdf:type rdf:resource="&tpl;PipingNetworkSystemHasSegment"/> | ||
469 | + <rdfs:label | ||
470 | + >sample_statement_PipingNetworkHasSegments_007</rdfs:label> | ||
471 | + <rdfs:comment | ||
472 | + >Example taken from AssemblyRelation.ppt, slide 10.</rdfs:comment> | ||
473 | + <p7tpl:hasWhole rdf:resource="#1-WG-002"/> | ||
474 | + <p7tpl:hasPart rdf:resource="#1-WG-002-02"/> | ||
475 | + <tpl:hasAssemblyType rdf:resource="&RDL;PipingNetworkSystemHasSegment"/> | ||
476 | + </owl:Thing> | ||
477 | + | ||
478 | + | ||
479 | + | ||
480 | + <!-- http://rdl.example.org/sampleReferenceData#Equipment --> | ||
481 | + | ||
482 | + <owl:Thing rdf:about="&RDL;Equipment"/> | ||
483 | + | ||
484 | + | ||
485 | + | ||
486 | + <!-- http://rdl.example.org/sampleReferenceData#EquipmentHasNozzles --> | ||
487 | + | ||
488 | + <owl:Thing rdf:about="&RDL;EquipmentHasNozzles"/> | ||
489 | + | ||
490 | + | ||
491 | + | ||
492 | + <!-- http://rdl.example.org/sampleReferenceData#Nozzle --> | ||
493 | + | ||
494 | + <owl:Thing rdf:about="&RDL;Nozzle"/> | ||
495 | + | ||
496 | + | ||
497 | + | ||
498 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSegment --> | ||
499 | + | ||
500 | + <owl:Thing rdf:about="&RDL;PipingNetworkSegment"/> | ||
501 | + | ||
502 | + | ||
503 | + | ||
504 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSystem --> | ||
505 | + | ||
506 | + <owl:Thing rdf:about="&RDL;PipingNetworkSystem"/> | ||
507 | + | ||
508 | + | ||
509 | + | ||
510 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSystemHasSegment --> | ||
511 | + | ||
512 | + <owl:Thing rdf:about="&RDL;PipingNetworkSystemHasSegment"/> | ||
513 | +</rdf:RDF> | ||
514 | + | ||
515 | + | ||
516 | + | ||
517 | +<!-- Generated by the OWL API (version 2.2.1.1138) http://owlapi.sourceforge.net --> | ||
518 | + |
1 | +<?xml version="1.0"?> | ||
2 | + | ||
3 | + | ||
4 | +<!DOCTYPE rdf:RDF [ | ||
5 | + <!ENTITY owl "http://www.w3.org/2002/07/owl#" > | ||
6 | + <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" > | ||
7 | + <!ENTITY owl2xml "http://www.w3.org/2006/12/owl2-xml#" > | ||
8 | + <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" > | ||
9 | + <!ENTITY tpl "http://rdl.example.org/sampleTemplates#" > | ||
10 | + <!ENTITY RDL "http://rdl.example.org/sampleReferenceData#" > | ||
11 | + <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" > | ||
12 | + <!ENTITY p7tm "http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#" > | ||
13 | + <!ENTITY dm "http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#" > | ||
14 | + <!ENTITY p7tpl "http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#" > | ||
15 | +]> | ||
16 | + | ||
17 | + | ||
18 | +<rdf:RDF xmlns="http://rdl.example.org/sampleTemplates#" | ||
19 | + xml:base="http://rdl.example.org/sampleTemplates" | ||
20 | + xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#" | ||
21 | + xmlns:p7tm="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#" | ||
22 | + xmlns:p7tpl="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#" | ||
23 | + xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | ||
24 | + xmlns:dm="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#" | ||
25 | + xmlns:tpl="http://rdl.example.org/sampleTemplates#" | ||
26 | + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" | ||
27 | + xmlns:RDL="http://rdl.example.org/sampleReferenceData#" | ||
28 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
29 | + xmlns:owl="http://www.w3.org/2002/07/owl#"> | ||
30 | + <owl:Ontology rdf:about=""> | ||
31 | + <rdfs:comment | ||
32 | + >This ontology contains examples of template signatures.</rdfs:comment> | ||
33 | + <owl:imports rdf:resource="http://rdl.example.org/sampleReferenceData"/> | ||
34 | + <owl:imports rdf:resource="http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl"/> | ||
35 | + </owl:Ontology> | ||
36 | + | ||
37 | + | ||
38 | + | ||
39 | + <!-- | ||
40 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
41 | + // | ||
42 | + // Object Properties | ||
43 | + // | ||
44 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
45 | + --> | ||
46 | + | ||
47 | + | ||
48 | + | ||
49 | + | ||
50 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#hasRole --> | ||
51 | + | ||
52 | + <owl:ObjectProperty rdf:about="&p7tm;hasRole"/> | ||
53 | + | ||
54 | + | ||
55 | + | ||
56 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#hasRoleFillerType --> | ||
57 | + | ||
58 | + <owl:ObjectProperty rdf:about="&p7tm;hasRoleFillerType"/> | ||
59 | + | ||
60 | + | ||
61 | + | ||
62 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#hasSubTemplate --> | ||
63 | + | ||
64 | + <owl:ObjectProperty rdf:about="&p7tm;hasSubTemplate"/> | ||
65 | + | ||
66 | + | ||
67 | + | ||
68 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#hasSuperTemplate --> | ||
69 | + | ||
70 | + <owl:ObjectProperty rdf:about="&p7tm;hasSuperTemplate"/> | ||
71 | + | ||
72 | + | ||
73 | + | ||
74 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#hasTemplate --> | ||
75 | + | ||
76 | + <owl:ObjectProperty rdf:about="&p7tm;hasTemplate"/> | ||
77 | + | ||
78 | + | ||
79 | + | ||
80 | + <!-- http://rdl.example.org/sampleTemplates#hasAssemblyType --> | ||
81 | + | ||
82 | + <owl:ObjectProperty rdf:about="#hasAssemblyType"> | ||
83 | + <rdfs:label>hasAssemblyType</rdfs:label> | ||
84 | + <rdfs:subPropertyOf rdf:resource="&p7tpl;hasRelation"/> | ||
85 | + </owl:ObjectProperty> | ||
86 | + | ||
87 | + | ||
88 | + | ||
89 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasClassOfPart --> | ||
90 | + | ||
91 | + <owl:ObjectProperty rdf:about="&p7tpl;hasClassOfPart"/> | ||
92 | + | ||
93 | + | ||
94 | + | ||
95 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasClassOfWhole --> | ||
96 | + | ||
97 | + <owl:ObjectProperty rdf:about="&p7tpl;hasClassOfWhole"/> | ||
98 | + | ||
99 | + | ||
100 | + | ||
101 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasIndividual --> | ||
102 | + | ||
103 | + <owl:ObjectProperty rdf:about="&p7tpl;hasIndividual"/> | ||
104 | + | ||
105 | + | ||
106 | + | ||
107 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasPart --> | ||
108 | + | ||
109 | + <owl:ObjectProperty rdf:about="&p7tpl;hasPart"/> | ||
110 | + | ||
111 | + | ||
112 | + | ||
113 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasRelation --> | ||
114 | + | ||
115 | + <owl:ObjectProperty rdf:about="&p7tpl;hasRelation"/> | ||
116 | + | ||
117 | + | ||
118 | + | ||
119 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasWhole --> | ||
120 | + | ||
121 | + <owl:ObjectProperty rdf:about="&p7tpl;hasWhole"/> | ||
122 | + | ||
123 | + | ||
124 | + | ||
125 | + <!-- | ||
126 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
127 | + // | ||
128 | + // Data properties | ||
129 | + // | ||
130 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
131 | + --> | ||
132 | + | ||
133 | + | ||
134 | + | ||
135 | + | ||
136 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#valNumberOfRoles --> | ||
137 | + | ||
138 | + <owl:DatatypeProperty rdf:about="&p7tm;valNumberOfRoles"/> | ||
139 | + | ||
140 | + | ||
141 | + | ||
142 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#valRoleIndex --> | ||
143 | + | ||
144 | + <owl:DatatypeProperty rdf:about="&p7tm;valRoleIndex"/> | ||
145 | + | ||
146 | + | ||
147 | + | ||
148 | + <!-- http://rdl.example.org/sampleTemplates#valMaximumCardinalityOfPart --> | ||
149 | + | ||
150 | + <owl:DatatypeProperty rdf:about="#valMaximumCardinalityOfPart"> | ||
151 | + <rdfs:label | ||
152 | + >valMaximumCardinalityOfPart</rdfs:label> | ||
153 | + <rdfs:subPropertyOf rdf:resource="&p7tpl;valMaximumCardinality"/> | ||
154 | + </owl:DatatypeProperty> | ||
155 | + | ||
156 | + | ||
157 | + | ||
158 | + <!-- http://rdl.example.org/sampleTemplates#valMaximumCardinalityOfWhole --> | ||
159 | + | ||
160 | + <owl:DatatypeProperty rdf:about="#valMaximumCardinalityOfWhole"> | ||
161 | + <rdfs:label | ||
162 | + >valMaximumCardinalityOfWhole</rdfs:label> | ||
163 | + <rdfs:subPropertyOf rdf:resource="&p7tpl;valMaximumCardinality"/> | ||
164 | + </owl:DatatypeProperty> | ||
165 | + | ||
166 | + | ||
167 | + | ||
168 | + <!-- http://rdl.example.org/sampleTemplates#valMinimumCardinalityOfPart --> | ||
169 | + | ||
170 | + <owl:DatatypeProperty rdf:about="#valMinimumCardinalityOfPart"> | ||
171 | + <rdfs:label | ||
172 | + >valMinimumCardinalityOfPart</rdfs:label> | ||
173 | + <rdfs:subPropertyOf rdf:resource="&p7tpl;valMinimumCardinality"/> | ||
174 | + </owl:DatatypeProperty> | ||
175 | + | ||
176 | + | ||
177 | + | ||
178 | + <!-- http://rdl.example.org/sampleTemplates#valMinimumCardinalityOfWhole --> | ||
179 | + | ||
180 | + <owl:DatatypeProperty rdf:about="#valMinimumCardinalityOfWhole"> | ||
181 | + <rdfs:label | ||
182 | + >valMinimumCardinalityOfWhole</rdfs:label> | ||
183 | + <rdfs:subPropertyOf rdf:resource="&p7tpl;valMinimumCardinality"/> | ||
184 | + </owl:DatatypeProperty> | ||
185 | + | ||
186 | + | ||
187 | + | ||
188 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#valMaximumCardinality --> | ||
189 | + | ||
190 | + <owl:DatatypeProperty rdf:about="&p7tpl;valMaximumCardinality"/> | ||
191 | + | ||
192 | + | ||
193 | + | ||
194 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#valMinimumCardinality --> | ||
195 | + | ||
196 | + <owl:DatatypeProperty rdf:about="&p7tpl;valMinimumCardinality"/> | ||
197 | + | ||
198 | + | ||
199 | + | ||
200 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#valStartTime --> | ||
201 | + | ||
202 | + <owl:DatatypeProperty rdf:about="&p7tpl;valStartTime"/> | ||
203 | + | ||
204 | + | ||
205 | + | ||
206 | + <!-- | ||
207 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
208 | + // | ||
209 | + // Classes | ||
210 | + // | ||
211 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
212 | + --> | ||
213 | + | ||
214 | + | ||
215 | + | ||
216 | + | ||
217 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#ArrangedIndividual --> | ||
218 | + | ||
219 | + <owl:Class rdf:about="&dm;ArrangedIndividual"/> | ||
220 | + | ||
221 | + | ||
222 | + | ||
223 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#ClassOfArrangedIndividual --> | ||
224 | + | ||
225 | + <owl:Class rdf:about="&dm;ClassOfArrangedIndividual"/> | ||
226 | + | ||
227 | + | ||
228 | + | ||
229 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#ClassOfAssemblyOfIndividual --> | ||
230 | + | ||
231 | + <owl:Class rdf:about="&dm;ClassOfAssemblyOfIndividual"/> | ||
232 | + | ||
233 | + | ||
234 | + | ||
235 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#ClassOfIndividual --> | ||
236 | + | ||
237 | + <owl:Class rdf:about="&dm;ClassOfIndividual"/> | ||
238 | + | ||
239 | + | ||
240 | + | ||
241 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#PossibleIndividual --> | ||
242 | + | ||
243 | + <owl:Class rdf:about="&dm;PossibleIndividual"/> | ||
244 | + | ||
245 | + | ||
246 | + | ||
247 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#BaseTemplateStatement --> | ||
248 | + | ||
249 | + <owl:Class rdf:about="&p7tm;BaseTemplateStatement"/> | ||
250 | + | ||
251 | + | ||
252 | + | ||
253 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#RDLcoreTemplateStatement --> | ||
254 | + | ||
255 | + <owl:Class rdf:about="&p7tm;RDLcoreTemplateStatement"/> | ||
256 | + | ||
257 | + | ||
258 | + | ||
259 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#RDLindustryTemplateStatement --> | ||
260 | + | ||
261 | + <owl:Class rdf:about="&p7tm;RDLindustryTemplateStatement"/> | ||
262 | + | ||
263 | + | ||
264 | + | ||
265 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#Template --> | ||
266 | + | ||
267 | + <owl:Class rdf:about="&p7tm;Template"/> | ||
268 | + | ||
269 | + | ||
270 | + | ||
271 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#TemplateDescription --> | ||
272 | + | ||
273 | + <owl:Class rdf:about="&p7tm;TemplateDescription"/> | ||
274 | + | ||
275 | + | ||
276 | + | ||
277 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#TemplateRole --> | ||
278 | + | ||
279 | + <owl:Class rdf:about="&p7tm;TemplateRole"/> | ||
280 | + | ||
281 | + | ||
282 | + | ||
283 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#TemplateRoleDescription --> | ||
284 | + | ||
285 | + <owl:Class rdf:about="&p7tm;TemplateRoleDescription"/> | ||
286 | + | ||
287 | + | ||
288 | + | ||
289 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#TemplateSpecialization --> | ||
290 | + | ||
291 | + <owl:Class rdf:about="&p7tm;TemplateSpecialization"/> | ||
292 | + | ||
293 | + | ||
294 | + | ||
295 | + <!-- http://rdl.example.org/sampleReferenceData#Person --> | ||
296 | + | ||
297 | + <owl:Class rdf:about="&RDL;Person"/> | ||
298 | + | ||
299 | + | ||
300 | + | ||
301 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSegment --> | ||
302 | + | ||
303 | + <owl:Class rdf:about="&RDL;PipingNetworkSegment"/> | ||
304 | + | ||
305 | + | ||
306 | + | ||
307 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSystem --> | ||
308 | + | ||
309 | + <owl:Class rdf:about="&RDL;PipingNetworkSystem"/> | ||
310 | + | ||
311 | + | ||
312 | + | ||
313 | + <!-- http://rdl.example.org/sampleTemplates#AssemblyRelation --> | ||
314 | + | ||
315 | + <owl:Class rdf:about="#AssemblyRelation"> | ||
316 | + <rdfs:label | ||
317 | + >AssemblyRelation</rdfs:label> | ||
318 | + <rdfs:subClassOf rdf:resource="&p7tm;BaseTemplateStatement"/> | ||
319 | + <rdfs:subClassOf> | ||
320 | + <owl:Class> | ||
321 | + <owl:intersectionOf rdf:parseType="Collection"> | ||
322 | + <owl:Restriction> | ||
323 | + <owl:onProperty rdf:resource="#valMaximumCardinalityOfPart"/> | ||
324 | + <owl:allValuesFrom rdf:resource="&xsd;double"/> | ||
325 | + </owl:Restriction> | ||
326 | + <owl:Restriction> | ||
327 | + <owl:onProperty rdf:resource="#valMaximumCardinalityOfPart"/> | ||
328 | + <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality> | ||
329 | + <owl:onDataRange rdf:resource="&xsd;double"/> | ||
330 | + </owl:Restriction> | ||
331 | + </owl:intersectionOf> | ||
332 | + </owl:Class> | ||
333 | + </rdfs:subClassOf> | ||
334 | + <rdfs:subClassOf> | ||
335 | + <owl:Class> | ||
336 | + <owl:intersectionOf rdf:parseType="Collection"> | ||
337 | + <owl:Restriction> | ||
338 | + <owl:onProperty rdf:resource="#valMaximumCardinalityOfWhole"/> | ||
339 | + <owl:allValuesFrom rdf:resource="&xsd;double"/> | ||
340 | + </owl:Restriction> | ||
341 | + <owl:Restriction> | ||
342 | + <owl:onProperty rdf:resource="#valMaximumCardinalityOfWhole"/> | ||
343 | + <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality> | ||
344 | + <owl:onDataRange rdf:resource="&xsd;double"/> | ||
345 | + </owl:Restriction> | ||
346 | + </owl:intersectionOf> | ||
347 | + </owl:Class> | ||
348 | + </rdfs:subClassOf> | ||
349 | + <rdfs:subClassOf> | ||
350 | + <owl:Class> | ||
351 | + <owl:intersectionOf rdf:parseType="Collection"> | ||
352 | + <owl:Restriction> | ||
353 | + <owl:onProperty rdf:resource="&p7tpl;hasClassOfPart"/> | ||
354 | + <owl:allValuesFrom rdf:resource="&dm;ClassOfIndividual"/> | ||
355 | + </owl:Restriction> | ||
356 | + <owl:Restriction> | ||
357 | + <owl:onProperty rdf:resource="&p7tpl;hasClassOfPart"/> | ||
358 | + <owl:onClass rdf:resource="&dm;ClassOfIndividual"/> | ||
359 | + <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality> | ||
360 | + </owl:Restriction> | ||
361 | + </owl:intersectionOf> | ||
362 | + </owl:Class> | ||
363 | + </rdfs:subClassOf> | ||
364 | + <rdfs:subClassOf> | ||
365 | + <owl:Class> | ||
366 | + <owl:intersectionOf rdf:parseType="Collection"> | ||
367 | + <owl:Restriction> | ||
368 | + <owl:onProperty rdf:resource="#valMinimumCardinalityOfWhole"/> | ||
369 | + <owl:allValuesFrom rdf:resource="&xsd;double"/> | ||
370 | + </owl:Restriction> | ||
371 | + <owl:Restriction> | ||
372 | + <owl:onProperty rdf:resource="#valMinimumCardinalityOfWhole"/> | ||
373 | + <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality> | ||
374 | + <owl:onDataRange rdf:resource="&xsd;double"/> | ||
375 | + </owl:Restriction> | ||
376 | + </owl:intersectionOf> | ||
377 | + </owl:Class> | ||
378 | + </rdfs:subClassOf> | ||
379 | + <rdfs:subClassOf> | ||
380 | + <owl:Class> | ||
381 | + <owl:intersectionOf rdf:parseType="Collection"> | ||
382 | + <owl:Restriction> | ||
383 | + <owl:onProperty rdf:resource="#valMinimumCardinalityOfPart"/> | ||
384 | + <owl:allValuesFrom rdf:resource="&xsd;double"/> | ||
385 | + </owl:Restriction> | ||
386 | + <owl:Restriction> | ||
387 | + <owl:onProperty rdf:resource="#valMinimumCardinalityOfPart"/> | ||
388 | + <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality> | ||
389 | + <owl:onDataRange rdf:resource="&xsd;double"/> | ||
390 | + </owl:Restriction> | ||
391 | + </owl:intersectionOf> | ||
392 | + </owl:Class> | ||
393 | + </rdfs:subClassOf> | ||
394 | + <rdfs:subClassOf> | ||
395 | + <owl:Class> | ||
396 | + <owl:intersectionOf rdf:parseType="Collection"> | ||
397 | + <owl:Restriction> | ||
398 | + <owl:onProperty rdf:resource="&p7tpl;hasClassOfWhole"/> | ||
399 | + <owl:allValuesFrom rdf:resource="&dm;ClassOfArrangedIndividual"/> | ||
400 | + </owl:Restriction> | ||
401 | + <owl:Restriction> | ||
402 | + <owl:onProperty rdf:resource="&p7tpl;hasClassOfWhole"/> | ||
403 | + <owl:onClass rdf:resource="&dm;ClassOfArrangedIndividual"/> | ||
404 | + <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality> | ||
405 | + </owl:Restriction> | ||
406 | + </owl:intersectionOf> | ||
407 | + </owl:Class> | ||
408 | + </rdfs:subClassOf> | ||
409 | + <rdfs:subClassOf> | ||
410 | + <owl:Class> | ||
411 | + <owl:intersectionOf rdf:parseType="Collection"> | ||
412 | + <owl:Restriction> | ||
413 | + <owl:onProperty rdf:resource="#hasAssemblyType"/> | ||
414 | + <owl:allValuesFrom rdf:resource="&dm;ClassOfAssemblyOfIndividual"/> | ||
415 | + </owl:Restriction> | ||
416 | + <owl:Restriction> | ||
417 | + <owl:onProperty rdf:resource="#hasAssemblyType"/> | ||
418 | + <owl:onClass rdf:resource="&dm;ClassOfAssemblyOfIndividual"/> | ||
419 | + <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality> | ||
420 | + </owl:Restriction> | ||
421 | + </owl:intersectionOf> | ||
422 | + </owl:Class> | ||
423 | + </rdfs:subClassOf> | ||
424 | + <rdfs:comment | ||
425 | + >Template axiom: | ||
426 | + | ||
427 | +AssemblyRelation( x1, x2, x3, x4, x5, x6, x7 ) <-> | ||
428 | + ClassOfIndividual( x1 ) & | ||
429 | + ClassOfArrangedIndividual( x2 ) & | ||
430 | + ClassOfAssemblyOfIndividual( x3 ) & | ||
431 | + INTEGER( x4 ) & | ||
432 | + INTEGER( x5 ) & | ||
433 | + INTEGER( x6 ) & | ||
434 | + INTEGER( x7 ) & | ||
435 | + ClassOfAssemblyOfIndividualTriple( x3, x1, x2 ) & | ||
436 | + CardinalityEnd1MinMax( x3, x4, x5 ) & | ||
437 | + CardinalityEnd2MinMax( x3, x6, x7 ) .</rdfs:comment> | ||
438 | + <rdfs:comment | ||
439 | + >This template is for describing assembly relations. | ||
440 | +| 1 | Class of Part | dm:ClassOfIndividual | | ||
441 | +| 2 | Class of Whole | dm:ClassOfArrangedIndividual | | ||
442 | +| 3 | Context | dm:ClassOfAssemblyOfIndividual | | ||
443 | +| 4 | Minimum Cardinality of Part | dm:INTEGER | | ||
444 | +| 5 | Maximum Cardinality of Part | dm:INTEGER | | ||
445 | +| 6 | Minimum Cardinality of Part | dm:INTEGER | | ||
446 | +| 7 | Maximum Cardinality of Whole | dm:INTEGER |</rdfs:comment> | ||
447 | + </owl:Class> | ||
448 | + | ||
449 | + | ||
450 | + | ||
451 | + <!-- http://rdl.example.org/sampleTemplates#BeginningOfPerson_dateAsEventObject --> | ||
452 | + | ||
453 | + <owl:Class rdf:about="#BeginningOfPerson_dateAsEventObject"> | ||
454 | + <rdfs:label | ||
455 | + >BeginningOfPerson_dateAsEventObject</rdfs:label> | ||
456 | + <rdfs:subClassOf rdf:resource="&p7tm;RDLcoreTemplateStatement"/> | ||
457 | + <rdfs:subClassOf rdf:resource="&p7tpl;Beginning"/> | ||
458 | + <rdfs:subClassOf> | ||
459 | + <owl:Class> | ||
460 | + <owl:intersectionOf rdf:parseType="Collection"> | ||
461 | + <owl:Restriction> | ||
462 | + <owl:onProperty rdf:resource="&p7tpl;hasWhole"/> | ||
463 | + <owl:allValuesFrom rdf:resource="&RDL;Person"/> | ||
464 | + </owl:Restriction> | ||
465 | + <owl:Restriction> | ||
466 | + <owl:onProperty rdf:resource="&p7tpl;hasWhole"/> | ||
467 | + <owl:onClass rdf:resource="&RDL;Person"/> | ||
468 | + <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality> | ||
469 | + </owl:Restriction> | ||
470 | + </owl:intersectionOf> | ||
471 | + </owl:Class> | ||
472 | + </rdfs:subClassOf> | ||
473 | + <rdfs:comment | ||
474 | + >This class is a constrained version of the Beginning proto-template. It limits acceptable values for the hasWhole role to the class Person.</rdfs:comment> | ||
475 | + <rdfs:comment | ||
476 | + >This sample template is categorized as "RDL core" because it uses a Person class. Note, Person isn't defined in ISO 15926-4.</rdfs:comment> | ||
477 | + </owl:Class> | ||
478 | + | ||
479 | + | ||
480 | + | ||
481 | + <!-- http://rdl.example.org/sampleTemplates#BeginningOfPerson_dateAsXsdTime --> | ||
482 | + | ||
483 | + <owl:Class rdf:about="#BeginningOfPerson_dateAsXsdTime"> | ||
484 | + <rdfs:label | ||
485 | + >BeginningEndOfIndividual</rdfs:label> | ||
486 | + <rdfs:subClassOf rdf:resource="&p7tm;RDLcoreTemplateStatement"/> | ||
487 | + <rdfs:subClassOf> | ||
488 | + <owl:Class> | ||
489 | + <owl:intersectionOf rdf:parseType="Collection"> | ||
490 | + <owl:Restriction> | ||
491 | + <owl:onProperty rdf:resource="&p7tpl;hasIndividual"/> | ||
492 | + <owl:allValuesFrom rdf:resource="&RDL;Person"/> | ||
493 | + </owl:Restriction> | ||
494 | + <owl:Restriction> | ||
495 | + <owl:onProperty rdf:resource="&p7tpl;hasIndividual"/> | ||
496 | + <owl:onClass rdf:resource="&RDL;Person"/> | ||
497 | + <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality> | ||
498 | + </owl:Restriction> | ||
499 | + </owl:intersectionOf> | ||
500 | + </owl:Class> | ||
501 | + </rdfs:subClassOf> | ||
502 | + <rdfs:subClassOf> | ||
503 | + <owl:Class> | ||
504 | + <owl:intersectionOf rdf:parseType="Collection"> | ||
505 | + <owl:Restriction> | ||
506 | + <owl:onProperty rdf:resource="&p7tpl;valStartTime"/> | ||
507 | + <owl:allValuesFrom rdf:resource="&xsd;dateTime"/> | ||
508 | + </owl:Restriction> | ||
509 | + <owl:Restriction> | ||
510 | + <owl:onProperty rdf:resource="&p7tpl;valStartTime"/> | ||
511 | + <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality> | ||
512 | + <owl:onDataRange rdf:resource="&xsd;dateTime"/> | ||
513 | + </owl:Restriction> | ||
514 | + </owl:intersectionOf> | ||
515 | + </owl:Class> | ||
516 | + </rdfs:subClassOf> | ||
517 | + <rdfs:comment | ||
518 | + >This class is similar to the Part 7 WD BeginningEndOfIndividualTemplate, but without the "end" argument. With this template, dates are recorded as XSD date values. Compare to BeginningOfPerson_dateAsEventObject, where dates are recorded as ISO 15926 events.</rdfs:comment> | ||
519 | + <rdfs:comment | ||
520 | + >This sample template is categorized as "RDL core" because it uses a Person class. Note, Person isn't defined in ISO 15926-4.</rdfs:comment> | ||
521 | + </owl:Class> | ||
522 | + | ||
523 | + | ||
524 | + | ||
525 | + <!-- http://rdl.example.org/sampleTemplates#ClassifiedAssemblyOfIndividual --> | ||
526 | + | ||
527 | + <owl:Class rdf:about="#ClassifiedAssemblyOfIndividual"> | ||
528 | + <rdfs:subClassOf rdf:resource="&p7tm;BaseTemplateStatement"/> | ||
529 | + <rdfs:subClassOf> | ||
530 | + <owl:Class> | ||
531 | + <owl:intersectionOf rdf:parseType="Collection"> | ||
532 | + <owl:Restriction> | ||
533 | + <owl:onProperty rdf:resource="#hasAssemblyType"/> | ||
534 | + <owl:allValuesFrom rdf:resource="&dm;ClassOfAssemblyOfIndividual"/> | ||
535 | + </owl:Restriction> | ||
536 | + <owl:Restriction> | ||
537 | + <owl:onProperty rdf:resource="#hasAssemblyType"/> | ||
538 | + <owl:onClass rdf:resource="&dm;ClassOfAssemblyOfIndividual"/> | ||
539 | + <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality> | ||
540 | + </owl:Restriction> | ||
541 | + </owl:intersectionOf> | ||
542 | + </owl:Class> | ||
543 | + </rdfs:subClassOf> | ||
544 | + <rdfs:subClassOf> | ||
545 | + <owl:Class> | ||
546 | + <owl:intersectionOf rdf:parseType="Collection"> | ||
547 | + <owl:Restriction> | ||
548 | + <owl:onProperty rdf:resource="&p7tpl;hasWhole"/> | ||
549 | + <owl:allValuesFrom rdf:resource="&dm;ArrangedIndividual"/> | ||
550 | + </owl:Restriction> | ||
551 | + <owl:Restriction> | ||
552 | + <owl:onProperty rdf:resource="&p7tpl;hasWhole"/> | ||
553 | + <owl:onClass rdf:resource="&dm;ArrangedIndividual"/> | ||
554 | + <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality> | ||
555 | + </owl:Restriction> | ||
556 | + </owl:intersectionOf> | ||
557 | + </owl:Class> | ||
558 | + </rdfs:subClassOf> | ||
559 | + <rdfs:subClassOf> | ||
560 | + <owl:Class> | ||
561 | + <owl:intersectionOf rdf:parseType="Collection"> | ||
562 | + <owl:Restriction> | ||
563 | + <owl:onProperty rdf:resource="&p7tpl;hasPart"/> | ||
564 | + <owl:allValuesFrom rdf:resource="&dm;PossibleIndividual"/> | ||
565 | + </owl:Restriction> | ||
566 | + <owl:Restriction> | ||
567 | + <owl:onProperty rdf:resource="&p7tpl;hasPart"/> | ||
568 | + <owl:onClass rdf:resource="&dm;PossibleIndividual"/> | ||
569 | + <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality> | ||
570 | + </owl:Restriction> | ||
571 | + </owl:intersectionOf> | ||
572 | + </owl:Class> | ||
573 | + </rdfs:subClassOf> | ||
574 | + <rdfs:comment | ||
575 | + >This template is set up to match the pattern of | ||
576 | +ClassifiedIdentification, as defined in P7. | ||
577 | + | ||
578 | +Signature for ClassifiedAssemblyOfIndividual: | ||
579 | +| 1 | Part | dm:PossibleIndividual | | ||
580 | +| 2 | Whole | dm:ArrangedIndividual | | ||
581 | +| 3 | Context | dm:ClassOfAssemblyOfIndividual |</rdfs:comment> | ||
582 | + <rdfs:comment | ||
583 | + >Template axiom: | ||
584 | + | ||
585 | +ClassifiedAssemblyOfIndividual( x1, x2, x3 ) <-> | ||
586 | + PossibleIndividual( x1 ) & | ||
587 | + ArrangedIndividual( x2 ) & | ||
588 | + ClassOfAssemblyOfIndividual( x3 ) & | ||
589 | + exists y ( AssemblyOfIndividualTriple( y, x1, x2 ) & | ||
590 | + ClassificationOfRelationship( y, x3 ) .</rdfs:comment> | ||
591 | + </owl:Class> | ||
592 | + | ||
593 | + | ||
594 | + | ||
595 | + <!-- http://rdl.example.org/sampleTemplates#PipingNetworkSystemHasSegment --> | ||
596 | + | ||
597 | + <owl:Class rdf:about="#PipingNetworkSystemHasSegment"> | ||
598 | + <rdfs:subClassOf rdf:resource="&p7tm;RDLindustryTemplateStatement"/> | ||
599 | + <rdfs:subClassOf rdf:resource="#ClassifiedAssemblyOfIndividual"/> | ||
600 | + <rdfs:subClassOf> | ||
601 | + <owl:Restriction> | ||
602 | + <owl:onProperty rdf:resource="#hasAssemblyType"/> | ||
603 | + <owl:someValuesFrom> | ||
604 | + <owl:Class> | ||
605 | + <owl:oneOf rdf:parseType="Collection"> | ||
606 | + <rdf:Description rdf:about="&RDL;PipingNetworkSystemHasSegment"/> | ||
607 | + </owl:oneOf> | ||
608 | + </owl:Class> | ||
609 | + </owl:someValuesFrom> | ||
610 | + </owl:Restriction> | ||
611 | + </rdfs:subClassOf> | ||
612 | + <rdfs:subClassOf> | ||
613 | + <owl:Restriction> | ||
614 | + <owl:onProperty rdf:resource="&p7tpl;hasWhole"/> | ||
615 | + <owl:someValuesFrom rdf:resource="&RDL;PipingNetworkSystem"/> | ||
616 | + </owl:Restriction> | ||
617 | + </rdfs:subClassOf> | ||
618 | + <rdfs:subClassOf> | ||
619 | + <owl:Restriction> | ||
620 | + <owl:onProperty rdf:resource="&p7tpl;hasPart"/> | ||
621 | + <owl:someValuesFrom rdf:resource="&RDL;PipingNetworkSegment"/> | ||
622 | + </owl:Restriction> | ||
623 | + </rdfs:subClassOf> | ||
624 | + <rdfs:comment | ||
625 | + >This is a /specialized/ variant of ClassifiedAssemblyOfIndividual, | ||
626 | +made for the purpose of recording parts of piping systems.</rdfs:comment> | ||
627 | + <rdfs:comment | ||
628 | + >Signature for PipingNetworkSystemHasSegment: | ||
629 | + | ||
630 | +| 1 | Part | RDL:PipingNetworkSegment | | ||
631 | +| 2 | Whole | RDL:PipingNetworkSystem | | ||
632 | +| 3 | Context | {RDL:PipingNetworkSystemHasSegment} |</rdfs:comment> | ||
633 | + <rdfs:comment | ||
634 | + >Template axiom: | ||
635 | + | ||
636 | +PipingNetworkSystemHasSegment( x1, x2, x3 ) <-> | ||
637 | + ClassificationOfIndividual( x1, RD_PipingNetworkSegment ) & | ||
638 | + ClassificationOfIndividual( x2, RDLPipingNetworkSystem ) & | ||
639 | + ClassificationOfClassOfRelationship( x3, {RDLPipingNetworkSystemHasSegment} ) & | ||
640 | + ClassifiedAssemblyOfIndividual( x1, x2, x3 ) .</rdfs:comment> | ||
641 | + </owl:Class> | ||
642 | + | ||
643 | + | ||
644 | + | ||
645 | + <!-- http://rdl.example.org/sampleTemplates#Template --> | ||
646 | + | ||
647 | + | ||
648 | + | ||
649 | + | ||
650 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRole --> | ||
651 | + | ||
652 | + <owl:Class rdf:about="#TemplateRole"> | ||
653 | + <rdfs:subClassOf rdf:resource="&p7tm;TemplateRole"/> | ||
654 | + </owl:Class> | ||
655 | + | ||
656 | + | ||
657 | + | ||
658 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#Beginning --> | ||
659 | + | ||
660 | + <owl:Class rdf:about="&p7tpl;Beginning"/> | ||
661 | + | ||
662 | + | ||
663 | + | ||
664 | + <!-- http://www.w3.org/2002/07/owl#Thing --> | ||
665 | + | ||
666 | + <owl:Class rdf:about="&owl;Thing"/> | ||
667 | + | ||
668 | + | ||
669 | + | ||
670 | + <!-- | ||
671 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
672 | + // | ||
673 | + // Individuals | ||
674 | + // | ||
675 | + /////////////////////////////////////////////////////////////////////////////////////// | ||
676 | + --> | ||
677 | + | ||
678 | + | ||
679 | + | ||
680 | + | ||
681 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#ClassOfArrangedIndividual --> | ||
682 | + | ||
683 | + <owl:Thing rdf:about="&dm;ClassOfArrangedIndividual"/> | ||
684 | + | ||
685 | + | ||
686 | + | ||
687 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#ClassOfAssemblyOfIndividual --> | ||
688 | + | ||
689 | + <owl:Thing rdf:about="&dm;ClassOfAssemblyOfIndividual"/> | ||
690 | + | ||
691 | + | ||
692 | + | ||
693 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#ClassOfIndividual --> | ||
694 | + | ||
695 | + <owl:Thing rdf:about="&dm;ClassOfIndividual"/> | ||
696 | + | ||
697 | + | ||
698 | + | ||
699 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Event --> | ||
700 | + | ||
701 | + <owl:Thing rdf:about="&dm;Event"/> | ||
702 | + | ||
703 | + | ||
704 | + | ||
705 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#PossibleIndividual --> | ||
706 | + | ||
707 | + <owl:Thing rdf:about="&dm;PossibleIndividual"/> | ||
708 | + | ||
709 | + | ||
710 | + | ||
711 | + <!-- http://rdl.example.org/sampleReferenceData#Person --> | ||
712 | + | ||
713 | + <owl:Thing rdf:about="&RDL;Person"/> | ||
714 | + | ||
715 | + | ||
716 | + | ||
717 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSegment --> | ||
718 | + | ||
719 | + <owl:Thing rdf:about="&RDL;PipingNetworkSegment"/> | ||
720 | + | ||
721 | + | ||
722 | + | ||
723 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSystem --> | ||
724 | + | ||
725 | + <owl:Thing rdf:about="&RDL;PipingNetworkSystem"/> | ||
726 | + | ||
727 | + | ||
728 | + | ||
729 | + <!-- http://rdl.example.org/sampleReferenceData#PipingNetworkSystemHasSegment --> | ||
730 | + | ||
731 | + <owl:Thing rdf:about="&RDL;PipingNetworkSystemHasSegment"/> | ||
732 | + | ||
733 | + | ||
734 | + | ||
735 | + <!-- http://rdl.example.org/sampleTemplates#AssemblyRelation --> | ||
736 | + | ||
737 | + <owl:Thing rdf:about="#AssemblyRelation"> | ||
738 | + <rdf:type rdf:resource="&p7tm;Template"/> | ||
739 | + </owl:Thing> | ||
740 | + | ||
741 | + | ||
742 | + | ||
743 | + <!-- http://rdl.example.org/sampleTemplates#BeginningOfPerson_dateAsEventObject --> | ||
744 | + | ||
745 | + <owl:Thing rdf:about="#BeginningOfPerson_dateAsEventObject"> | ||
746 | + <rdf:type rdf:resource="&p7tm;Template"/> | ||
747 | + </owl:Thing> | ||
748 | + | ||
749 | + | ||
750 | + | ||
751 | + <!-- http://rdl.example.org/sampleTemplates#BeginningOfPerson_dateAsXsdTime --> | ||
752 | + | ||
753 | + <owl:Thing rdf:about="#BeginningOfPerson_dateAsXsdTime"> | ||
754 | + <rdf:type rdf:resource="&p7tm;Template"/> | ||
755 | + </owl:Thing> | ||
756 | + | ||
757 | + | ||
758 | + | ||
759 | + <!-- http://rdl.example.org/sampleTemplates#ClassifiedAssemblyOfIndividual --> | ||
760 | + | ||
761 | + <owl:Thing rdf:about="#ClassifiedAssemblyOfIndividual"/> | ||
762 | + | ||
763 | + | ||
764 | + | ||
765 | + <!-- http://rdl.example.org/sampleTemplates#PipingNetworkSystemHasSegment --> | ||
766 | + | ||
767 | + <owl:Thing rdf:about="#PipingNetworkSystemHasSegment"/> | ||
768 | + | ||
769 | + | ||
770 | + | ||
771 | + <!-- http://rdl.example.org/sampleTemplates#TemplateDescription_of_AssemblyRelation --> | ||
772 | + | ||
773 | + <p7tm:TemplateDescription rdf:about="#TemplateDescription_of_AssemblyRelation"> | ||
774 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
775 | + <rdfs:label | ||
776 | + >TemplateDescription_of_AssemblyRelation</rdfs:label> | ||
777 | + <p7tm:valNumberOfRoles rdf:datatype="&xsd;integer">7</p7tm:valNumberOfRoles> | ||
778 | + <p7tm:hasTemplate rdf:resource="#AssemblyRelation"/> | ||
779 | + </p7tm:TemplateDescription> | ||
780 | + | ||
781 | + | ||
782 | + | ||
783 | + <!-- http://rdl.example.org/sampleTemplates#TemplateDescription_of_BeginningOfPerson_dateAsEventObject --> | ||
784 | + | ||
785 | + <owl:Thing rdf:about="#TemplateDescription_of_BeginningOfPerson_dateAsEventObject"> | ||
786 | + <rdf:type rdf:resource="&p7tm;TemplateDescription"/> | ||
787 | + <rdfs:label | ||
788 | + >TemplateDescription_of_BeginningOfPerson_dateAsEventObject</rdfs:label> | ||
789 | + <p7tm:valNumberOfRoles rdf:datatype="&xsd;integer">2</p7tm:valNumberOfRoles> | ||
790 | + <p7tm:hasTemplate rdf:resource="#BeginningOfPerson_dateAsEventObject"/> | ||
791 | + </owl:Thing> | ||
792 | + | ||
793 | + | ||
794 | + | ||
795 | + <!-- http://rdl.example.org/sampleTemplates#TemplateDescription_of_BeginningOfPerson_dateAsXsdTime --> | ||
796 | + | ||
797 | + <p7tm:TemplateDescription rdf:about="#TemplateDescription_of_BeginningOfPerson_dateAsXsdTime"> | ||
798 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
799 | + <rdfs:label | ||
800 | + >TemplateDescription_of_BeginningOfPerson_dateAsXsdTime</rdfs:label> | ||
801 | + <p7tm:valNumberOfRoles rdf:datatype="&xsd;integer">2</p7tm:valNumberOfRoles> | ||
802 | + <p7tm:hasTemplate rdf:resource="#BeginningOfPerson_dateAsXsdTime"/> | ||
803 | + </p7tm:TemplateDescription> | ||
804 | + | ||
805 | + | ||
806 | + | ||
807 | + <!-- http://rdl.example.org/sampleTemplates#TemplateDescription_of_ClassifiedAssemblyOfIndividual --> | ||
808 | + | ||
809 | + <owl:Thing rdf:about="#TemplateDescription_of_ClassifiedAssemblyOfIndividual"> | ||
810 | + <rdf:type rdf:resource="&p7tm;TemplateDescription"/> | ||
811 | + <rdfs:label | ||
812 | + >TemplateDescription_of_ClassifiedAssemblyOfIndividual</rdfs:label> | ||
813 | + <p7tm:valNumberOfRoles rdf:datatype="&xsd;integer">3</p7tm:valNumberOfRoles> | ||
814 | + <p7tm:hasTemplate rdf:resource="#ClassifiedAssemblyOfIndividual"/> | ||
815 | + </owl:Thing> | ||
816 | + | ||
817 | + | ||
818 | + | ||
819 | + <!-- http://rdl.example.org/sampleTemplates#TemplateDescription_of_PipingNetworkSystemHasSegment --> | ||
820 | + | ||
821 | + <owl:Thing rdf:about="#TemplateDescription_of_PipingNetworkSystemHasSegment"> | ||
822 | + <rdf:type rdf:resource="&p7tm;TemplateDescription"/> | ||
823 | + <rdfs:label | ||
824 | + >TemplateDescription_of_PipingNetworkSystemHasSegment</rdfs:label> | ||
825 | + <p7tm:valNumberOfRoles rdf:datatype="&xsd;integer">3</p7tm:valNumberOfRoles> | ||
826 | + <p7tm:hasTemplate rdf:resource="#PipingNetworkSystemHasSegment"/> | ||
827 | + </owl:Thing> | ||
828 | + | ||
829 | + | ||
830 | + | ||
831 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_AssemblyRelation_1 --> | ||
832 | + | ||
833 | + <p7tm:TemplateRoleDescription rdf:about="#TemplateRoleDescription_of_AssemblyRelation_1"> | ||
834 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
835 | + <rdfs:label | ||
836 | + >TemplateRoleDescription_of_AssemblyRelation_1</rdfs:label> | ||
837 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">1</p7tm:valRoleIndex> | ||
838 | + <p7tm:hasRoleFillerType rdf:resource="&dm;ClassOfIndividual"/> | ||
839 | + <p7tm:hasTemplate rdf:resource="#AssemblyRelation"/> | ||
840 | + <p7tm:hasRole rdf:resource="&p7tpl;hasClassOfPart"/> | ||
841 | + </p7tm:TemplateRoleDescription> | ||
842 | + | ||
843 | + | ||
844 | + | ||
845 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_AssemblyRelation_2 --> | ||
846 | + | ||
847 | + <p7tm:TemplateRoleDescription rdf:about="#TemplateRoleDescription_of_AssemblyRelation_2"> | ||
848 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
849 | + <rdfs:label | ||
850 | + >TemplateRoleDescription_of_AssemblyRelation_2</rdfs:label> | ||
851 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">2</p7tm:valRoleIndex> | ||
852 | + <p7tm:hasRoleFillerType rdf:resource="&dm;ClassOfArrangedIndividual"/> | ||
853 | + <p7tm:hasTemplate rdf:resource="#AssemblyRelation"/> | ||
854 | + <p7tm:hasRole rdf:resource="&p7tpl;hasClassOfWhole"/> | ||
855 | + </p7tm:TemplateRoleDescription> | ||
856 | + | ||
857 | + | ||
858 | + | ||
859 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_AssemblyRelation_3 --> | ||
860 | + | ||
861 | + <owl:Thing rdf:about="#TemplateRoleDescription_of_AssemblyRelation_3"> | ||
862 | + <rdf:type rdf:resource="&p7tm;TemplateRoleDescription"/> | ||
863 | + <rdfs:label | ||
864 | + >TemplateRoleDescription_of_AssemblyRelation_3</rdfs:label> | ||
865 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">3</p7tm:valRoleIndex> | ||
866 | + <p7tm:hasRoleFillerType rdf:resource="&dm;ClassOfAssemblyOfIndividual"/> | ||
867 | + <p7tm:hasTemplate rdf:resource="#AssemblyRelation"/> | ||
868 | + <p7tm:hasRole rdf:resource="#hasAssemblyType"/> | ||
869 | + </owl:Thing> | ||
870 | + | ||
871 | + | ||
872 | + | ||
873 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_AssemblyRelation_4 --> | ||
874 | + | ||
875 | + <p7tm:TemplateRoleDescription rdf:about="#TemplateRoleDescription_of_AssemblyRelation_4"> | ||
876 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
877 | + <rdfs:label | ||
878 | + >TemplateRoleDescription_of_AssemblyRelation_4</rdfs:label> | ||
879 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">4</p7tm:valRoleIndex> | ||
880 | + <p7tm:hasTemplate rdf:resource="#AssemblyRelation"/> | ||
881 | + <p7tm:hasRole rdf:resource="#minimumCardinalityPart"/> | ||
882 | + <p7tm:hasRoleFillerType rdf:resource="&xsd;double"/> | ||
883 | + </p7tm:TemplateRoleDescription> | ||
884 | + | ||
885 | + | ||
886 | + | ||
887 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_AssemblyRelation_5 --> | ||
888 | + | ||
889 | + <owl:Thing rdf:about="#TemplateRoleDescription_of_AssemblyRelation_5"> | ||
890 | + <rdf:type rdf:resource="&p7tm;TemplateRoleDescription"/> | ||
891 | + <rdfs:label | ||
892 | + >TemplateRoleDescription_of_AssemblyRelation_5</rdfs:label> | ||
893 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">5</p7tm:valRoleIndex> | ||
894 | + <p7tm:hasTemplate rdf:resource="#AssemblyRelation"/> | ||
895 | + <p7tm:hasRole rdf:resource="#maximumCardinalityPart"/> | ||
896 | + <p7tm:hasRoleFillerType rdf:resource="&xsd;double"/> | ||
897 | + </owl:Thing> | ||
898 | + | ||
899 | + | ||
900 | + | ||
901 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_AssemblyRelation_6 --> | ||
902 | + | ||
903 | + <owl:Thing rdf:about="#TemplateRoleDescription_of_AssemblyRelation_6"> | ||
904 | + <rdf:type rdf:resource="&p7tm;TemplateRoleDescription"/> | ||
905 | + <rdfs:label | ||
906 | + >TemplateRoleDescription_of_AssemblyRelation_6</rdfs:label> | ||
907 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">6</p7tm:valRoleIndex> | ||
908 | + <p7tm:hasTemplate rdf:resource="#AssemblyRelation"/> | ||
909 | + <p7tm:hasRole rdf:resource="#minimumCardinalityWhole"/> | ||
910 | + <p7tm:hasRoleFillerType rdf:resource="&xsd;double"/> | ||
911 | + </owl:Thing> | ||
912 | + | ||
913 | + | ||
914 | + | ||
915 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_AssemblyRelation_7 --> | ||
916 | + | ||
917 | + <owl:Thing rdf:about="#TemplateRoleDescription_of_AssemblyRelation_7"> | ||
918 | + <rdf:type rdf:resource="&p7tm;TemplateRoleDescription"/> | ||
919 | + <rdfs:label | ||
920 | + >TemplateRoleDescription_of_AssemblyRelation_7</rdfs:label> | ||
921 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">7</p7tm:valRoleIndex> | ||
922 | + <p7tm:hasTemplate rdf:resource="#AssemblyRelation"/> | ||
923 | + <p7tm:hasRole rdf:resource="#maximumCardinalityWhole"/> | ||
924 | + <p7tm:hasRoleFillerType rdf:resource="&xsd;double"/> | ||
925 | + </owl:Thing> | ||
926 | + | ||
927 | + | ||
928 | + | ||
929 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_BeginningOfPerson_dateAsEventObject_1 --> | ||
930 | + | ||
931 | + <owl:Thing rdf:about="#TemplateRoleDescription_of_BeginningOfPerson_dateAsEventObject_1"> | ||
932 | + <rdf:type rdf:resource="&p7tm;TemplateRoleDescription"/> | ||
933 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">1</p7tm:valRoleIndex> | ||
934 | + <p7tm:hasRoleFillerType rdf:resource="&dm;Event"/> | ||
935 | + <p7tm:hasTemplate rdf:resource="#BeginningOfPerson_dateAsEventObject"/> | ||
936 | + <p7tm:hasRole rdf:resource="&p7tpl;hasPart"/> | ||
937 | + </owl:Thing> | ||
938 | + | ||
939 | + | ||
940 | + | ||
941 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_BeginningOfPerson_dateAsEventObject_2 --> | ||
942 | + | ||
943 | + <owl:Thing rdf:about="#TemplateRoleDescription_of_BeginningOfPerson_dateAsEventObject_2"> | ||
944 | + <rdf:type rdf:resource="&p7tm;TemplateRoleDescription"/> | ||
945 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">2</p7tm:valRoleIndex> | ||
946 | + <p7tm:hasRoleFillerType rdf:resource="&RDL;Person"/> | ||
947 | + <p7tm:hasTemplate rdf:resource="#BeginningOfPerson_dateAsEventObject"/> | ||
948 | + <p7tm:hasRole rdf:resource="&p7tpl;hasWhole"/> | ||
949 | + </owl:Thing> | ||
950 | + | ||
951 | + | ||
952 | + | ||
953 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_BeginningOfPerson_dateAsXsdTime_1 --> | ||
954 | + | ||
955 | + <p7tm:TemplateRoleDescription rdf:about="#TemplateRoleDescription_of_BeginningOfPerson_dateAsXsdTime_1"> | ||
956 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
957 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">1</p7tm:valRoleIndex> | ||
958 | + <p7tm:hasTemplate rdf:resource="#BeginningOfPerson_dateAsXsdTime"/> | ||
959 | + <p7tm:hasRole rdf:resource="&p7tpl;valStartTime"/> | ||
960 | + <p7tm:hasRoleFillerType rdf:resource="&xsd;dateTime"/> | ||
961 | + </p7tm:TemplateRoleDescription> | ||
962 | + | ||
963 | + | ||
964 | + | ||
965 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_BeginningOfPerson_dateAsXsdTime_2 --> | ||
966 | + | ||
967 | + <p7tm:TemplateRoleDescription rdf:about="#TemplateRoleDescription_of_BeginningOfPerson_dateAsXsdTime_2"> | ||
968 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
969 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">2</p7tm:valRoleIndex> | ||
970 | + <p7tm:hasRoleFillerType rdf:resource="&RDL;Person"/> | ||
971 | + <p7tm:hasTemplate rdf:resource="#BeginningOfPerson_dateAsXsdTime"/> | ||
972 | + <p7tm:hasRole rdf:resource="&p7tpl;hasWhole"/> | ||
973 | + </p7tm:TemplateRoleDescription> | ||
974 | + | ||
975 | + | ||
976 | + | ||
977 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_ClassifiedAssemblyOfIndividual_1 --> | ||
978 | + | ||
979 | + <p7tm:TemplateRoleDescription rdf:about="#TemplateRoleDescription_of_ClassifiedAssemblyOfIndividual_1"> | ||
980 | + <rdf:type rdf:resource="&owl;Thing"/> | ||
981 | + <rdfs:label | ||
982 | + >TemplateRoleDescription_of_ClassifiedAssemblyOfIndividual_1</rdfs:label> | ||
983 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">1</p7tm:valRoleIndex> | ||
984 | + <p7tm:hasRoleFillerType rdf:resource="&dm;PossibleIndividual"/> | ||
985 | + <p7tm:hasTemplate rdf:resource="#ClassifiedAssemblyOfIndividual"/> | ||
986 | + <p7tm:hasRole rdf:resource="&p7tpl;hasPart"/> | ||
987 | + </p7tm:TemplateRoleDescription> | ||
988 | + | ||
989 | + | ||
990 | + | ||
991 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_ClassifiedAssemblyOfIndividual_2 --> | ||
992 | + | ||
993 | + <owl:Thing rdf:about="#TemplateRoleDescription_of_ClassifiedAssemblyOfIndividual_2"> | ||
994 | + <rdf:type rdf:resource="&p7tm;TemplateRoleDescription"/> | ||
995 | + <rdfs:label | ||
996 | + >TemplateRoleDescription_of_ClassifiedAssemblyOfIndividual_2</rdfs:label> | ||
997 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">2</p7tm:valRoleIndex> | ||
998 | + <p7tm:hasRoleFillerType rdf:resource="&dm;ClassOfIndividual"/> | ||
999 | + <p7tm:hasTemplate rdf:resource="#ClassifiedAssemblyOfIndividual"/> | ||
1000 | + <p7tm:hasRole rdf:resource="&p7tpl;hasWhole"/> | ||
1001 | + </owl:Thing> | ||
1002 | + | ||
1003 | + | ||
1004 | + | ||
1005 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_ClassifiedAssemblyOfIndividual_3 --> | ||
1006 | + | ||
1007 | + <owl:Thing rdf:about="#TemplateRoleDescription_of_ClassifiedAssemblyOfIndividual_3"> | ||
1008 | + <rdf:type rdf:resource="&p7tm;TemplateRoleDescription"/> | ||
1009 | + <rdfs:label | ||
1010 | + >TemplateRoleDescription_of_ClassifiedAssemblyOfIndividual_3</rdfs:label> | ||
1011 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">3</p7tm:valRoleIndex> | ||
1012 | + <p7tm:hasRoleFillerType rdf:resource="&dm;ClassOfAssemblyOfIndividual"/> | ||
1013 | + <p7tm:hasTemplate rdf:resource="#ClassifiedAssemblyOfIndividual"/> | ||
1014 | + <p7tm:hasRole rdf:resource="#hasAssemblyType"/> | ||
1015 | + </owl:Thing> | ||
1016 | + | ||
1017 | + | ||
1018 | + | ||
1019 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_PipingNetworkSystemHasSegment_1 --> | ||
1020 | + | ||
1021 | + <owl:Thing rdf:about="#TemplateRoleDescription_of_PipingNetworkSystemHasSegment_1"> | ||
1022 | + <rdf:type rdf:resource="&p7tm;TemplateRoleDescription"/> | ||
1023 | + <rdfs:label | ||
1024 | + >TemplateRoleDescription_of_PipingNetworkSystemHasSegment_1</rdfs:label> | ||
1025 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">1</p7tm:valRoleIndex> | ||
1026 | + <p7tm:hasRoleFillerType rdf:resource="&RDL;PipingNetworkSegment"/> | ||
1027 | + <p7tm:hasTemplate rdf:resource="#PipingNetworkSystemHasSegment"/> | ||
1028 | + <p7tm:hasRole rdf:resource="&p7tpl;hasPart"/> | ||
1029 | + </owl:Thing> | ||
1030 | + | ||
1031 | + | ||
1032 | + | ||
1033 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_PipingNetworkSystemHasSegment_2 --> | ||
1034 | + | ||
1035 | + <owl:Thing rdf:about="#TemplateRoleDescription_of_PipingNetworkSystemHasSegment_2"> | ||
1036 | + <rdf:type rdf:resource="&p7tm;TemplateRoleDescription"/> | ||
1037 | + <rdfs:label | ||
1038 | + >TemplateRoleDescription_of_PipingNetworkSystemHasSegment_2</rdfs:label> | ||
1039 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">2</p7tm:valRoleIndex> | ||
1040 | + <p7tm:hasRoleFillerType rdf:resource="&RDL;PipingNetworkSystem"/> | ||
1041 | + <p7tm:hasTemplate rdf:resource="#PipingNetworkSystemHasSegment"/> | ||
1042 | + <p7tm:hasRole rdf:resource="&p7tpl;hasWhole"/> | ||
1043 | + </owl:Thing> | ||
1044 | + | ||
1045 | + | ||
1046 | + | ||
1047 | + <!-- http://rdl.example.org/sampleTemplates#TemplateRoleDescription_of_PipingNetworkSystemHasSegment_3 --> | ||
1048 | + | ||
1049 | + <owl:Thing rdf:about="#TemplateRoleDescription_of_PipingNetworkSystemHasSegment_3"> | ||
1050 | + <rdf:type rdf:resource="&p7tm;TemplateRoleDescription"/> | ||
1051 | + <rdfs:label | ||
1052 | + >TemplateRoleDescription_of_PipingNetworkSystemHasSegment_3</rdfs:label> | ||
1053 | + <p7tm:valRoleIndex rdf:datatype="&xsd;integer">3</p7tm:valRoleIndex> | ||
1054 | + <p7tm:hasRoleFillerType rdf:resource="&RDL;PipingNetworkSystemHasSegment"/> | ||
1055 | + <p7tm:hasTemplate rdf:resource="#PipingNetworkSystemHasSegment"/> | ||
1056 | + <p7tm:hasRole rdf:resource="#hasAssemblyType"/> | ||
1057 | + </owl:Thing> | ||
1058 | + | ||
1059 | + | ||
1060 | + | ||
1061 | + <!-- http://rdl.example.org/sampleTemplates#TemplateSpecialization_of_ClassifiedAssemblyOfIndividual_to_PipingNetworkSystemHasSegment --> | ||
1062 | + | ||
1063 | + <owl:Thing rdf:about="#TemplateSpecialization_of_ClassifiedAssemblyOfIndividual_to_PipingNetworkSystemHasSegment"> | ||
1064 | + <rdf:type rdf:resource="&p7tm;TemplateSpecialization"/> | ||
1065 | + <rdfs:label | ||
1066 | + >TemplateSpecialization_of_ClassifiedAssemblyOfIndividual_to_PipingNetworkSystemHasSegment</rdfs:label> | ||
1067 | + <p7tm:hasSuperTemplate rdf:resource="#ClassifiedAssemblyOfIndividual"/> | ||
1068 | + <p7tm:hasSubTemplate rdf:resource="#PipingNetworkSystemHasSegment"/> | ||
1069 | + </owl:Thing> | ||
1070 | + | ||
1071 | + | ||
1072 | + | ||
1073 | + <!-- http://rdl.example.org/sampleTemplates#hasAssemblyType --> | ||
1074 | + | ||
1075 | + <owl:Thing rdf:about="#hasAssemblyType"/> | ||
1076 | + | ||
1077 | + | ||
1078 | + | ||
1079 | + <!-- http://rdl.example.org/sampleTemplates#maximumCardinalityPart --> | ||
1080 | + | ||
1081 | + <owl:Thing rdf:about="#maximumCardinalityPart"/> | ||
1082 | + | ||
1083 | + | ||
1084 | + | ||
1085 | + <!-- http://rdl.example.org/sampleTemplates#maximumCardinalityWhole --> | ||
1086 | + | ||
1087 | + <owl:Thing rdf:about="#maximumCardinalityWhole"/> | ||
1088 | + | ||
1089 | + | ||
1090 | + | ||
1091 | + <!-- http://rdl.example.org/sampleTemplates#minimumCardinalityPart --> | ||
1092 | + | ||
1093 | + <owl:Thing rdf:about="#minimumCardinalityPart"/> | ||
1094 | + | ||
1095 | + | ||
1096 | + | ||
1097 | + <!-- http://rdl.example.org/sampleTemplates#minimumCardinalityWhole --> | ||
1098 | + | ||
1099 | + <owl:Thing rdf:about="#minimumCardinalityWhole"/> | ||
1100 | + | ||
1101 | + | ||
1102 | + | ||
1103 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasClassOfPart --> | ||
1104 | + | ||
1105 | + <owl:Thing rdf:about="&p7tpl;hasClassOfPart"/> | ||
1106 | + | ||
1107 | + | ||
1108 | + | ||
1109 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasClassOfWhole --> | ||
1110 | + | ||
1111 | + <owl:Thing rdf:about="&p7tpl;hasClassOfWhole"/> | ||
1112 | + | ||
1113 | + | ||
1114 | + | ||
1115 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasContext --> | ||
1116 | + | ||
1117 | + <owl:Thing rdf:about="&p7tpl;hasContext"/> | ||
1118 | + | ||
1119 | + | ||
1120 | + | ||
1121 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasPart --> | ||
1122 | + | ||
1123 | + <owl:Thing rdf:about="&p7tpl;hasPart"/> | ||
1124 | + | ||
1125 | + | ||
1126 | + | ||
1127 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#hasWhole --> | ||
1128 | + | ||
1129 | + <owl:Thing rdf:about="&p7tpl;hasWhole"/> | ||
1130 | + | ||
1131 | + | ||
1132 | + | ||
1133 | + <!-- http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tpl#valStartTime --> | ||
1134 | + | ||
1135 | + <owl:Thing rdf:about="&p7tpl;valStartTime"/> | ||
1136 | + | ||
1137 | + | ||
1138 | + | ||
1139 | + <!-- http://www.w3.org/2001/XMLSchema#dateTime --> | ||
1140 | + | ||
1141 | + <owl:Thing rdf:about="&xsd;dateTime"/> | ||
1142 | + | ||
1143 | + | ||
1144 | + | ||
1145 | + <!-- http://www.w3.org/2001/XMLSchema#double --> | ||
1146 | + | ||
1147 | + <owl:Thing rdf:about="&xsd;double"/> | ||
1148 | +</rdf:RDF> | ||
1149 | + | ||
1150 | + | ||
1151 | + | ||
1152 | +<!-- Generated by the OWL API (version 2.2.1.1138) http://owlapi.sourceforge.net --> | ||
1153 | + |
1 | +# Saved by TopBraid on Wed Aug 17 18:10:40 BST 2011 | ||
2 | +# baseURI: http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model | ||
3 | + | ||
4 | +@prefix iso-dm: <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#> . | ||
5 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
6 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
7 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
8 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
9 | + | ||
10 | +<http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model> | ||
11 | + rdf:type owl:Ontology ; | ||
12 | + rdfs:comment "Preliminary OWL native representation of ISO 15926-2, destined for the ISO 15926-8 representation of ISO 15926-2 entity types. This file was provided by DNV IRM, based on work in the IOHN project." ; | ||
13 | + owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | ||
14 | + | ||
15 | +iso-dm:AbstractObject | ||
16 | + rdf:type owl:Class ; | ||
17 | + rdfs:comment "An [abstract_object] is a [thing] that does not exist in space-time."^^xsd:string ; | ||
18 | + rdfs:subClassOf iso-dm:Thing ; | ||
19 | + owl:disjointWith iso-dm:PossibleIndividual . | ||
20 | + | ||
21 | +iso-dm:Activity | ||
22 | + rdf:type owl:Class ; | ||
23 | + rdfs:comment "An [activity] is a [possible_individual] that brings about change by causing the [event] that marks the [beginning], or the [event] that marks the [ending] of a [possible_individual]. An activity consists of the temporal parts of those members of [possible_individual] that participate in the activity. The participating temporal parts will be classified by the [participating_role_and_domain] that indicates the role of the temporal part in the [activity]."^^xsd:string ; | ||
24 | + rdfs:subClassOf iso-dm:PossibleIndividual . | ||
25 | + | ||
26 | +iso-dm:ActualIndividual | ||
27 | + rdf:type owl:Class ; | ||
28 | + rdfs:comment "An [actual_individual] is a [possible_individual] that is a part of the space-time continuum that we inhabit. It exists in the present, past, or future of our universe, as opposed to some imagined universe."^^xsd:string ; | ||
29 | + rdfs:subClassOf iso-dm:PossibleIndividual . | ||
30 | + | ||
31 | +iso-dm:Approval | ||
32 | + rdf:type owl:Class ; | ||
33 | + rdfs:comment "An [approval] is a [relationship] that indicates that a [relationship] has been approved by a [possible_individual] that is an approver."^^xsd:string ; | ||
34 | + rdfs:subClassOf iso-dm:Relationship . | ||
35 | + | ||
36 | +iso-dm:ArithmeticNumber | ||
37 | + rdf:type owl:Class ; | ||
38 | + rdfs:comment "An [arithmetic_number] is a [class_of_class] whose member classes have the same sign and count or magnitude. An [arithmetic_number] is the number itself, not any representation of the number."^^xsd:string ; | ||
39 | + rdfs:subClassOf iso-dm:ClassOfClass ; | ||
40 | + owl:disjointWith iso-dm:ClassOfShapeDimension , iso-dm:ClassOfPropertySpace , iso-dm:ClassOfNumber , iso-dm:ClassOfClassOfIndividual . | ||
41 | + | ||
42 | +iso-dm:ArrangedIndividual | ||
43 | + rdf:type owl:Class ; | ||
44 | + rdfs:comment "An [arranged_individual] is a [possible_individual] that has parts that play distinct roles with respect to the whole. The qualities of an [arranged_individual] are distinct from the qualities of its parts."^^xsd:string ; | ||
45 | + rdfs:subClassOf iso-dm:PossibleIndividual . | ||
46 | + | ||
47 | +iso-dm:ArrangementOfIndividual | ||
48 | + rdf:type owl:Class ; | ||
49 | + rdfs:comment "RANGE: WHOLE"^^xsd:string , "An [arrangement_of_individual] is a [composition_of_individual] that indicates that the part is a part of an [arranged_individual]. The temporal extent of the part is that of the whole. An [arrangement_of_individual] may be an [assembly_of_individual]."^^xsd:string ; | ||
50 | + rdfs:subClassOf iso-dm:CompositionOfIndividual . | ||
51 | + | ||
52 | +iso-dm:AssemblyOfIndividual | ||
53 | + rdf:type owl:Class ; | ||
54 | + rdfs:comment "An [assembly_of_individual] is an [arrangement_of_individual] that indicates that the part is connected directly or indirectly to other parts of the whole. The parts and wholes are super-molecular objects."^^xsd:string ; | ||
55 | + rdfs:subClassOf iso-dm:ArrangementOfIndividual . | ||
56 | + | ||
57 | +iso-dm:Beginning | ||
58 | + rdf:type owl:Class ; | ||
59 | + rdfs:comment "A [beginning] is a [temporal_bounding] that marks the temporal start of a [possible_individual]."^^xsd:string ; | ||
60 | + rdfs:subClassOf iso-dm:TemporalBounding . | ||
61 | + | ||
62 | +iso-dm:BoundaryOfNumberSpace | ||
63 | + rdf:type owl:Class ; | ||
64 | + rdfs:comment "RANGE: SUPERCLASS"^^xsd:string , "DOMAIN: SUBCLASS"^^xsd:string , "A [boundary_of_number_space] is a [specialization] that indicates that a [number_space] is a boundary to another [number_space]."^^xsd:string ; | ||
65 | + rdfs:subClassOf iso-dm:Specialization . | ||
66 | + | ||
67 | +iso-dm:BoundaryOfPropertySpace | ||
68 | + rdf:type owl:Class ; | ||
69 | + rdfs:comment "RANGE: SUPERCLASS"^^xsd:string , "DOMAIN: SUBCLASS"^^xsd:string , "A [boundary_of_property_space] is a [specialization] that indicates the members of the subclass form a boundary of the superclass."^^xsd:string ; | ||
70 | + rdfs:subClassOf iso-dm:Specialization . | ||
71 | + | ||
72 | +iso-dm:Cardinality | ||
73 | + rdf:type owl:Class ; | ||
74 | + rdfs:comment "A [cardinality] is a [class] that is the maximum and/or minimum number of times a thing can play a particular role in a [class_of_relationship] or [class_of_multidimensional_object]."^^xsd:string ; | ||
75 | + rdfs:subClassOf iso-dm:Class . | ||
76 | + | ||
77 | +iso-dm:CauseOfEvent | ||
78 | + rdf:type owl:Class ; | ||
79 | + rdfs:comment "RANGE: CAUSER"^^xsd:string , "DOMAIN: CAUSED"^^xsd:string , "A [cause_of_event] is a [relationship] that indicates that the caused [event] is caused by the causer [activity]."^^xsd:string ; | ||
80 | + rdfs:subClassOf iso-dm:Relationship . | ||
81 | + | ||
82 | +iso-dm:Class | ||
83 | + rdf:type owl:Class ; | ||
84 | + rdfs:comment """A [class] is a [thing] that is an understanding of the nature of things and that divides things into those which are members of the class and those which are not according to one or more criteria. | ||
85 | +The identity of a [class] is ultimately defined by its members. No two classes have the same membership. However, a distinction must be made between a [class] having members, and those members being known, so within an information system the members recorded may change over time, even though the true membership does not change."""^^xsd:string ; | ||
86 | + rdfs:subClassOf iso-dm:AbstractObject . | ||
87 | + | ||
88 | +iso-dm:ClassOfAbstractObject | ||
89 | + rdf:type owl:Class ; | ||
90 | + rdfs:comment "A [class_of_abstract_object] is a [class] whose members classify members of [abstract_object]."^^xsd:string ; | ||
91 | + rdfs:subClassOf iso-dm:Class ; | ||
92 | + owl:disjointWith iso-dm:ClassOfIndividual . | ||
93 | + | ||
94 | +iso-dm:ClassOfActivity | ||
95 | + rdf:type owl:Class ; | ||
96 | + rdfs:comment "A [class_of_activity] is a [class_of_arranged_individual] whose members are instances of [activity]."^^xsd:string ; | ||
97 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual . | ||
98 | + | ||
99 | +iso-dm:ClassOfApproval | ||
100 | + rdf:type owl:Class ; | ||
101 | + rdfs:comment "A [class_of_approval] is a [class_of_relationship] whose members are members of [approval] that indicates that members of the [class_of_individual] are approvers in an [approval] for the members of the [class] that are approved."^^xsd:string ; | ||
102 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
103 | + | ||
104 | +iso-dm:ClassOfApprovalByStatus | ||
105 | + rdf:type owl:Class ; | ||
106 | + rdfs:comment "A [class_of_approval_by_status] is a [class_of_relationship] that indicates a status of the approval that is independent of what is being approved by whom."^^xsd:string ; | ||
107 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
108 | + | ||
109 | +iso-dm:ClassOfArrangedIndividual | ||
110 | + rdf:type owl:Class ; | ||
111 | + rdfs:comment "A [class_of_arranged_individual] is a [class_of_individual] whose members have a distinct form that may arise from the arrangement of their parts."^^xsd:string ; | ||
112 | + rdfs:subClassOf iso-dm:ClassOfIndividual ; | ||
113 | + owl:disjointWith iso-dm:Status , iso-dm:Property , iso-dm:IndividualDimension , iso-dm:ClassOfPeriodInTime , iso-dm:ClassOfEvent . | ||
114 | + | ||
115 | +iso-dm:ClassOfArrangementOfIndividual | ||
116 | + rdf:type owl:Class ; | ||
117 | + rdfs:comment "RANGE: CLASS_OF_WHOLE"^^xsd:string , "A [class_of_arrangement_of_individual] is a [class_of_composition_of_individual] whose members are instances of [arrangement_of_individual]."^^xsd:string ; | ||
118 | + rdfs:subClassOf iso-dm:ClassOfCompositionOfIndividual . | ||
119 | + | ||
120 | +iso-dm:ClassOfAssemblyOfIndividual | ||
121 | + rdf:type owl:Class ; | ||
122 | + rdfs:comment "A [class_of_assembly_of_individual] is a [class_of_arrangement_of_individual] whose members are instances of [assembly_of_individual]."^^xsd:string ; | ||
123 | + rdfs:subClassOf iso-dm:ClassOfArrangementOfIndividual . | ||
124 | + | ||
125 | +iso-dm:ClassOfAssertion | ||
126 | + rdf:type owl:Class ; | ||
127 | + rdfs:comment "A [class_of_assertion] is a [class_of_relationship] that describes the assertive nature of the member relations."^^xsd:string ; | ||
128 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
129 | + | ||
130 | +iso-dm:ClassOfAtom | ||
131 | + rdf:type owl:Class ; | ||
132 | + rdfs:comment "A [class_of_atom] is a [class_of_arranged_individual] whose members are atoms."^^xsd:string ; | ||
133 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ; | ||
134 | + owl:disjointWith iso-dm:ClassOfCompositeMaterial , iso-dm:ClassOfBiologicalMatter , iso-dm:ClassOfInformationRepresentation , iso-dm:ClassOfInformationPresentation , iso-dm:ClassOfSubAtomicParticle , iso-dm:CrystallineStructure , iso-dm:Phase , iso-dm:ClassOfCompound , iso-dm:ClassOfMolecule , iso-dm:ClassOfParticulateMaterial , iso-dm:ClassOfFunctionalObject . | ||
135 | + | ||
136 | +iso-dm:ClassOfBiologicalMatter | ||
137 | + rdf:type owl:Class ; | ||
138 | + rdfs:comment "A [class_of_biological_matter] is a [class_of_arranged_individual] whose members are particular types of cell or aggregations of cells."^^xsd:string ; | ||
139 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ; | ||
140 | + owl:disjointWith iso-dm:ClassOfInformationRepresentation , iso-dm:ClassOfFunctionalObject , iso-dm:ClassOfSubAtomicParticle , iso-dm:ClassOfInformationPresentation , iso-dm:ClassOfMolecule , iso-dm:ClassOfCompositeMaterial , iso-dm:Phase , iso-dm:ClassOfCompound , iso-dm:CrystallineStructure , iso-dm:ClassOfParticulateMaterial . | ||
141 | + | ||
142 | +iso-dm:ClassOfCauseOfBeginningOfClassOfIndividual | ||
143 | + rdf:type owl:Class ; | ||
144 | + rdfs:comment "RANGE: CLASS_OF_CAUSER"^^xsd:string , "DOMAIN: CLASS_OF_BEGUN"^^xsd:string , "A [class_of_cause_of_beginning_of_class_of_individual] is a [class_of_relationship] that indicates that a member of a [class_of_activity] causes the beginning of a member of a [class_of_individual]."^^xsd:string ; | ||
145 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
146 | + | ||
147 | +iso-dm:ClassOfCauseOfEndingOfClassOfIndividual | ||
148 | + rdf:type owl:Class ; | ||
149 | + rdfs:comment "RANGE: CLASS_OF_ENDED"^^xsd:string , "DOMAIN: CLASS_OF_CAUSER"^^xsd:string , "A [class_of_cause_of_ending_of_class_of_individual] is a [class_of_relationship] that indicates that a member of the [class_of_activity] causes the ending of a member of the [class_of_individual]."^^xsd:string ; | ||
150 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
151 | + | ||
152 | +iso-dm:ClassOfClass | ||
153 | + rdf:type owl:Class ; | ||
154 | + rdfs:comment "A [class_of_class] is a [class] whose members are instances of [class]."^^xsd:string ; | ||
155 | + rdfs:subClassOf iso-dm:ClassOfAbstractObject . | ||
156 | + | ||
157 | +iso-dm:ClassOfClassOfComposition | ||
158 | + rdf:type owl:Class ; | ||
159 | + rdfs:comment "RANGE: CLASS_OF_CLASS_OF_WHOLE"^^xsd:string , "DOMAIN: CLASS_OF_CLASS_OF_PART"^^xsd:string , "A [class_of_class_of_composition] is a [class_of_class_of_relationship] whose members are instances of [class_of_composition_of_individual]. It indicates that a member of a member of the class_of_class_of_part is a part of a member of an instance of the class_of_class_of_whole."^^xsd:string ; | ||
160 | + rdfs:subClassOf iso-dm:ClassOfClassOfRelationship . | ||
161 | + | ||
162 | +iso-dm:ClassOfClassOfDefinition | ||
163 | + rdf:type owl:Class ; | ||
164 | + rdfs:comment "A [class_of_class_of_definition] is a [class_of_class_of_representation] whose members are members of [class_of_definition]."^^xsd:string ; | ||
165 | + rdfs:subClassOf iso-dm:ClassOfClassOfRepresentation . | ||
166 | + | ||
167 | +iso-dm:ClassOfClassOfDescription | ||
168 | + rdf:type owl:Class ; | ||
169 | + rdfs:comment "A [class_of_class_of_description] is a [class_of_class_of_representation] whose members are members of [class_of_description]."^^xsd:string ; | ||
170 | + rdfs:subClassOf iso-dm:ClassOfClassOfRepresentation . | ||
171 | + | ||
172 | +iso-dm:ClassOfClassOfIdentification | ||
173 | + rdf:type owl:Class ; | ||
174 | + rdfs:comment "A [class_of_class_of_identification] is a [class_of_class_of_representation] whose members are members of [class_of_identification]."^^xsd:string ; | ||
175 | + rdfs:subClassOf iso-dm:ClassOfClassOfRepresentation . | ||
176 | + | ||
177 | +iso-dm:ClassOfClassOfIndividual | ||
178 | + rdf:type owl:Class ; | ||
179 | + rdfs:comment "A [class_of_class_of_individual] is a [class_of_class] whose members are instances of [class_of_individual]."^^xsd:string ; | ||
180 | + rdfs:subClassOf iso-dm:ClassOfClass ; | ||
181 | + owl:disjointWith iso-dm:ClassOfShapeDimension , iso-dm:ClassOfPropertySpace , iso-dm:ClassOfNumber . | ||
182 | + | ||
183 | +iso-dm:ClassOfClassOfInformationRepresentation | ||
184 | + rdf:type owl:Class ; | ||
185 | + rdfs:comment "A [class_of_class_of_information_representation] is a [class_of_class_of_individual] that classifies information representation classes."^^xsd:string ; | ||
186 | + rdfs:subClassOf iso-dm:ClassOfClassOfIndividual ; | ||
187 | + owl:disjointWith iso-dm:ShapeDimension , iso-dm:ClassOfStatus , iso-dm:ClassOfProperty . | ||
188 | + | ||
189 | +iso-dm:ClassOfClassOfRelationship | ||
190 | + rdf:type owl:Class ; | ||
191 | + rdfs:comment "A [class_of_class_of_relationship] is a [class_of_class] whose members are instances of [class_of_relationship]."^^xsd:string ; | ||
192 | + rdfs:subClassOf iso-dm:ClassOfClass . | ||
193 | + | ||
194 | +iso-dm:ClassOfClassOfRelationshipWithSignature | ||
195 | + rdf:type owl:Class ; | ||
196 | + rdfs:comment "An [class_of_class_of_relationship_with_signature] is a [class_of_class_of_relationship] and [class_of_relationship_with_signature]. The purpose of [class_of_class_of_relationship_with_signature] is to allow other types of classes of relationship, not explicitly defined as entity data types in this part of ISO 15926, to be defined as reference data."^^xsd:string ; | ||
197 | + rdfs:subClassOf iso-dm:ClassOfRelationshipWithSignature , iso-dm:ClassOfClassOfRelationship . | ||
198 | + | ||
199 | +iso-dm:ClassOfClassOfRepresentation | ||
200 | + rdf:type owl:Class ; | ||
201 | + rdfs:comment "RANGE: CLASS_OF_REPRESENTED"^^xsd:string , "DOMAIN: CLASS_OF_PATTERN"^^xsd:string , "A [class_of_class_of_representation] is a [class_of_class_of_relationship] whose members are instances of [class_of_representation_of_thing]."^^xsd:string ; | ||
202 | + rdfs:subClassOf iso-dm:ClassOfClassOfRelationship . | ||
203 | + | ||
204 | +iso-dm:ClassOfClassOfRepresentationTranslation | ||
205 | + rdf:type owl:Class ; | ||
206 | + rdfs:comment "RANGE: CLASS_OF_SECOND"^^xsd:string , "DOMAIN: CLASS_OF_FIRST"^^xsd:string , "A [class_of_class_of_representation_translation] is a [class_of_class_of_relationship] whose members are members of [class_of_representation_translation]."^^xsd:string ; | ||
207 | + rdfs:subClassOf iso-dm:ClassOfClassOfRelationship . | ||
208 | + | ||
209 | +iso-dm:ClassOfClassOfResponsibilityForRepresentation | ||
210 | + rdf:type owl:Class ; | ||
211 | + rdfs:comment "A [class_of_class_of_responsibility_for_representation] is a [class_of_class_of_relationship] whose members are members of [class_of_responsibility_for_representation] linking the controller to a set of representations."^^xsd:string ; | ||
212 | + rdfs:subClassOf iso-dm:ClassOfClassOfRelationship . | ||
213 | + | ||
214 | +iso-dm:ClassOfClassOfUsageOfRepresentation | ||
215 | + rdf:type owl:Class ; | ||
216 | + rdfs:comment "A [class_of_class_of_usage_of_representation] is a [class_of_class_of_relationship] whose members are members of [class_of_usage_of_representation] linking the user to a set of representations."^^xsd:string ; | ||
217 | + rdfs:subClassOf iso-dm:ClassOfClassOfRelationship . | ||
218 | + | ||
219 | +iso-dm:ClassOfClassification | ||
220 | + rdf:type owl:Class ; | ||
221 | + rdfs:comment "RANGE: CLASS_OF_CLASSIFIER"^^xsd:string , "DOMAIN: CLASS_OF_CLASSIFIED"^^xsd:string , "A [class_of_classification] is a [class_of_relationship] whose members are members of [classification]. A [class_of_classification] indicates that a member of the class_of_classified [class] is classified by one or more members of the class_of_classifier [class_of_class]."^^xsd:string ; | ||
222 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
223 | + | ||
224 | +iso-dm:ClassOfCompositeMaterial | ||
225 | + rdf:type owl:Class ; | ||
226 | + rdfs:comment "A [class_of_composite_material] is a [class_of_arranged_individual] whose members have a common arrangement of separable compounds."^^xsd:string ; | ||
227 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ; | ||
228 | + owl:disjointWith iso-dm:ClassOfSubAtomicParticle , iso-dm:Phase , iso-dm:ClassOfCompound , iso-dm:CrystallineStructure , iso-dm:ClassOfFunctionalObject , iso-dm:ClassOfParticulateMaterial , iso-dm:ClassOfInformationRepresentation , iso-dm:ClassOfMolecule , iso-dm:ClassOfInformationPresentation . | ||
229 | + | ||
230 | +iso-dm:ClassOfCompositionOfIndividual | ||
231 | + rdf:type owl:Class ; | ||
232 | + rdfs:comment "RANGE: CLASS_OF_WHOLE"^^xsd:string , "DOMAIN: CLASS_OF_PART"^^xsd:string , "A [class_of_composition_of_individual] is a [class_of_relationship] whose members are members of [composition_of_individual]."^^xsd:string ; | ||
233 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
234 | + | ||
235 | +iso-dm:ClassOfCompound | ||
236 | + rdf:type owl:Class ; | ||
237 | + rdfs:comment "A [class_of_compound] is a [class_of_arranged_individual] whose members consist of arrangements of molecules of the same or different types, bound together by intermolecular forces. This includes both mixtures and alloys."^^xsd:string ; | ||
238 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ; | ||
239 | + owl:disjointWith iso-dm:ClassOfInformationRepresentation , iso-dm:ClassOfMolecule , iso-dm:CrystallineStructure , iso-dm:ClassOfInformationPresentation , iso-dm:Phase , iso-dm:ClassOfSubAtomicParticle , iso-dm:ClassOfFunctionalObject , iso-dm:ClassOfParticulateMaterial . | ||
240 | + | ||
241 | +iso-dm:ClassOfConnectionOfIndividual | ||
242 | + rdf:type owl:Class ; | ||
243 | + rdfs:comment "RANGE: CLASS_OF_SIDE_2"^^xsd:string , "DOMAIN: CLASS_OF_SIDE_1"^^xsd:string , "A [class_of_connection_of_individual] is a [class_of_relationship] whose members are members of [connection_of_individual]. It indicates that a member of the class_of_side_1 [class_of_individual] can be connected to a member of the class_of_side_2 [class_of_individual]."^^xsd:string ; | ||
244 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
245 | + | ||
246 | +iso-dm:ClassOfContainmentOfIndividual | ||
247 | + rdf:type owl:Class ; | ||
248 | + rdfs:comment "A [class_of_containment_of_individual] is a [class_of_relative_location] whose members are instances of [containment_of_individual]. It indicates that a member of the class_of_locator [class_of_individual] can contain a member of the class_of_located [class_of_individual]."^^xsd:string ; | ||
249 | + rdfs:subClassOf iso-dm:ClassOfRelativeLocation . | ||
250 | + | ||
251 | +iso-dm:ClassOfDefinition | ||
252 | + rdf:type owl:Class ; | ||
253 | + rdfs:comment "RANGE: REPRESENTED"^^xsd:string , "A [class_of_definition] is a [class_of_representation_of_thing] that indicates the pattern is a definition of the represented [class]."^^xsd:string ; | ||
254 | + rdfs:subClassOf iso-dm:ClassOfRepresentationOfThing . | ||
255 | + | ||
256 | +iso-dm:ClassOfDescription | ||
257 | + rdf:type owl:Class ; | ||
258 | + rdfs:comment "A [class_of_description] is a [class_of_representation_of_thing] that indicates the pattern is a description of the represented [thing]."^^xsd:string ; | ||
259 | + rdfs:subClassOf iso-dm:ClassOfRepresentationOfThing . | ||
260 | + | ||
261 | +iso-dm:ClassOfDimensionForShape | ||
262 | + rdf:type owl:Class ; | ||
263 | + rdfs:comment "RANGE: CLASS_OF_SHAPE"^^xsd:string , "DOMAIN: CLASS_OF_DIMENSION"^^xsd:string , "A [class_of_dimension_for_shape] is a [class_of_class_of_relationship] that indicates that members of the class_of_shape have a dimension that is a member of the class_of_dimension."^^xsd:string ; | ||
264 | + rdfs:subClassOf iso-dm:ClassOfClassOfRelationship . | ||
265 | + | ||
266 | +iso-dm:ClassOfDirectConnection | ||
267 | + rdf:type owl:Class ; | ||
268 | + rdfs:comment "A [class_of_direct_connection] is a [class_of_connection_of_individual] whose members are members of [direct_connection]."^^xsd:string ; | ||
269 | + rdfs:subClassOf iso-dm:ClassOfConnectionOfIndividual . | ||
270 | + | ||
271 | +iso-dm:ClassOfEvent | ||
272 | + rdf:type owl:Class ; | ||
273 | + rdfs:comment "A [class_of_event] is a [class_of_individual] whose members are members of [event]."^^xsd:string ; | ||
274 | + rdfs:subClassOf iso-dm:ClassOfIndividual ; | ||
275 | + owl:disjointWith iso-dm:Status , iso-dm:Property , iso-dm:IndividualDimension , iso-dm:ClassOfPeriodInTime . | ||
276 | + | ||
277 | +iso-dm:ClassOfExpressInformationRepresentation | ||
278 | + rdf:type owl:Class ; | ||
279 | + rdfs:comment "A [class_of_EXPRESS_information_representation] is a [class_of_information_representation] that is defined by ISO 10303-11."^^xsd:string ; | ||
280 | + rdfs:subClassOf iso-dm:ClassOfInformationRepresentation ; | ||
281 | + owl:disjointWith iso-dm:RepresentationOfGregorianDateAndUtcTime . | ||
282 | + | ||
283 | +iso-dm:ClassOfFeature | ||
284 | + rdf:type owl:Class ; | ||
285 | + rdfs:comment "A [class_of_feature] is a [class_of_arranged_individual] whose members are contiguous, non-separable parts of some [possible_individual] and have an incompletely defined boundary."^^xsd:string ; | ||
286 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual . | ||
287 | + | ||
288 | +iso-dm:ClassOfFeatureWholePart | ||
289 | + rdf:type owl:Class ; | ||
290 | + rdfs:comment "A [class_of_feature_whole_part] is a [class_of_arrangement_of_individual] whose members are instances of [feature_whole_part]."^^xsd:string ; | ||
291 | + rdfs:subClassOf iso-dm:ClassOfArrangementOfIndividual . | ||
292 | + | ||
293 | +iso-dm:ClassOfFunctionalMapping | ||
294 | + rdf:type owl:Class ; | ||
295 | + rdfs:comment "RANGE: DOMAIN"^^xsd:string , "DOMAIN: CODOMAIN"^^xsd:string , "A [class_of_functional_mapping] is a [class_of_relationship] that is a many to one mapping. A [class_of_functional_mapping] is a function."^^xsd:string ; | ||
296 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
297 | + | ||
298 | +iso-dm:ClassOfFunctionalObject | ||
299 | + rdf:type owl:Class ; | ||
300 | + rdfs:comment "A [class_of_functional_object] is a [class_of_arranged_individual] that indicates the function or purpose of an object."^^xsd:string ; | ||
301 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ; | ||
302 | + owl:disjointWith iso-dm:ClassOfMolecule , iso-dm:CrystallineStructure , iso-dm:ClassOfInformationRepresentation , iso-dm:ClassOfSubAtomicParticle , iso-dm:ClassOfInformationPresentation , iso-dm:Phase , iso-dm:ClassOfParticulateMaterial . | ||
303 | + | ||
304 | +iso-dm:ClassOfIdentification | ||
305 | + rdf:type owl:Class ; | ||
306 | + rdfs:comment "A [class_of_identification] is a [class_of_representation_of_thing] that indicates that the pattern is used to refer to the represented thing."^^xsd:string ; | ||
307 | + rdfs:subClassOf iso-dm:ClassOfRepresentationOfThing . | ||
308 | + | ||
309 | +iso-dm:ClassOfInanimatePhysicalObject | ||
310 | + rdf:type owl:Class ; | ||
311 | + rdfs:comment "A [class_of_inanimate_physical_object] is a [class_of_arranged_individual] whose members are not living."^^xsd:string ; | ||
312 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ; | ||
313 | + owl:disjointWith iso-dm:ClassOfOrganism . | ||
314 | + | ||
315 | +iso-dm:ClassOfIndirectConnection | ||
316 | + rdf:type owl:Class ; | ||
317 | + rdfs:comment "A [class_of_indirect_connection] is a [class_of_connection_of_individual] whose members are members of [indirect_connection]."^^xsd:string ; | ||
318 | + rdfs:subClassOf iso-dm:ClassOfConnectionOfIndividual . | ||
319 | + | ||
320 | +iso-dm:ClassOfIndirectProperty | ||
321 | + rdf:type owl:Class ; | ||
322 | + rdfs:comment "RANGE: PROPERTY_SPACE"^^xsd:string , "DOMAIN: CLASS_OF_POSSESSOR"^^xsd:string , "A [class_of_indirect_property] is a [class_of_relationship] that indicates that a member of the [class_of_individual] can possess a member of the [class_of_property] as an [indirect_property] of this type."^^xsd:string ; | ||
323 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
324 | + | ||
325 | +iso-dm:ClassOfIndividual | ||
326 | + rdf:type owl:Class ; | ||
327 | + rdfs:comment "A [class_of_individual] is a [class] whose members are all instances of [possible_individual]."^^xsd:string ; | ||
328 | + rdfs:subClassOf iso-dm:Class . | ||
329 | + | ||
330 | +iso-dm:ClassOfIndividualUsedInConnection | ||
331 | + rdf:type owl:Class ; | ||
332 | + rdfs:comment "A [class_of_individual_used_in_connection] is a [class_of_relationship] whose members are members of [individual_used_in_connection]. It indicates that a member of the [class_of_individual] is used in a [class_of_connection_of_individual]."^^xsd:string ; | ||
333 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
334 | + | ||
335 | +iso-dm:ClassOfInformationObject | ||
336 | + rdf:type owl:Class ; | ||
337 | + rdfs:comment "A [class_of_information_object] is a [class_of_arranged_individual] whose members are members of zero or more [class_of_information_representation] and of zero or more [class_of_information_presentation]."^^xsd:string ; | ||
338 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual . | ||
339 | + | ||
340 | +iso-dm:ClassOfInformationPresentation | ||
341 | + rdf:type owl:Class ; | ||
342 | + rdfs:comment "A [class_of_information_presentation] is a [class_of_arranged_individual] that distinguishes styles for presenting information."^^xsd:string ; | ||
343 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ; | ||
344 | + owl:disjointWith iso-dm:Phase , iso-dm:CrystallineStructure , iso-dm:ClassOfSubAtomicParticle , iso-dm:ClassOfParticulateMaterial , iso-dm:ClassOfMolecule , iso-dm:ClassOfInformationRepresentation . | ||
345 | + | ||
346 | +iso-dm:ClassOfInformationRepresentation | ||
347 | + rdf:type owl:Class ; | ||
348 | + rdfs:comment "A [class_of_information_representation] is a [class_of_arranged_individual] that defines a pattern that represents information."^^xsd:string ; | ||
349 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ; | ||
350 | + owl:disjointWith iso-dm:Phase , iso-dm:CrystallineStructure , iso-dm:ClassOfSubAtomicParticle , iso-dm:ClassOfParticulateMaterial , iso-dm:ClassOfMolecule . | ||
351 | + | ||
352 | +iso-dm:ClassOfIntendedRoleAndDomain | ||
353 | + rdf:type owl:Class ; | ||
354 | + rdfs:comment "RANGE: PLAYED"^^xsd:string , "DOMAIN: CLASS_OF_PLAYER"^^xsd:string , "A [class_of_intended_role_and_domain] is a [class_of_relationship] that indicates that a member of the [class_of_individual] is intended to act as a member of the [role_and_domain]."^^xsd:string ; | ||
355 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
356 | + | ||
357 | +iso-dm:ClassOfInvolvementByReference | ||
358 | + rdf:type owl:Class ; | ||
359 | + rdfs:comment "RANGE: CLASS_OF_INVOLVER"^^xsd:string , "DOMAIN: CLASS_OF_INVOLVED"^^xsd:string , "A [class_of_involvement_by_reference] is a [class_of_relationship] whose members are instances of [involvement_by_reference]."^^xsd:string ; | ||
360 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
361 | + | ||
362 | +iso-dm:ClassOfIsomorphicFunctionalMapping | ||
363 | + rdf:type owl:Class ; | ||
364 | + rdfs:comment "A [class_of_isomorphic_functional_mapping] is a [class_of_functional_mapping] that is isomorphic."^^xsd:string ; | ||
365 | + rdfs:subClassOf iso-dm:ClassOfFunctionalMapping . | ||
366 | + | ||
367 | +iso-dm:ClassOfLeftNamespace | ||
368 | + rdf:type owl:Class ; | ||
369 | + rdfs:comment "A [class_of_left_namespace] is a [class_of_namespace] that indicates that the class_of_part is the left namespace for the members of the class_of_class_of_whole."^^xsd:string ; | ||
370 | + rdfs:subClassOf iso-dm:ClassOfNamespace . | ||
371 | + | ||
372 | +iso-dm:ClassOfLifecycleStage | ||
373 | + rdf:type owl:Class ; | ||
374 | + rdfs:comment "A [class_of_lifecycle_stage] is a [class_of_relationship] whose members are members of [lifecycle_stage]."^^xsd:string ; | ||
375 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
376 | + | ||
377 | +iso-dm:ClassOfMolecule | ||
378 | + rdf:type owl:Class ; | ||
379 | + rdfs:comment "A [class_of_molecule] is a [class_of_arranged_individual] whose members are molecules."^^xsd:string ; | ||
380 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ; | ||
381 | + owl:disjointWith iso-dm:Phase , iso-dm:CrystallineStructure , iso-dm:ClassOfSubAtomicParticle , iso-dm:ClassOfParticulateMaterial . | ||
382 | + | ||
383 | +iso-dm:ClassOfMultidimensionalObject | ||
384 | + rdf:type owl:Class ; | ||
385 | + rdfs:comment "A [class_of_multidimensional_object] is a [class_of_abstract_object] whose members are instances of [multidimensional_object]. The role played by each position in the classified [multidimensional_object] is specified at the same position in the [roles] attribute. Constant values that apply to any position in [roles] are specified in the same position in the [parameters] attribute. The cardinalities for the roles attribute are specified by the same position in the cardinalities attribute."^^xsd:string ; | ||
386 | + rdfs:subClassOf iso-dm:ClassOfAbstractObject . | ||
387 | + | ||
388 | +iso-dm:ClassOfNamespace | ||
389 | + rdf:type owl:Class ; | ||
390 | + rdfs:comment "RANGE: CLASS_OF_PART"^^xsd:string , "DOMAIN: CLASS_OF_CLASS_OF_WHOLE"^^xsd:string , "A [class_of_namespace] is a [class_of_class_of_relationship] that indicates that a [class_of_information_representation] is the class_of_part used as a namespace for each member of a [class_of_class_of_information_representation] that is the class_of_class_of_whole."^^xsd:string ; | ||
391 | + rdfs:subClassOf iso-dm:ClassOfClassOfRelationship . | ||
392 | + | ||
393 | +iso-dm:ClassOfNumber | ||
394 | + rdf:type owl:Class ; | ||
395 | + rdfs:comment "A [class_of_number] is a [class_of_class] whose members are members of [arithmetic_number]."^^xsd:string ; | ||
396 | + rdfs:subClassOf iso-dm:ClassOfClass ; | ||
397 | + owl:disjointWith iso-dm:ClassOfShapeDimension , iso-dm:ClassOfPropertySpace . | ||
398 | + | ||
399 | +iso-dm:ClassOfOrganism | ||
400 | + rdf:type owl:Class ; | ||
401 | + rdfs:comment "A [class_of_organism] is a [class_of_arranged_individual] whose members are living organisms."^^xsd:string ; | ||
402 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual . | ||
403 | + | ||
404 | +iso-dm:ClassOfOrganization | ||
405 | + rdf:type owl:Class ; | ||
406 | + rdfs:comment "A [class_of_organization] is a [class_of_arranged_individual] whose members are instances of [physical_object] that are composed of temporal parts of people and other assets, and are organised with a particular purpose."^^xsd:string ; | ||
407 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual . | ||
408 | + | ||
409 | +iso-dm:ClassOfParticipation | ||
410 | + rdf:type owl:Class ; | ||
411 | + rdfs:comment "RANGE: CLASS_OF_WHOLE"^^xsd:string , "DOMAIN: CLASS_OF_PART"^^xsd:string , "A [class_of_participation] is a [class_of_composition_of_individual] that indicates a member of an instance of [participating_role_and_domain] participates in a member of an instance of [class_of_activity]."^^xsd:string ; | ||
412 | + rdfs:subClassOf iso-dm:ClassOfCompositionOfIndividual . | ||
413 | + | ||
414 | +iso-dm:ClassOfParticulateMaterial | ||
415 | + rdf:type owl:Class ; | ||
416 | + rdfs:comment "A [class_of_particulate_material] is a [class_of_arranged_individual] whose members are arranged amounts of super-molecular sized objects of the same or different types."^^xsd:string ; | ||
417 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ; | ||
418 | + owl:disjointWith iso-dm:Phase , iso-dm:CrystallineStructure , iso-dm:ClassOfSubAtomicParticle . | ||
419 | + | ||
420 | +iso-dm:ClassOfPeriodInTime | ||
421 | + rdf:type owl:Class ; | ||
422 | + rdfs:comment "A [class_of_period_in_time] is a [class_of_individual] whose members are instances of [period_in_time]."^^xsd:string ; | ||
423 | + rdfs:subClassOf iso-dm:ClassOfIndividual ; | ||
424 | + owl:disjointWith iso-dm:Status , iso-dm:Property , iso-dm:IndividualDimension . | ||
425 | + | ||
426 | +iso-dm:ClassOfPerson | ||
427 | + rdf:type owl:Class ; | ||
428 | + rdfs:comment "A [class_of_person] is a [class_of_organism] whose members are people."^^xsd:string ; | ||
429 | + rdfs:subClassOf iso-dm:ClassOfOrganism . | ||
430 | + | ||
431 | +iso-dm:ClassOfPointInTime | ||
432 | + rdf:type owl:Class ; | ||
433 | + rdfs:comment "A [class_of_point_in_time] is a [class_of_event] whose members are members of [point_in_time]."^^xsd:string ; | ||
434 | + rdfs:subClassOf iso-dm:ClassOfEvent . | ||
435 | + | ||
436 | +iso-dm:ClassOfPossibleRoleAndDomain | ||
437 | + rdf:type owl:Class ; | ||
438 | + rdfs:comment "RANGE: PLAYED"^^xsd:string , "DOMAIN: CLASS_OF_PLAYER"^^xsd:string , "A [class_of_possible_role_and_domain] is a [class_of_relationship] that indicates the [role_and_domain] that can be played by a member of the [class_of_individual], in some [activity]."^^xsd:string ; | ||
439 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
440 | + | ||
441 | +iso-dm:ClassOfProperty | ||
442 | + rdf:type owl:Class ; | ||
443 | + rdfs:comment "A [class_of_property] is a [class_of_class_of_individual] whose members are instances of [property]."^^xsd:string ; | ||
444 | + rdfs:subClassOf iso-dm:ClassOfClassOfIndividual ; | ||
445 | + owl:disjointWith iso-dm:ShapeDimension , iso-dm:ClassOfStatus . | ||
446 | + | ||
447 | +iso-dm:ClassOfPropertySpace | ||
448 | + rdf:type owl:Class ; | ||
449 | + rdfs:comment "A [class_of_property_space] is a [class_of_class] whose members are members of [property_space]."^^xsd:string ; | ||
450 | + rdfs:subClassOf iso-dm:ClassOfClass ; | ||
451 | + owl:disjointWith iso-dm:ClassOfShapeDimension . | ||
452 | + | ||
453 | +iso-dm:ClassOfRecognition | ||
454 | + rdf:type owl:Class ; | ||
455 | + rdfs:comment "RANGE: CLASS_OF_RECOGNIZING"^^xsd:string , "DOMAIN: CLASS_OF_RECOGNIZED"^^xsd:string , "A [class_of_recognition] is a [class_of_relationship] that indicates that a member of a [class_of_activity] may result in the recognition of a member of a [class]."^^xsd:string ; | ||
456 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
457 | + | ||
458 | +iso-dm:ClassOfRelationship | ||
459 | + rdf:type owl:Class ; | ||
460 | + rdfs:comment "A [class_of_relationship] is a [class_of _abstract_object] whose members are members of [relationship]."^^xsd:string ; | ||
461 | + rdfs:subClassOf iso-dm:ClassOfAbstractObject . | ||
462 | + | ||
463 | +iso-dm:ClassOfRelationshipWithRelatedEnd1 | ||
464 | + rdf:type owl:Class ; | ||
465 | + rdfs:comment "DOMAIN: RELATED"^^xsd:string , "A [class_of_relationship_with_related_end_1] is a [class_of_relationship] where a particular [thing] is related in the [class_of_relationship], rather than the members of a [class]. The related [thing] plays the [role_and_domain] indicated by the class_of_end_1 attribute."^^xsd:string ; | ||
466 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
467 | + | ||
468 | +iso-dm:ClassOfRelationshipWithRelatedEnd2 | ||
469 | + rdf:type owl:Class ; | ||
470 | + rdfs:comment "DOMAIN: RELATED"^^xsd:string , "A [class_of_relationship_with_related_end_2] is a [class_of_relationship] where a particular [thing] is related in the [class_of_relationship], rather than the members of a [class]. The related [thing] plays the [role_and_domain] indicated by the class_of_end_2 attribute."^^xsd:string ; | ||
471 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
472 | + | ||
473 | +iso-dm:ClassOfRelationshipWithSignature | ||
474 | + rdf:type owl:Class ; | ||
475 | + rdfs:comment "RANGE: CLASS_OF_END_2"^^xsd:string , "DOMAIN: CLASS_OF_END_1"^^xsd:string , "A [class_of_relationship_with_signature] is a [class_of_relationship] that may have a [role_and_domain] specified for each end."^^xsd:string ; | ||
476 | + rdfs:subClassOf iso-dm:Relationship , iso-dm:ClassOfRelationship . | ||
477 | + | ||
478 | +iso-dm:ClassOfRelativeLocation | ||
479 | + rdf:type owl:Class ; | ||
480 | + rdfs:comment "RANGE: CLASS_OF_LOCATOR"^^xsd:string , "DOMAIN: CLASS_OF_LOCATED"^^xsd:string , "A [class_of_relative_location] is a [class_of_relationship] whose members are instances of [relative_location]."^^xsd:string ; | ||
481 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
482 | + | ||
483 | +iso-dm:ClassOfRepresentationOfThing | ||
484 | + rdf:type owl:Class ; | ||
485 | + rdfs:comment "RANGE: REPRESENTED"^^xsd:string , "DOMAIN: PATTERN"^^xsd:string , "A [class_of_representation_of_thing] is a [class_of_relationship] that indicates that all members of the pattern [class_of_information_representation] represent the [thing]."^^xsd:string ; | ||
486 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
487 | + | ||
488 | +iso-dm:ClassOfRepresentationTranslation | ||
489 | + rdf:type owl:Class ; | ||
490 | + rdfs:comment "RANGE: CLASS_OF_SECOND"^^xsd:string , "DOMAIN: CLASS_OF_FIRST"^^xsd:string , "A [class_of_representation_translation] is a [class_of_relationship] that indicates the translation of two instances of [class_of_information_representation]."^^xsd:string ; | ||
491 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
492 | + | ||
493 | +iso-dm:ClassOfResponsibilityForRepresentation | ||
494 | + rdf:type owl:Class ; | ||
495 | + rdfs:comment "A [class_of_responsibility_for_representation] is a [class_of_relationship] whose members indicate that a [possible_individual] (usually an organization) deems that members of the pattern can be used as representations of the represented thing."^^xsd:string ; | ||
496 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
497 | + | ||
498 | +iso-dm:ClassOfRightNamespace | ||
499 | + rdf:type owl:Class ; | ||
500 | + rdfs:comment "A [class_of_right_namespace] is a [class_of_namespace] where the class_of_part is the namespace for the members of the class_of_class_of_whole."^^xsd:string ; | ||
501 | + rdfs:subClassOf iso-dm:ClassOfNamespace . | ||
502 | + | ||
503 | +iso-dm:ClassOfScale | ||
504 | + rdf:type owl:Class ; | ||
505 | + rdfs:comment "A [class_of_scale] is a [class_of_class_of_relationship] whose members are instances of [scale]."^^xsd:string ; | ||
506 | + rdfs:subClassOf iso-dm:ClassOfClassOfRelationship . | ||
507 | + | ||
508 | +iso-dm:ClassOfScaleConversion | ||
509 | + rdf:type owl:Class ; | ||
510 | + rdfs:comment "A [class_of_scale_conversion] is a [class_of_isomorphic_functional_mapping] that defines a conversion between two different scales of units used for the quantification of properties."^^xsd:string ; | ||
511 | + rdfs:subClassOf iso-dm:ClassOfIsomorphicFunctionalMapping . | ||
512 | + | ||
513 | +iso-dm:ClassOfShape | ||
514 | + rdf:type owl:Class ; | ||
515 | + rdfs:comment "A [class_of_shape] is a [property_space] that has instances of [shape] as its members."^^xsd:string ; | ||
516 | + rdfs:subClassOf iso-dm:PropertySpace . | ||
517 | + | ||
518 | +iso-dm:ClassOfShapeDimension | ||
519 | + rdf:type owl:Class ; | ||
520 | + rdfs:comment "A [class_of_shape_dimension] is a [class_of_class] that is a dimension of a [class_of_shape]."^^xsd:string ; | ||
521 | + rdfs:subClassOf iso-dm:ClassOfClass . | ||
522 | + | ||
523 | +iso-dm:ClassOfSpecialization | ||
524 | + rdf:type owl:Class ; | ||
525 | + rdfs:comment "RANGE: CLASS_OF_SUPERCLASS"^^xsd:string , "DOMAIN: CLASS_OF_SUBCLASS"^^xsd:string , "A [class_of_specialization] is a [class_of_relationship] whose members are instances of [specialization]. It indicates that a member of the class_of_subclass is a subclass of a member of the class_of_superclass."^^xsd:string ; | ||
526 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
527 | + | ||
528 | +iso-dm:ClassOfStatus | ||
529 | + rdf:type owl:Class ; | ||
530 | + rdfs:comment "A [class_of_status] is a [class_of_class_of_individual] whose members are a [status]."^^xsd:string ; | ||
531 | + rdfs:subClassOf iso-dm:ClassOfClassOfIndividual ; | ||
532 | + owl:disjointWith iso-dm:ShapeDimension . | ||
533 | + | ||
534 | +iso-dm:ClassOfSubAtomicParticle | ||
535 | + rdf:type owl:Class ; | ||
536 | + rdfs:comment "A [class_of_sub_atomic_particle] is a [class_of_arranged_individual] whose members are constituent particles of atoms."^^xsd:string ; | ||
537 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ; | ||
538 | + owl:disjointWith iso-dm:Phase , iso-dm:CrystallineStructure . | ||
539 | + | ||
540 | +iso-dm:ClassOfTemporalSequence | ||
541 | + rdf:type owl:Class ; | ||
542 | + rdfs:comment "RANGE: CLASS_OF_SUCCESSOR"^^xsd:string , "DOMAIN: CLASS_OF_PREDECESSOR"^^xsd:string , "A [class_of_temporal_sequence] is a [class_of_relationship] where the sequence is of a temporal nature."^^xsd:string ; | ||
543 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
544 | + | ||
545 | +iso-dm:ClassOfTemporalWholePart | ||
546 | + rdf:type owl:Class ; | ||
547 | + rdfs:comment "A [class_of_temporal_whole_part] is a [class_of_composition_of_individual] whose members are members of [temporal_whole_part]."^^xsd:string ; | ||
548 | + rdfs:subClassOf iso-dm:ClassOfCompositionOfIndividual . | ||
549 | + | ||
550 | +iso-dm:ClassOfUsageOfRepresentation | ||
551 | + rdf:type owl:Class ; | ||
552 | + rdfs:comment "A [class_of_usage_of_representation] is a [class_of_relationship] whose members indicate that a [possible_individual] (usually an organization) reads or otherwise uses members of the pattern as a representation of the represented thing."^^xsd:string ; | ||
553 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
554 | + | ||
555 | +iso-dm:Classification | ||
556 | + rdf:type owl:Class ; | ||
557 | + rdfs:comment "RANGE: CLASSIFIER"^^xsd:string , "DOMAIN: CLASSIFIED"^^xsd:string , "A [classification] is type of [relationship] that indicates that the classified [thing] is a member of the classifier [class]. [classification] is not transitive."^^xsd:string ; | ||
558 | + rdfs:subClassOf iso-dm:Relationship . | ||
559 | + | ||
560 | +iso-dm:ComparisonOfProperty | ||
561 | + rdf:type owl:Class ; | ||
562 | + rdfs:comment "RANGE: LESSER_ELEMENT"^^xsd:string , "DOMAIN: GREATER_ELEMENT"^^xsd:string , "A [comparison_of_property] is a [relationship] that indicates the magnitude of one [property] is greater than that of another."^^xsd:string ; | ||
563 | + rdfs:subClassOf iso-dm:Relationship . | ||
564 | + | ||
565 | +iso-dm:CompositionOfIndividual | ||
566 | + rdf:type owl:Class ; | ||
567 | + rdfs:comment "RANGE: WHOLE"^^xsd:string , "DOMAIN: PART"^^xsd:string , "A [composition_of_individual] is a [relationship] that indicates that the part [possible_individual] is a part of the whole [possible_individual]. A simple composition is indicated, unless a subtype is instantiated too. [composition_of_individual] is transitive."^^xsd:string ; | ||
568 | + rdfs:subClassOf iso-dm:Relationship . | ||
569 | + | ||
570 | +iso-dm:ConnectionOfIndividual | ||
571 | + rdf:type owl:Class ; | ||
572 | + rdfs:comment "RANGE: SIDE_2"^^xsd:string , "DOMAIN: SIDE_1"^^xsd:string , "A [connection_of_individual] is a [relationship] that indicates that matter, energy, or both can be transferred between the members of [possible_individual] that are connected, either directly or indirectly."^^xsd:string ; | ||
573 | + rdfs:subClassOf iso-dm:Relationship . | ||
574 | + | ||
575 | +iso-dm:ContainmentOfIndividual | ||
576 | + rdf:type owl:Class ; | ||
577 | + rdfs:comment "A [containment_of_individual] is a [relative_location] where the located [possible_individual] is contained by the locator [possible_individual] but is not part of it."^^xsd:string ; | ||
578 | + rdfs:subClassOf iso-dm:RelativeLocation . | ||
579 | + | ||
580 | +iso-dm:CoordinateSystem | ||
581 | + rdf:type owl:Class ; | ||
582 | + rdfs:comment "A [coordinate_system] is a [multidimensional_scale] for locating and relating a [possible_individual] in an n-dimensional space in which arbitrary geometric transformations are valid."^^xsd:string ; | ||
583 | + rdfs:subClassOf iso-dm:MultidimensionalScale . | ||
584 | + | ||
585 | +iso-dm:CrystallineStructure | ||
586 | + rdf:type owl:Class ; | ||
587 | + rdfs:comment "A [crystalline_structure] is a [class_of_arranged_individual] that is a form in which many simple elements and their natural compounds regularly aggregate by the operation of natural affinity: it has a definite internal structure, with the external form of a solid enclosed by a number of symmetrically arranged plane faces, and varying in simplicity from the cube to much more complicated geometric bodies."^^xsd:string ; | ||
588 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ; | ||
589 | + owl:disjointWith iso-dm:Phase . | ||
590 | + | ||
591 | +iso-dm:Definition | ||
592 | + rdf:type owl:Class ; | ||
593 | + rdfs:comment "DOMAIN: REPRESENTED"^^xsd:string , "A [definition] is a [representation_of_thing] that indicates that the [class] is defined by the sign [possible_individual]."^^xsd:string ; | ||
594 | + rdfs:subClassOf iso-dm:RepresentationOfThing . | ||
595 | + | ||
596 | +iso-dm:Description | ||
597 | + rdf:type owl:Class ; | ||
598 | + rdfs:comment "A [description] is a [representation_of_thing] that indicates that the [possible_individual] describes the [thing]."^^xsd:string ; | ||
599 | + rdfs:subClassOf iso-dm:RepresentationOfThing . | ||
600 | + | ||
601 | +iso-dm:DifferenceOfSetOfClass | ||
602 | + rdf:type owl:Class ; | ||
603 | + rdfs:comment "RANGE: RESULT"^^xsd:string , "DOMAIN: INPUT"^^xsd:string , "A [difference_of_set_of_class] is a [functional_mapping] that indicates that the membership of the result [class] is the difference between the membership of the union of the classes that are members of the [enumerated_set_of_class] and their intersection."^^xsd:string ; | ||
604 | + rdfs:subClassOf iso-dm:FunctionalMapping . | ||
605 | + | ||
606 | +iso-dm:DimensionOfIndividual | ||
607 | + rdf:type owl:Class ; | ||
608 | + rdfs:comment "RANGE: INDIVIDUAL_DIMENSION"^^xsd:string , "DOMAIN: INDIVIDUAL"^^xsd:string , "A [dimension_of_individual] is a [class_of_relationship] that indicates that each member of the set of lines that are the [individual_dimension] are a dimension of the [possible_individual]."^^xsd:string ; | ||
609 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
610 | + | ||
611 | +iso-dm:DimensionOfShape | ||
612 | + rdf:type owl:Class ; | ||
613 | + rdfs:comment "RANGE: SHAPE"^^xsd:string , "DOMAIN: DIMENSION"^^xsd:string , "A [dimension_of_shape] is a [class_of_class_of_relationship] that indicates that members of the [shape_dimension] are dimensions of the [shape] members."^^xsd:string ; | ||
614 | + rdfs:subClassOf iso-dm:ClassOfClassOfRelationship . | ||
615 | + | ||
616 | +iso-dm:DirectConnection | ||
617 | + rdf:type owl:Class ; | ||
618 | + rdfs:comment "A [direct_connection] is a [connection_of_individual] that indicates that the side_1 and side_2 are directly connected via a common spatial boundary."^^xsd:string ; | ||
619 | + rdfs:subClassOf iso-dm:ConnectionOfIndividual . | ||
620 | + | ||
621 | +iso-dm:DocumentDefinition | ||
622 | + rdf:type owl:Class ; | ||
623 | + rdfs:comment "A [document_definition] is a [class_of_class_of_information_representation] that defines the content and/or structure of documents."^^xsd:string ; | ||
624 | + rdfs:subClassOf iso-dm:ClassOfClassOfInformationRepresentation ; | ||
625 | + owl:disjointWith iso-dm:RepresentationForm , iso-dm:Language . | ||
626 | + | ||
627 | +iso-dm:Ending | ||
628 | + rdf:type owl:Class ; | ||
629 | + rdfs:comment "An [ending] is a [temporal_bounding] that marks the end of a [possible_individual]."^^xsd:string ; | ||
630 | + rdfs:subClassOf iso-dm:TemporalBounding . | ||
631 | + | ||
632 | +iso-dm:EnumeratedNumberSet | ||
633 | + rdf:type owl:Class ; | ||
634 | + rdfs:comment "An [enumerated_number_set] is a [class_of_number] and an [enumerated_set_of_class]."^^xsd:string ; | ||
635 | + rdfs:subClassOf iso-dm:EnumeratedSetOfClass , iso-dm:ClassOfNumber ; | ||
636 | + owl:disjointWith iso-dm:NumberSpace . | ||
637 | + | ||
638 | +iso-dm:EnumeratedPropertySet | ||
639 | + rdf:type owl:Class ; | ||
640 | + rdfs:comment "An [enumerated_property_set] is a [class_of_property] and an [enumerated_set_of_class] whose members are an enumerated set of properties of the same [single_property_dimension] or [multidimensional_property_space]."^^xsd:string ; | ||
641 | + rdfs:subClassOf iso-dm:EnumeratedSetOfClass , iso-dm:ClassOfProperty ; | ||
642 | + owl:disjointWith iso-dm:PropertySpace . | ||
643 | + | ||
644 | +iso-dm:EnumeratedSetOfClass | ||
645 | + rdf:type owl:Class ; | ||
646 | + rdfs:comment "An [enumerated_set_of_class] is a [class_of_class] that is an enumerated set of the instances of [class]. Enumerated means that the full set of members is specified."^^xsd:string ; | ||
647 | + rdfs:subClassOf iso-dm:ClassOfClass . | ||
648 | + | ||
649 | +iso-dm:Event | ||
650 | + rdf:type owl:Class ; | ||
651 | + rdfs:comment "An [event] is a [possible_individual] with zero extent in time at any point in space-time - a four dimensional plane. An [event] may be at one-time only, or may extend in time at different places, or a combination of both. An [event] is the temporal boundary of one or more [possible_individual]s, although there may be no knowledge of these [possible_individual]s."^^xsd:string ; | ||
652 | + rdfs:subClassOf iso-dm:PossibleIndividual . | ||
653 | + | ||
654 | +iso-dm:ExpressBinary | ||
655 | + rdf:type owl:Class ; | ||
656 | + rdfs:comment "An [EXPRESS_binary] is a [class_of_EXPRESS_information_representation] that represents a binary value as defined in ISO 10303-11:1994, 8.1.7."^^xsd:string ; | ||
657 | + rdfs:subClassOf iso-dm:ClassOfExpressInformationRepresentation ; | ||
658 | + owl:disjointWith iso-dm:ExpressString , iso-dm:ExpressReal , iso-dm:ExpressLogical , iso-dm:ExpressInteger , iso-dm:ExpressBoolean . | ||
659 | + | ||
660 | +iso-dm:ExpressBoolean | ||
661 | + rdf:type owl:Class ; | ||
662 | + rdfs:comment "An [EXPRESS_Boolean] is a [class_of_EXPRESS_information_representation] that represents a Boolean value as defined in ISO 10303-11:1994, 8.1.5."^^xsd:string ; | ||
663 | + rdfs:subClassOf iso-dm:ClassOfExpressInformationRepresentation ; | ||
664 | + owl:disjointWith iso-dm:ExpressString , iso-dm:ExpressReal , iso-dm:ExpressLogical , iso-dm:ExpressInteger . | ||
665 | + | ||
666 | +iso-dm:ExpressInteger | ||
667 | + rdf:type owl:Class ; | ||
668 | + rdfs:comment "An [EXPRESS_integer] is a [class_of_EXPRESS_information_representation] that represents an integer number as defined in ISO 10303-11:1994, 8.1.3."^^xsd:string ; | ||
669 | + rdfs:subClassOf iso-dm:ClassOfExpressInformationRepresentation ; | ||
670 | + owl:disjointWith iso-dm:ExpressString , iso-dm:ExpressReal , iso-dm:ExpressLogical . | ||
671 | + | ||
672 | +iso-dm:ExpressLogical | ||
673 | + rdf:type owl:Class ; | ||
674 | + rdfs:comment "An [EXPRESS_logical] is a [class_of_EXPRESS_information_representation] that represents a logical value as defined in ISO 10303-11:1994, 8.1.4."^^xsd:string ; | ||
675 | + rdfs:subClassOf iso-dm:ClassOfExpressInformationRepresentation ; | ||
676 | + owl:disjointWith iso-dm:ExpressString , iso-dm:ExpressReal . | ||
677 | + | ||
678 | +iso-dm:ExpressReal | ||
679 | + rdf:type owl:Class ; | ||
680 | + rdfs:comment "An [EXPRESS_real] is a [class_of_EXPRESS_information_representation] that represents a real number as defined in ISO 10303-11:1994, 8.1.2."^^xsd:string ; | ||
681 | + rdfs:subClassOf iso-dm:ClassOfExpressInformationRepresentation ; | ||
682 | + owl:disjointWith iso-dm:ExpressString . | ||
683 | + | ||
684 | +iso-dm:ExpressString | ||
685 | + rdf:type owl:Class ; | ||
686 | + rdfs:comment "An [EXPRESS_string] is a [class_of_EXPRESS_information_representation] that represents a string as defined in ISO 10303-11:1994, 8.1.6."^^xsd:string ; | ||
687 | + rdfs:subClassOf iso-dm:ClassOfExpressInformationRepresentation . | ||
688 | + | ||
689 | +iso-dm:FeatureWholePart | ||
690 | + rdf:type owl:Class ; | ||
691 | + rdfs:comment "A [feature_whole_part] is an [arrangement_of_individual] that indicates that the part is a non-separable, contiguous part of the whole."^^xsd:string ; | ||
692 | + rdfs:subClassOf iso-dm:ArrangementOfIndividual . | ||
693 | + | ||
694 | +iso-dm:FunctionalMapping | ||
695 | + rdf:type owl:Class ; | ||
696 | + rdfs:comment "RANGE: RESULT"^^xsd:string , "DOMAIN: INPUT"^^xsd:string , "A [functional_mapping] is a [relationship] that indicates that the input gave the result as determined by the classifying [class_of_functional_mapping]."^^xsd:string ; | ||
697 | + rdfs:subClassOf iso-dm:Relationship . | ||
698 | + | ||
699 | +iso-dm:FunctionalPhysicalObject | ||
700 | + rdf:type owl:Class ; | ||
701 | + rdfs:comment "A [functional_physical_object] is a [physical_object] that has functional, rather than material, continuity as its basis for identity. Adjacent temporal parts of a [functional_physical_object] need not have common matter or energy, provided the matter or energy of each temporal part fulfils the same function."^^xsd:string ; | ||
702 | + rdfs:subClassOf iso-dm:PhysicalObject . | ||
703 | + | ||
704 | +iso-dm:Identification | ||
705 | + rdf:type owl:Class ; | ||
706 | + rdfs:comment "An [identification] is a [representation_of_thing] that indicates that the [possible_individual] is an identifier for the [thing] identified."^^xsd:string ; | ||
707 | + rdfs:subClassOf iso-dm:RepresentationOfThing . | ||
708 | + | ||
709 | +iso-dm:IndirectConnection | ||
710 | + rdf:type owl:Class ; | ||
711 | + rdfs:comment "An [indirect_connection] is a [connection_of_individual] that indicates that side_1 and side_2 are connected via other individuals."^^xsd:string ; | ||
712 | + rdfs:subClassOf iso-dm:ConnectionOfIndividual . | ||
713 | + | ||
714 | +iso-dm:IndirectProperty | ||
715 | + rdf:type owl:Class ; | ||
716 | + rdfs:comment "RANGE: PROPERTY"^^xsd:string , "DOMAIN: POSSESSOR"^^xsd:string , "An [indirect_property] is a [relationship] between a [property] and a [possible_individual]. The nature of the [indirect_property] is defined by its [classification] by a [class_of_indirect_property]. A property is indirect when it does not directly apply to the [possible_individual] it applies to, but is derived from some process."^^xsd:string ; | ||
717 | + rdfs:subClassOf iso-dm:Relationship . | ||
718 | + | ||
719 | +iso-dm:IndividualDimension | ||
720 | + rdf:type owl:Class ; | ||
721 | + rdfs:comment "An [individual_dimension] is a [class_of_individual] whose members characterize a particular [possible_individual]."^^xsd:string ; | ||
722 | + rdfs:subClassOf iso-dm:ClassOfIndividual ; | ||
723 | + owl:disjointWith iso-dm:Status , iso-dm:Property . | ||
724 | + | ||
725 | +iso-dm:IndividualUsedInConnection | ||
726 | + rdf:type owl:Class ; | ||
727 | + rdfs:comment "An [individual_used_in_connection] is a [relationship] that indicates that a [possible_individual] is used in a [connection_of_individual]."^^xsd:string ; | ||
728 | + rdfs:subClassOf iso-dm:Relationship . | ||
729 | + | ||
730 | +iso-dm:IntegerNumber | ||
731 | + rdf:type owl:Class ; | ||
732 | + rdfs:comment "An [integer_number] is an [arithmetic_number] that is an integer number."^^xsd:string ; | ||
733 | + rdfs:subClassOf iso-dm:ArithmeticNumber ; | ||
734 | + owl:disjointWith iso-dm:RealNumber , iso-dm:MultidimensionalNumber . | ||
735 | + | ||
736 | +iso-dm:IntendedRoleAndDomain | ||
737 | + rdf:type owl:Class ; | ||
738 | + rdfs:comment "RANGE: PLAYER"^^xsd:string , "DOMAIN: PLAYED"^^xsd:string , "An [intended_role_and_domain] is a [relationship] that indicates the [role_and_domain] some temporal part of the [possible_individual] is intended to take with respect to some [activity]."^^xsd:string ; | ||
739 | + rdfs:subClassOf iso-dm:Relationship . | ||
740 | + | ||
741 | +iso-dm:IntersectionOfSetOfClass | ||
742 | + rdf:type owl:Class ; | ||
743 | + rdfs:comment "RANGE: RESULT"^^xsd:string , "DOMAIN: INPUT"^^xsd:string , "An [intersection_of_set_of_class] is a [functional_mapping] that indicates that the result [class] consists of those members of the members of the classes [enumerated_set_of_class] that are common to each class."^^xsd:string ; | ||
744 | + rdfs:subClassOf iso-dm:FunctionalMapping . | ||
745 | + | ||
746 | +iso-dm:InvolvementByReference | ||
747 | + rdf:type owl:Class ; | ||
748 | + rdfs:comment "RANGE: INVOLVER"^^xsd:string , "DOMAIN: INVOLVED"^^xsd:string , "An [involvement_by_reference] is a [relationship] that indicates that a [thing] is referred to in an [activity]."^^xsd:string ; | ||
749 | + rdfs:subClassOf iso-dm:Relationship . | ||
750 | + | ||
751 | +iso-dm:Language | ||
752 | + rdf:type owl:Class ; | ||
753 | + rdfs:comment "A [language] is a [class_of_class_of_information_representation] whose members are all the information representations made in the language."^^xsd:string ; | ||
754 | + rdfs:subClassOf iso-dm:ClassOfClassOfInformationRepresentation ; | ||
755 | + owl:disjointWith iso-dm:RepresentationForm . | ||
756 | + | ||
757 | +iso-dm:LeftNamespace | ||
758 | + rdf:type owl:Class ; | ||
759 | + rdfs:comment "A [left_namespace] is a [namespace] where the [class_of_part] is the left part of the [class_of_whole]."^^xsd:string ; | ||
760 | + rdfs:subClassOf iso-dm:Namespace . | ||
761 | + | ||
762 | +iso-dm:LifecycleStage | ||
763 | + rdf:type owl:Class ; | ||
764 | + rdfs:comment "RANGE: INTERESTED"^^xsd:string , "DOMAIN: INTEREST"^^xsd:string , "A [lifecycle_stage] is a [relationship] that indicates the interest that a [possible_individual] has in some [possible_individual]."^^xsd:string ; | ||
765 | + rdfs:subClassOf iso-dm:Relationship . | ||
766 | + | ||
767 | +iso-dm:LowerBoundOfNumberRange | ||
768 | + rdf:type owl:Class ; | ||
769 | + rdfs:comment "RANGE: CLASSIFIER"^^xsd:string , "DOMAIN: CLASSIFIED"^^xsd:string , "A [lower_bound_of_number_range] is a [classification] that indicates an [arithmetic_number] is the lowest value in a [number_range]."^^xsd:string ; | ||
770 | + rdfs:subClassOf iso-dm:Classification . | ||
771 | + | ||
772 | +iso-dm:LowerBoundOfPropertyRange | ||
773 | + rdf:type owl:Class ; | ||
774 | + rdfs:comment "RANGE: CLASSIFIER"^^xsd:string , "DOMAIN: CLASSIFIED"^^xsd:string , "A [lower_bound_of_property_range] is a [classification] that indicates that a [property] is the lower bound of a [property_range]."^^xsd:string ; | ||
775 | + rdfs:subClassOf iso-dm:Classification . | ||
776 | + | ||
777 | +iso-dm:MaterializedPhysicalObject | ||
778 | + rdf:type owl:Class ; | ||
779 | + rdfs:comment "A [materialized_physical_object] is a [physical_object] that has matter and/or energy continuity as its basis for identity. Matter or energy continuity requires some matter or energy to be common to adjacent temporal parts of the [materialized_physical_object]. Replacement of some components from time to time does not create a new identity."^^xsd:string ; | ||
780 | + rdfs:subClassOf iso-dm:PhysicalObject . | ||
781 | + | ||
782 | +iso-dm:MultidimensionalNumber | ||
783 | + rdf:type owl:Class ; | ||
784 | + rdfs:comment "A [multidimensional_number] is an [arithmetic_number] that is also a [multidimensional_object]."^^xsd:string ; | ||
785 | + rdfs:subClassOf iso-dm:MultidimensionalObject , iso-dm:ArithmeticNumber ; | ||
786 | + owl:disjointWith iso-dm:RealNumber , iso-dm:MultidimensionalPropertySpace , iso-dm:MultidimensionalProperty , iso-dm:MultidimensionalNumberSpace . | ||
787 | + | ||
788 | +iso-dm:MultidimensionalNumberSpace | ||
789 | + rdf:type owl:Class ; | ||
790 | + rdfs:comment "A [multidimensional_number_space] is a [number_space] and a [multidimensional_object]."^^xsd:string ; | ||
791 | + rdfs:subClassOf iso-dm:NumberSpace , iso-dm:MultidimensionalObject ; | ||
792 | + owl:disjointWith iso-dm:NumberRange , iso-dm:MultidimensionalPropertySpace , iso-dm:MultidimensionalProperty . | ||
793 | + | ||
794 | +iso-dm:MultidimensionalObject | ||
795 | + rdf:type owl:Class ; | ||
796 | + rdfs:comment "A [multidimensional_object] is an [abstract_object] that is an ordered list of [thing]. The significance of the [multidimensional_object] is determined by being a member of a [class_of_multidimensional_object] that indicates the role played by each of its elements."^^xsd:string ; | ||
797 | + rdfs:subClassOf iso-dm:AbstractObject . | ||
798 | + | ||
799 | +iso-dm:MultidimensionalProperty | ||
800 | + rdf:type owl:Class ; | ||
801 | + rdfs:comment "A [multidimensional_property] is a [property] that is also a [multidimensional_object]."^^xsd:string ; | ||
802 | + rdfs:subClassOf iso-dm:Property , iso-dm:MultidimensionalObject ; | ||
803 | + owl:disjointWith iso-dm:MultidimensionalPropertySpace . | ||
804 | + | ||
805 | +iso-dm:MultidimensionalPropertySpace | ||
806 | + rdf:type owl:Class ; | ||
807 | + rdfs:comment "A [multidimensional_property_space] is a [property_space] and a [multidimensional_object] whose members are properties each of which maps to more than one number. Each property will consist of elements of the same property dimensions."^^xsd:string ; | ||
808 | + rdfs:subClassOf iso-dm:PropertySpace , iso-dm:MultidimensionalObject . | ||
809 | + | ||
810 | +iso-dm:MultidimensionalScale | ||
811 | + rdf:type owl:Class ; | ||
812 | + rdfs:comment "A [multidimensional_scale] is a [scale] that is also a [multidimensional_object]."^^xsd:string ; | ||
813 | + rdfs:subClassOf iso-dm:Scale . | ||
814 | + | ||
815 | +iso-dm:Namespace | ||
816 | + rdf:type owl:Class ; | ||
817 | + rdfs:comment "DOMAIN: CLASS_OF_PART"^^xsd:string , "A [namespace] is a [class_of_arrangement_of_individual] where the class_of_whole and class_of_part are members of [class_of_information_representation] and the part is the most significant part of the whole that is the namespace."^^xsd:string ; | ||
818 | + rdfs:subClassOf iso-dm:ClassOfArrangementOfIndividual . | ||
819 | + | ||
820 | +iso-dm:NumberRange | ||
821 | + rdf:type owl:Class ; | ||
822 | + rdfs:comment "A [number_range] is a one dimensional [number_space]."^^xsd:string ; | ||
823 | + rdfs:subClassOf iso-dm:NumberSpace . | ||
824 | + | ||
825 | +iso-dm:NumberSpace | ||
826 | + rdf:type owl:Class ; | ||
827 | + rdfs:comment "A [number_space] is a [class_of_number] that is a continuum."^^xsd:string ; | ||
828 | + rdfs:subClassOf iso-dm:ClassOfNumber . | ||
829 | + | ||
830 | +iso-dm:OtherRelationship | ||
831 | + rdf:type owl:Class ; | ||
832 | + rdfs:comment "RANGE: END_2"^^xsd:string , "DOMAIN: END_1"^^xsd:string , "An [other_relationship] is a [relationship] that is not a member of any of the other explicit subtypes of [relationship]. The meaning of an [other_relationship] is specified by a [classification] by an instance of [class_of_relationship_with_signature]."^^xsd:string ; | ||
833 | + rdfs:subClassOf iso-dm:Relationship . | ||
834 | + | ||
835 | +iso-dm:ParticipatingRoleAndDomain | ||
836 | + rdf:type owl:Class ; | ||
837 | + rdfs:comment "A [participating_role_and_domain] is a [role_and_domain] that is also a [class_of_individual] that indicates a participating role in an [activity]."^^xsd:string ; | ||
838 | + rdfs:subClassOf iso-dm:RoleAndDomain , iso-dm:ClassOfIndividual . | ||
839 | + | ||
840 | +iso-dm:Participation | ||
841 | + rdf:type owl:Class ; | ||
842 | + rdfs:comment "RANGE: WHOLE"^^xsd:string , "A [participation] is a [composition_of_individual] that indicates that a [possible_individual] is a participant in an [activity]."^^xsd:string ; | ||
843 | + rdfs:subClassOf iso-dm:CompositionOfIndividual . | ||
844 | + | ||
845 | +iso-dm:PeriodInTime | ||
846 | + rdf:type owl:Class ; | ||
847 | + rdfs:comment "A [period_in_time] is a [possible_individual] that is all space for part of time - a temporal part of the universe."^^xsd:string ; | ||
848 | + rdfs:subClassOf iso-dm:PossibleIndividual . | ||
849 | + | ||
850 | +iso-dm:Phase | ||
851 | + rdf:type owl:Class ; | ||
852 | + rdfs:comment "A [phase] is a [class_of_arranged_individual] based on the nature of the boundary behaviour of material resulting from its atomic and molecular bonding."^^xsd:string ; | ||
853 | + rdfs:subClassOf iso-dm:ClassOfArrangedIndividual . | ||
854 | + | ||
855 | +iso-dm:PhysicalObject | ||
856 | + rdf:type owl:Class ; | ||
857 | + rdfs:comment """A [physical_object] is a [possible_individual] that is a distribution of | ||
858 | +matter, energy, or both."""^^xsd:string ; | ||
859 | + rdfs:subClassOf iso-dm:PossibleIndividual . | ||
860 | + | ||
861 | +iso-dm:PointInTime | ||
862 | + rdf:type owl:Class ; | ||
863 | + rdfs:comment "An [event] that is the whole space extension with zero extent in time."^^xsd:string ; | ||
864 | + rdfs:subClassOf iso-dm:Event . | ||
865 | + | ||
866 | +iso-dm:PossibleIndividual | ||
867 | + rdf:type owl:Class ; | ||
868 | + rdfs:comment """A [possible_individual] is a [thing] that exists in space and time. This includes: | ||
869 | +- things where any of the space time dimensions are vanishingly small, | ||
870 | +- those that are either all space for any time, or all time and any space, | ||
871 | +- the entirety of all space time | ||
872 | +- things that actually exist, or have existed, | ||
873 | +- things that are fictional or conjectured and possibly exist in the past, present or future, | ||
874 | +- temporal parts (states) of other individuals, | ||
875 | +- things that have a specific position, but zero extent in one or more dimensions, such as points, lines, and surfaces. In this context existence is based upon being imaginable within some consistent logic, including actual, hypothetical, planned, expected, or required individuals."""^^xsd:string ; | ||
876 | + rdfs:subClassOf iso-dm:Thing . | ||
877 | + | ||
878 | +iso-dm:PossibleRoleAndDomain | ||
879 | + rdf:type owl:Class ; | ||
880 | + rdfs:comment "RANGE: PLAYER"^^xsd:string , "DOMAIN: PLAYED"^^xsd:string , "A [possible_role_and_domain] is a [relationship] that indicates that a player [possible_individual] can possibly play the played [role_and_domain]."^^xsd:string ; | ||
881 | + rdfs:subClassOf iso-dm:Relationship . | ||
882 | + | ||
883 | +iso-dm:Property | ||
884 | + rdf:type owl:Class ; | ||
885 | + rdfs:comment "A [property] is a [class_of_individual] that is a member of a continuum of a [class_of_property]. The [property] may be quantified by mapping to a number on a scale."^^xsd:string ; | ||
886 | + rdfs:subClassOf iso-dm:ClassOfIndividual ; | ||
887 | + owl:disjointWith iso-dm:Status . | ||
888 | + | ||
889 | +iso-dm:PropertyForShapeDimension | ||
890 | + rdf:type owl:Class ; | ||
891 | + rdfs:comment "RANGE: SHAPE_DIMENSION"^^xsd:string , "DOMAIN: PROPERTY"^^xsd:string , "A [property_for_shape_dimension] is a [class_of_relationship] that indicates that the members of the [shape_dimension] are of the [property]."^^xsd:string ; | ||
892 | + rdfs:subClassOf iso-dm:ClassOfRelationship . | ||
893 | + | ||
894 | +iso-dm:PropertyQuantification | ||
895 | + rdf:type owl:Class ; | ||
896 | + rdfs:comment "RANGE: RESULT"^^xsd:string , "DOMAIN: INPUT"^^xsd:string , "A [property_quantification] is a [functional_mapping] whose members map a [property] to an [arithmetic_number]."^^xsd:string ; | ||
897 | + rdfs:subClassOf iso-dm:FunctionalMapping . | ||
898 | + | ||
899 | +iso-dm:PropertyRange | ||
900 | + rdf:type owl:Class ; | ||
901 | + rdfs:comment "A [property_range] is a [property_space] that is a continuous subset of a [single_property_dimension]."^^xsd:string ; | ||
902 | + rdfs:subClassOf iso-dm:PropertySpace . | ||
903 | + | ||
904 | +iso-dm:PropertySpace | ||
905 | + rdf:type owl:Class ; | ||
906 | + rdfs:comment "A [property_space] is a [class_of_property] whose members are a coherent continuum of [property]."^^xsd:string ; | ||
907 | + rdfs:subClassOf iso-dm:ClassOfProperty . | ||
908 | + | ||
909 | +iso-dm:PropertySpaceForClassOfShapeDimension | ||
910 | + rdf:type owl:Class ; | ||
911 | + rdfs:comment "RANGE: PROPERTY_SPACE"^^xsd:string , "DOMAIN: CLASS_OF_SHAPE_DIMENSION"^^xsd:string , "A [property_space_for_class_of_shape_dimension] is a [class_of_class_of_relationship] that indicates the [property_space] that a [class_of_shape_dimension] is from."^^xsd:string ; | ||
912 | + rdfs:subClassOf iso-dm:ClassOfClassOfRelationship . | ||
913 | + | ||
914 | +iso-dm:RealNumber | ||
915 | + rdf:type owl:Class ; | ||
916 | + rdfs:comment "A [real_number] is an [arithmetic_number] that is a real number."^^xsd:string ; | ||
917 | + rdfs:subClassOf iso-dm:ArithmeticNumber . | ||
918 | + | ||
919 | +iso-dm:Recognition | ||
920 | + rdf:type owl:Class ; | ||
921 | + rdfs:comment "RANGE: RECOGNIZING"^^xsd:string , "DOMAIN: RECOGNIZED"^^xsd:string , "A [recognition] is a [relationship] that indicates that a [thing] is recognized through an [activity]."^^xsd:string ; | ||
922 | + rdfs:subClassOf iso-dm:Relationship . | ||
923 | + | ||
924 | +iso-dm:Relationship | ||
925 | + rdf:type owl:Class ; | ||
926 | + rdfs:comment "A [relationship] is an [abstract_object] that indicates something that one thing has to do with another."^^xsd:string ; | ||
927 | + rdfs:subClassOf iso-dm:AbstractObject . | ||
928 | + | ||
929 | +iso-dm:RelativeLocation | ||
930 | + rdf:type owl:Class ; | ||
931 | + rdfs:comment "RANGE: LOCATOR"^^xsd:string , "DOMAIN: LOCATED"^^xsd:string , "A [relative_location] is a [relationship] that indicates that the position of one [possible_individual] is relative to another."^^xsd:string ; | ||
932 | + rdfs:subClassOf iso-dm:Relationship . | ||
933 | + | ||
934 | +iso-dm:RepresentationForm | ||
935 | + rdf:type owl:Class ; | ||
936 | + rdfs:comment "A [representation_form] is a [class_of_class_of_information_representation] that distinguishes the form of representation."^^xsd:string ; | ||
937 | + rdfs:subClassOf iso-dm:ClassOfClassOfInformationRepresentation . | ||
938 | + | ||
939 | +iso-dm:RepresentationOfGregorianDateAndUtcTime | ||
940 | + rdf:type owl:Class ; | ||
941 | + rdfs:comment "A [representation_of_Gregorian_date_and_UTC_time] is a [class_of_information_representation] whose members are representations of time using the UTC system of time identification as specified in ISO 8601:2000 together with the Gregorian system for representing dates. All times shall be represented using UTC representation of time. Dates shall follow the Gregorian calendar."^^xsd:string ; | ||
942 | + rdfs:subClassOf iso-dm:ClassOfInformationRepresentation . | ||
943 | + | ||
944 | +iso-dm:RepresentationOfThing | ||
945 | + rdf:type owl:Class ; | ||
946 | + rdfs:comment "RANGE: SIGN"^^xsd:string , "DOMAIN: REPRESENTED"^^xsd:string , "A [representation_of_thing] is a [relationship] that indicates that a [possible_individual] is a sign for a [thing]."^^xsd:string ; | ||
947 | + rdfs:subClassOf iso-dm:Relationship . | ||
948 | + | ||
949 | +iso-dm:ResponsibilityForRepresentation | ||
950 | + rdf:type owl:Class ; | ||
951 | + rdfs:comment "A [responsibility_for_representation] is a [relationship] that indicates that the controller [possible_individual] administers the controlled [representation_of_thing]."^^xsd:string ; | ||
952 | + rdfs:subClassOf iso-dm:Relationship . | ||
953 | + | ||
954 | +iso-dm:RightNamespace | ||
955 | + rdf:type owl:Class ; | ||
956 | + rdfs:comment "A [right_namespace] is a [namespace] that indicates that the [class_of_part] is the right most part of the [class_of_whole]."^^xsd:string ; | ||
957 | + rdfs:subClassOf iso-dm:Namespace . | ||
958 | + | ||
959 | +iso-dm:Role | ||
960 | + rdf:type owl:Class ; | ||
961 | + rdfs:comment "A [role] is a [role_and_domain] that indicates what some thing has to do with an [activity], [relationship], or [multidimensional_object]."^^xsd:string ; | ||
962 | + rdfs:subClassOf iso-dm:RoleAndDomain . | ||
963 | + | ||
964 | +iso-dm:RoleAndDomain | ||
965 | + rdf:type owl:Class ; | ||
966 | + rdfs:comment "A [role_and_domain] is a [class] that specifies the domain and role for an end of a [class_of_relationship] or [class_of_multidimensional_object]."^^xsd:string ; | ||
967 | + rdfs:subClassOf iso-dm:Class . | ||
968 | + | ||
969 | +iso-dm:Scale | ||
970 | + rdf:type owl:Class ; | ||
971 | + rdfs:comment "RANGE: DOMAIN"^^xsd:string , "DOMAIN: CODOMAIN"^^xsd:string , "A [scale] is a [class_of_isomorphic_functional_mapping] whose members are members of [property_quantification]. It indicates the [number_space] a [property_space] maps to for the [scale] in question."^^xsd:string ; | ||
972 | + rdfs:subClassOf iso-dm:ClassOfIsomorphicFunctionalMapping . | ||
973 | + | ||
974 | +iso-dm:Shape | ||
975 | + rdf:type owl:Class ; | ||
976 | + rdfs:comment "A [shape] is a [property] that depends on constant relations of position and proportionate distance among all the points composing its outline or its external surface."^^xsd:string ; | ||
977 | + rdfs:subClassOf iso-dm:Property . | ||
978 | + | ||
979 | +iso-dm:ShapeDimension | ||
980 | + rdf:type owl:Class ; | ||
981 | + rdfs:comment "A [shape_dimension] is a [class_of_class_of_individual] that is a set of [individual_dimension] that define an aspect of a shape."^^xsd:string ; | ||
982 | + rdfs:subClassOf iso-dm:ClassOfClassOfIndividual . | ||
983 | + | ||
984 | +iso-dm:SinglePropertyDimension | ||
985 | + rdf:type owl:Class ; | ||
986 | + rdfs:comment "A [single_property_dimension] is a [property_space] that is a single and complete continuum of properties each of which maps to a single number."^^xsd:string ; | ||
987 | + rdfs:subClassOf iso-dm:PropertySpace . | ||
988 | + | ||
989 | +iso-dm:SpatialLocation | ||
990 | + rdf:type owl:Class ; | ||
991 | + rdfs:comment "A [spatial_location] is a [physical_object] that has continuity of relative position."^^xsd:string ; | ||
992 | + rdfs:subClassOf iso-dm:PhysicalObject . | ||
993 | + | ||
994 | +iso-dm:Specialization | ||
995 | + rdf:type owl:Class ; | ||
996 | + rdfs:comment "RANGE: SUPERCLASS"^^xsd:string , "DOMAIN: SUBCLASS"^^xsd:string , "A [specialization] is a [relationship] that indicates that all members of the subclass are members of the superclass. [specialization] is transitive."^^xsd:string ; | ||
997 | + rdfs:subClassOf iso-dm:Relationship . | ||
998 | + | ||
999 | +iso-dm:SpecializationByDomain | ||
1000 | + rdf:type owl:Class ; | ||
1001 | + rdfs:comment "DOMAIN: SUBCLASS"^^xsd:string , "A [specialization_by_domain] is a [specialization] that indicates that the member of the [role_and_domain] is a [specialization] of the domain [class]."^^xsd:string ; | ||
1002 | + rdfs:subClassOf iso-dm:Specialization . | ||
1003 | + | ||
1004 | +iso-dm:SpecializationByRole | ||
1005 | + rdf:type owl:Class ; | ||
1006 | + rdfs:comment "RANGE: SUPERCLASS"^^xsd:string , "DOMAIN: SUBCLASS"^^xsd:string , "A [specialization_by_role] is a [specialization] that indicates that the [role_and_domain] is of the [role] indicated by the superclass."^^xsd:string ; | ||
1007 | + rdfs:subClassOf iso-dm:Specialization . | ||
1008 | + | ||
1009 | +iso-dm:SpecializationOfIndividualDimensionFromProperty | ||
1010 | + rdf:type owl:Class ; | ||
1011 | + rdfs:comment "RANGE: SUPERCLASS"^^xsd:string , "DOMAIN: SUBCLASS"^^xsd:string , "A [specialization_of_individual_dimension_from_property] is a [specialization] that indicates the members of the dimension are members of the property."^^xsd:string ; | ||
1012 | + rdfs:subClassOf iso-dm:Specialization . | ||
1013 | + | ||
1014 | +iso-dm:Status | ||
1015 | + rdf:type owl:Class ; | ||
1016 | + rdfs:comment "A [status] is a [class_of_individual] that is a characteristic or quality that is described by discrete, unordered values."^^xsd:string ; | ||
1017 | + rdfs:subClassOf iso-dm:ClassOfIndividual . | ||
1018 | + | ||
1019 | +iso-dm:Stream | ||
1020 | + rdf:type owl:Class ; | ||
1021 | + rdfs:comment "A [stream] is a [physical_object] that is material or energy moving along a path, where the path is the basis of identity and may be constrained. The stream consists of the temporal parts of those things that are in the stream whilst they are in it."^^xsd:string ; | ||
1022 | + rdfs:subClassOf iso-dm:PhysicalObject . | ||
1023 | + | ||
1024 | +iso-dm:TemporalBounding | ||
1025 | + rdf:type owl:Class ; | ||
1026 | + rdfs:comment "DOMAIN: PART"^^xsd:string , "A [temporal_bounding] is a [composition_of_individual] that indicates that the part [event] is a temporal boundary of the whole [possible_individual]."^^xsd:string ; | ||
1027 | + rdfs:subClassOf iso-dm:CompositionOfIndividual . | ||
1028 | + | ||
1029 | +iso-dm:TemporalSequence | ||
1030 | + rdf:type owl:Class ; | ||
1031 | + rdfs:comment "RANGE: SUCCESSOR"^^xsd:string , "DOMAIN: PREDECESSOR"^^xsd:string , "A [temporal_sequence] is a [relationship] that indicates that one [possible_individual] precedes another in a temporal sense."^^xsd:string ; | ||
1032 | + rdfs:subClassOf iso-dm:Relationship . | ||
1033 | + | ||
1034 | +iso-dm:TemporalWholePart | ||
1035 | + rdf:type owl:Class ; | ||
1036 | + rdfs:comment "A [temporal_whole_part] is a [composition_of_individual] that indicates that one [possible_individual] is a temporal part of another [possible_individual]. The spatial extent of the temporal part is that of the temporal whole for the period of the existence of the temporal part. Relationships that apply to the whole [possible_individual] also apply to the temporal parts of the [possible_individual], except when the relationships relate to the temporal nature of the whole. So if a [possible_individual] is connected so are all its temporal parts, but being a [whole_life_individual] is not inherited by its temporal parts."^^xsd:string ; | ||
1037 | + rdfs:subClassOf iso-dm:CompositionOfIndividual . | ||
1038 | + | ||
1039 | +iso-dm:Thing | ||
1040 | + rdf:type owl:Class ; | ||
1041 | + rdfs:comment "A [thing] is anything that is or may be thought about or perceived, including material and non-material objects, ideas, and actions. Every [thing] is either a [possible_individual], or an [abstract_object]."^^xsd:string . | ||
1042 | + | ||
1043 | +iso-dm:UnionOfSetOfClass | ||
1044 | + rdf:type owl:Class ; | ||
1045 | + rdfs:comment "RANGE: RESULT"^^xsd:string , "DOMAIN: INPUT"^^xsd:string , "A [union_of_set_of_class] is a [functional_mapping] that indicates that the membership of the result [class] is the union of the members of the [enumerated_set_of_class] classes."^^xsd:string ; | ||
1046 | + rdfs:subClassOf iso-dm:FunctionalMapping . | ||
1047 | + | ||
1048 | +iso-dm:UpperBoundOfNumberRange | ||
1049 | + rdf:type owl:Class ; | ||
1050 | + rdfs:comment "RANGE: CLASSIFIER"^^xsd:string , "DOMAIN: CLASSIFIED"^^xsd:string , "An [upper_bound_of_number_range] is a [relationship] that indicates an [arithmetic_number] is the largest value in a [number_range]."^^xsd:string ; | ||
1051 | + rdfs:subClassOf iso-dm:Classification . | ||
1052 | + | ||
1053 | +iso-dm:UpperBoundOfPropertyRange | ||
1054 | + rdf:type owl:Class ; | ||
1055 | + rdfs:comment "RANGE: CLASSIFIER"^^xsd:string , "DOMAIN: CLASSIFIED"^^xsd:string , "An [upper_bound_of_property_range] is a [classification] that indicates that the [property] is the upper bound of the [property_range]."^^xsd:string ; | ||
1056 | + rdfs:subClassOf iso-dm:Classification . | ||
1057 | + | ||
1058 | +iso-dm:UsageOfRepresentation | ||
1059 | + rdf:type owl:Class ; | ||
1060 | + rdfs:comment "A [usage_of_representation] is a [relationship] that indicates that the [representation_of_thing] is used by the [possible_individual]. Usage does not imply responsibility."^^xsd:string ; | ||
1061 | + rdfs:subClassOf iso-dm:Relationship . | ||
1062 | + | ||
1063 | +iso-dm:WholeLifeIndividual | ||
1064 | + rdf:type owl:Class ; | ||
1065 | + rdfs:comment "A [whole_life_individual] is a [possible_individual] that is a member of a [class_of_individual], and is not a temporal part of any other [possible_individual] that is also a member of the same [class_of_individual]. A [whole_life_individual] includes its past and future."^^xsd:string ; | ||
1066 | + rdfs:subClassOf iso-dm:PossibleIndividual . |
1 | +# Saved by TopBraid on Wed Aug 17 18:10:51 BST 2011 | ||
2 | +# baseURI: http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/metadata | ||
3 | + | ||
4 | +@prefix iso-meta: <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/metadata#> . | ||
5 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
6 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
7 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
8 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
9 | + | ||
10 | +<http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/metadata> | ||
11 | + rdf:type owl:Ontology ; | ||
12 | + rdfs:comment "This ontology provides metadata properties for classes, templates and individuals." ; | ||
13 | + owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | ||
14 | + | ||
15 | +iso-meta:annAccessCode | ||
16 | + rdf:type owl:AnnotationProperty ; | ||
17 | + rdfs:comment "A security code (resource group) of the information represented by a template instance. It is used as a parameter in an ACL (Access Control List)." ; | ||
18 | + rdfs:label "Access Code" . | ||
19 | + | ||
20 | +iso-meta:annAdministrativeNote | ||
21 | + rdf:type owl:AnnotationProperty ; | ||
22 | + rdfs:comment "An administrative note about a reference data item" ; | ||
23 | + rdfs:label "administrative note" ; | ||
24 | + rdfs:subPropertyOf rdfs:comment . | ||
25 | + | ||
26 | +iso-meta:annChangeDescription | ||
27 | + rdf:type owl:AnnotationProperty ; | ||
28 | + rdfs:comment "A description of the most recent change." ; | ||
29 | + rdfs:label "change description" ; | ||
30 | + rdfs:subPropertyOf rdfs:comment . | ||
31 | + | ||
32 | +iso-meta:annCreationDate | ||
33 | + rdf:type owl:AnnotationProperty ; | ||
34 | + rdfs:comment "The date of creation of a reference data item within the reference data library." ; | ||
35 | + rdfs:label "creation date" . | ||
36 | + | ||
37 | +iso-meta:annEffectiveDate | ||
38 | + rdf:type owl:AnnotationProperty ; | ||
39 | + rdfs:comment "The date of the status of the release of the reference data item (if released)." ; | ||
40 | + rdfs:label "effective date" . | ||
41 | + | ||
42 | +iso-meta:annExplanatoryComment | ||
43 | + rdf:type owl:AnnotationProperty ; | ||
44 | + rdfs:comment "A description of the reason for the creation of the refer-ence data item ." ; | ||
45 | + rdfs:label "explanatory comment" ; | ||
46 | + rdfs:subPropertyOf rdfs:comment . | ||
47 | + | ||
48 | +iso-meta:annExponent | ||
49 | + rdf:type owl:AnnotationProperty ; | ||
50 | + rdfs:comment "The integer number which is used to derive one unit of measure from another in an 'exponentiate' operation." ; | ||
51 | + rdfs:label "exponent" . | ||
52 | + | ||
53 | +iso-meta:annFactor_Prefix | ||
54 | + rdf:type owl:AnnotationProperty ; | ||
55 | + rdfs:comment "The real number which is used to derive one unit of measure from another in a 'factor' operation. Either a number or an ISO prefix, such as 'milli' or 'kilo' can be specified." ; | ||
56 | + rdfs:label "factor/prefix" . | ||
57 | + | ||
58 | +iso-meta:annFirstOperand | ||
59 | + rdf:type owl:AnnotationProperty ; | ||
60 | + rdfs:comment "The name identifier of the first unit of measure in a 'multiply', 'divide', 'factor' or 'exponentiate' operation." ; | ||
61 | + rdfs:label "first operand" . | ||
62 | + | ||
63 | +iso-meta:annLastChangeDate | ||
64 | + rdf:type owl:AnnotationProperty ; | ||
65 | + rdfs:comment "The data of the last change to the reference data item." ; | ||
66 | + rdfs:label "last change date" . | ||
67 | + | ||
68 | +iso-meta:annNotes | ||
69 | + rdf:type owl:AnnotationProperty ; | ||
70 | + rdfs:comment "Notes and other informative text about the reference data item." ; | ||
71 | + rdfs:label "notes" ; | ||
72 | + rdfs:subPropertyOf rdfs:comment . | ||
73 | + | ||
74 | +iso-meta:annOperator | ||
75 | + rdf:type owl:AnnotationProperty ; | ||
76 | + rdfs:comment "The operator which defined a unit of measure by an expression. The allowed values are 'multiply', 'divide', 'factor', and 'exponentiate'." ; | ||
77 | + rdfs:label "operator" . | ||
78 | + | ||
79 | +iso-meta:annRegistrationStatus | ||
80 | + rdf:type owl:AnnotationProperty ; | ||
81 | + rdfs:comment "The status of the reference data item." ; | ||
82 | + rdfs:label "registration status" . | ||
83 | + | ||
84 | +iso-meta:annRule | ||
85 | + rdf:type owl:AnnotationProperty ; | ||
86 | + rdfs:comment "A rule, method, or script applicable in application software." ; | ||
87 | + rdfs:label "Rule" . | ||
88 | + | ||
89 | +iso-meta:annSecondOperand | ||
90 | + rdf:type owl:AnnotationProperty ; | ||
91 | + rdfs:comment "The name identifier of the second unit of measure in a 'multiply' or 'divide' operation." ; | ||
92 | + rdfs:label "second operand" . | ||
93 | + | ||
94 | +iso-meta:annSource | ||
95 | + rdf:type owl:AnnotationProperty ; | ||
96 | + rdfs:comment "The source of the text definition for the reference data item." ; | ||
97 | + rdfs:label "source" ; | ||
98 | + rdfs:subPropertyOf rdfs:seeAlso . | ||
99 | + | ||
100 | +iso-meta:annStewardshipContact | ||
101 | + rdf:type owl:AnnotationProperty ; | ||
102 | + rdfs:comment "The name of the person who is the contact for the stewardship of a reference data item." ; | ||
103 | + rdfs:label "stewardship contact" . | ||
104 | + | ||
105 | +iso-meta:annStewardshipOrganization | ||
106 | + rdf:type owl:AnnotationProperty ; | ||
107 | + rdfs:comment "The name of the organization that performs the steward-ship of a reference data item." ; | ||
108 | + rdfs:label "stewardship organization" . | ||
109 | + | ||
110 | +iso-meta:annSubmissionContact | ||
111 | + rdf:type owl:AnnotationProperty ; | ||
112 | + rdfs:comment "The name of the person who is the contact for the submission of a reference data item." ; | ||
113 | + rdfs:label "submission contact" . | ||
114 | + | ||
115 | +iso-meta:annSubmittingOrganization | ||
116 | + rdf:type owl:AnnotationProperty ; | ||
117 | + rdfs:comment "The name of the organization that performs the \"submission of a reference data item." ; | ||
118 | + rdfs:label "submitting organization" . | ||
119 | + | ||
120 | +iso-meta:annSymbol | ||
121 | + rdf:type owl:AnnotationProperty ; | ||
122 | + rdfs:comment "The symbol used to represent a unit of measure." ; | ||
123 | + rdfs:label "symbol" . | ||
124 | + | ||
125 | +iso-meta:annSynonym | ||
126 | + rdf:type owl:AnnotationProperty ; | ||
127 | + rdfs:comment "A synonym for the unique name of the reference data item" ; | ||
128 | + rdfs:label "synonym" . | ||
129 | + | ||
130 | +iso-meta:annTextDefinition | ||
131 | + rdf:type owl:AnnotationProperty ; | ||
132 | + rdfs:comment "The text definition for the reference data item." ; | ||
133 | + rdfs:label "text definition" ; | ||
134 | + rdfs:subPropertyOf rdfs:comment . | ||
135 | + | ||
136 | +iso-meta:annURI | ||
137 | + rdf:type owl:AnnotationProperty ; | ||
138 | + rdfs:comment "A URI of the reference data item" ; | ||
139 | + rdfs:label "URI" . | ||
140 | + | ||
141 | +iso-meta:annUniqueName | ||
142 | + rdf:type owl:AnnotationProperty ; | ||
143 | + rdfs:comment "The name identifier of the reference data item" ; | ||
144 | + rdfs:label "unique name" ; | ||
145 | + rdfs:subPropertyOf rdfs:label . | ||
146 | + | ||
147 | +iso-meta:annUnresolvedIssues | ||
148 | + rdf:type owl:AnnotationProperty ; | ||
149 | + rdfs:comment "A description of any unresolved issues for a reference data item." ; | ||
150 | + rdfs:label "unresolved issues" . |
1 | +# Saved by TopBraid on Wed Aug 17 18:11:08 BST 2011 | ||
2 | +# baseURI: http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm | ||
3 | +# imports: http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model | ||
4 | + | ||
5 | +@prefix : <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#> . | ||
6 | +@prefix iso-tm: <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm#> . | ||
7 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
8 | +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
9 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
10 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
11 | + | ||
12 | +<http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Class> | ||
13 | + rdf:type owl:Class . | ||
14 | + | ||
15 | +<http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Thing> | ||
16 | + rdf:type owl:Class ; | ||
17 | + owl:disjointWith iso-tm:TemplateStatement , iso-tm:TemplateRole , iso-tm:Template . | ||
18 | + | ||
19 | +<http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/p7tm> | ||
20 | + rdf:type owl:Ontology ; | ||
21 | + rdfs:comment "This ontology provides basic classes for representing ISO 15926-8 template signatures. It depends on an OWL taxonomy representation of ISO 15926-2 entity types." ; | ||
22 | + owl:imports <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model> ; | ||
23 | + owl:versionInfo "Created with TopBraid Composer"^^xsd:string . | ||
24 | + | ||
25 | +iso-tm:BaseTemplate | ||
26 | + rdf:type owl:Class ; | ||
27 | + rdfs:comment "A base template makes no reference to entities beyond the generic types defined in ISO 15926-2." ; | ||
28 | + rdfs:label "BaseTemplate" ; | ||
29 | + rdfs:subClassOf iso-tm:Template ; | ||
30 | + owl:disjointWith iso-tm:RDLTemplate . | ||
31 | + | ||
32 | +iso-tm:BaseTemplateStatement | ||
33 | + rdf:type owl:Class ; | ||
34 | + rdfs:comment "The class of \"base\" template statements covers all the typical cases of statements used to carry data. It is distinguished from template meta-statements, which are used to characterize templates themselves." ; | ||
35 | + rdfs:label "BaseTemplateStatement" ; | ||
36 | + rdfs:subClassOf iso-tm:TemplateStatement ; | ||
37 | + owl:disjointWith iso-tm:MetaTemplateStatement . | ||
38 | + | ||
39 | +iso-tm:MetaTemplateStatement | ||
40 | + rdf:type owl:Class ; | ||
41 | + rdfs:comment """A template statement (template instance) that characterizes a template. For templates themselves, we record the number of roles. For roles, we record for each template their type constraints and positions. | ||
42 | +Various provenance information about templates would also belong here.""" ; | ||
43 | + rdfs:label "MetaTemplateStatement" ; | ||
44 | + rdfs:subClassOf iso-tm:TemplateStatement . | ||
45 | + | ||
46 | +iso-tm:RDLTemplate | ||
47 | + rdf:type owl:Class ; | ||
48 | + rdfs:comment """An RDL template makes reference to entities defined in at least one Reference Data Library. | ||
49 | +Note. This does not in itself mean that the template has roles constrained to RDL classes. The reference to RDL content may be embedded in the intended use of the template; or in the expansion rule of the template, as given according to ISO 15926-7. | ||
50 | +Note. Any RDL template should be defined as a template specialization of a base template.""" ; | ||
51 | + rdfs:label "CoreTemplate" ; | ||
52 | + rdfs:subClassOf iso-tm:Template . | ||
53 | + | ||
54 | +iso-tm:RDLTemplateStatement | ||
55 | + rdf:type owl:Class ; | ||
56 | + rdfs:comment "An RDLtemplateStatement is an instance of an RDL template. See the definition of RDLTemplate." ; | ||
57 | + rdfs:label "RDLTemplateStatement" ; | ||
58 | + rdfs:subClassOf iso-tm:BaseTemplateStatement . | ||
59 | + | ||
60 | +iso-tm:RDLcoreTemplate | ||
61 | + rdf:type owl:Class ; | ||
62 | + rdfs:comment "An RDLcoreTemplate is an RDL template for references to RDL content are restricted to core (highly generic, not industry specific) RDL entities." ; | ||
63 | + rdfs:label "RDLcoreTemplate" ; | ||
64 | + rdfs:subClassOf iso-tm:RDLTemplate ; | ||
65 | + owl:disjointWith iso-tm:RDLindustryTemplate . | ||
66 | + | ||
67 | +iso-tm:RDLcoreTemplateStatement | ||
68 | + rdf:type owl:Class ; | ||
69 | + rdfs:label "RDLcoreTemplateStatement" ; | ||
70 | + rdfs:subClassOf iso-tm:RDLTemplateStatement . | ||
71 | + | ||
72 | +iso-tm:RDLindustryTemplate | ||
73 | + rdf:type owl:Class ; | ||
74 | + rdfs:comment "An RDL industry template is an RDL template which makes some reference to industry-specific RDL entities." ; | ||
75 | + rdfs:label "RDLindustryTemplate" ; | ||
76 | + rdfs:subClassOf iso-tm:RDLTemplate . | ||
77 | + | ||
78 | +iso-tm:RDLindustryTemplateStatement | ||
79 | + rdf:type owl:Class ; | ||
80 | + rdfs:label "RDLindustryTemplateStatement" ; | ||
81 | + rdfs:subClassOf iso-tm:RDLTemplateStatement . | ||
82 | + | ||
83 | +iso-tm:Template | ||
84 | + rdf:type owl:Class ; | ||
85 | + rdfs:comment "A Template is a predicate defined according to ISO 15926-7 template signature specification requirements. For this OWL representation, the transparent OWL 2 punning mechanism is relied upon for treating templates, which are really classes, as individuals. The individuals in this class are punned templates." ; | ||
86 | + rdfs:label "Template" . | ||
87 | + | ||
88 | +iso-tm:TemplateDescription | ||
89 | + rdf:type owl:Class ; | ||
90 | + rdfs:label "TemplateDescription" ; | ||
91 | + rdfs:subClassOf iso-tm:MetaTemplateStatement ; | ||
92 | + rdfs:subClassOf | ||
93 | + [ rdf:type owl:Class ; | ||
94 | + owl:intersectionOf ([ rdf:type owl:Restriction ; | ||
95 | + owl:allValuesFrom iso-tm:Template ; | ||
96 | + owl:onProperty iso-tm:hasTemplate | ||
97 | + ] [ rdf:type owl:Restriction ; | ||
98 | + owl:onClass iso-tm:Template ; | ||
99 | + owl:onProperty iso-tm:hasTemplate ; | ||
100 | + owl:qualifiedCardinality | ||
101 | + "1"^^xsd:nonNegativeInteger | ||
102 | + ]) | ||
103 | + ] ; | ||
104 | + rdfs:subClassOf | ||
105 | + [ rdf:type owl:Class ; | ||
106 | + owl:intersectionOf ([ rdf:type owl:Restriction ; | ||
107 | + owl:allValuesFrom xsd:positiveInteger ; | ||
108 | + owl:onProperty iso-tm:valNumberOfRoles | ||
109 | + ] [ rdf:type owl:Restriction ; | ||
110 | + owl:onDataRange xsd:positiveInteger ; | ||
111 | + owl:onProperty iso-tm:valNumberOfRoles ; | ||
112 | + owl:qualifiedCardinality | ||
113 | + "1"^^xsd:nonNegativeInteger | ||
114 | + ]) | ||
115 | + ] . | ||
116 | + | ||
117 | +iso-tm:TemplateRole | ||
118 | + rdf:type owl:Class ; | ||
119 | + rdfs:comment "A TemplateRole is a role defined according to ISO 15926-7 template signature specification requirements. For this OWL representation, the transparent OWL 2 punning mechanism is relied upon for treating template roles, which are really relations, as individuals. The individuals in this class are punned template roles." ; | ||
120 | + rdfs:label "TemplateRole" . | ||
121 | + | ||
122 | +iso-tm:TemplateRoleDescription | ||
123 | + rdf:type owl:Class ; | ||
124 | + rdfs:label "TemplateRoleDescription" ; | ||
125 | + rdfs:subClassOf iso-tm:MetaTemplateStatement ; | ||
126 | + rdfs:subClassOf | ||
127 | + [ rdf:type owl:Class ; | ||
128 | + owl:intersectionOf ([ rdf:type owl:Restriction ; | ||
129 | + owl:allValuesFrom iso-tm:TemplateRole ; | ||
130 | + owl:onProperty iso-tm:hasRole | ||
131 | + ] [ rdf:type owl:Restriction ; | ||
132 | + owl:onClass iso-tm:TemplateRole ; | ||
133 | + owl:onProperty iso-tm:hasRole ; | ||
134 | + owl:qualifiedCardinality | ||
135 | + "1"^^xsd:nonNegativeInteger | ||
136 | + ]) | ||
137 | + ] ; | ||
138 | + rdfs:subClassOf | ||
139 | + [ rdf:type owl:Class ; | ||
140 | + owl:intersectionOf ([ rdf:type owl:Restriction ; | ||
141 | + owl:allValuesFrom <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Class> ; | ||
142 | + owl:onProperty iso-tm:hasRoleFillerType | ||
143 | + ] [ rdf:type owl:Restriction ; | ||
144 | + owl:onClass <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Class> ; | ||
145 | + owl:onProperty iso-tm:hasRoleFillerType ; | ||
146 | + owl:qualifiedCardinality | ||
147 | + "1"^^xsd:nonNegativeInteger | ||
148 | + ]) | ||
149 | + ] ; | ||
150 | + rdfs:subClassOf | ||
151 | + [ rdf:type owl:Class ; | ||
152 | + owl:intersectionOf ([ rdf:type owl:Restriction ; | ||
153 | + owl:allValuesFrom xsd:integer ; | ||
154 | + owl:onProperty iso-tm:valRoleIndex | ||
155 | + ] [ rdf:type owl:Restriction ; | ||
156 | + owl:onDataRange xsd:integer ; | ||
157 | + owl:onProperty iso-tm:valRoleIndex ; | ||
158 | + owl:qualifiedCardinality | ||
159 | + "1"^^xsd:nonNegativeInteger | ||
160 | + ]) | ||
161 | + ] ; | ||
162 | + rdfs:subClassOf | ||
163 | + [ rdf:type owl:Class ; | ||
164 | + owl:intersectionOf ([ rdf:type owl:Restriction ; | ||
165 | + owl:allValuesFrom iso-tm:Template ; | ||
166 | + owl:onProperty iso-tm:hasTemplate | ||
167 | + ] [ rdf:type owl:Restriction ; | ||
168 | + owl:onClass iso-tm:Template ; | ||
169 | + owl:onProperty iso-tm:hasTemplate ; | ||
170 | + owl:qualifiedCardinality | ||
171 | + "1"^^xsd:nonNegativeInteger | ||
172 | + ]) | ||
173 | + ] . | ||
174 | + | ||
175 | +iso-tm:TemplateSpecialization | ||
176 | + rdf:type owl:Class ; | ||
177 | + rdfs:label "TemplateSpecialization" ; | ||
178 | + rdfs:subClassOf iso-tm:MetaTemplateStatement ; | ||
179 | + rdfs:subClassOf | ||
180 | + [ rdf:type owl:Class ; | ||
181 | + owl:intersectionOf ([ rdf:type owl:Restriction ; | ||
182 | + owl:allValuesFrom iso-tm:Template ; | ||
183 | + owl:onProperty iso-tm:hasSubTemplate | ||
184 | + ] [ rdf:type owl:Restriction ; | ||
185 | + owl:onClass iso-tm:Template ; | ||
186 | + owl:onProperty iso-tm:hasSubTemplate ; | ||
187 | + owl:qualifiedCardinality | ||
188 | + "1"^^xsd:nonNegativeInteger | ||
189 | + ]) | ||
190 | + ] ; | ||
191 | + rdfs:subClassOf | ||
192 | + [ rdf:type owl:Class ; | ||
193 | + owl:intersectionOf ([ rdf:type owl:Restriction ; | ||
194 | + owl:allValuesFrom iso-tm:Template ; | ||
195 | + owl:onProperty iso-tm:hasSuperTemplate | ||
196 | + ] [ rdf:type owl:Restriction ; | ||
197 | + owl:onClass iso-tm:Template ; | ||
198 | + owl:onProperty iso-tm:hasSuperTemplate ; | ||
199 | + owl:qualifiedCardinality | ||
200 | + "1"^^xsd:nonNegativeInteger | ||
201 | + ]) | ||
202 | + ] . | ||
203 | + | ||
204 | +iso-tm:TemplateStatement | ||
205 | + rdf:type owl:Class ; | ||
206 | + rdfs:comment "A template statement is an instance of a template. Example: Given a template F with signature specifying the roles R1, R2 of types, resp., T1, T2. If a and b are individuals, then F(a,b) is a template statement." ; | ||
207 | + rdfs:label "TemplateStatement" ; | ||
208 | + owl:equivalentClass | ||
209 | + [ rdf:type owl:Class ; | ||
210 | + owl:unionOf (iso-tm:BaseTemplateStatement iso-tm:MetaTemplateStatement) | ||
211 | + ] . | ||
212 | + | ||
213 | +iso-tm:hasBaseTemplateObjectRoleFiller | ||
214 | + rdf:type owl:ObjectProperty ; | ||
215 | + rdfs:comment "This is a super-property for properties used in ordinary template statements, used to carry data (and not for characterizing templates themselves). A \"content\" template may not refer to templates or template roles themselves: Therefore the range of this property is dm:Thing." ; | ||
216 | + rdfs:domain iso-tm:BaseTemplateStatement ; | ||
217 | + rdfs:label "hasBaseTemplateObjectRoleFiller" ; | ||
218 | + rdfs:range <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Thing> ; | ||
219 | + rdfs:subPropertyOf iso-tm:hasObjectRoleFiller . | ||
220 | + | ||
221 | +iso-tm:hasMetaTemplateObjectRoleFiller | ||
222 | + rdf:type owl:ObjectProperty ; | ||
223 | + rdfs:comment "This property is a super-property for properties used in meta-template statements, i.e., properties used to characterize templates." ; | ||
224 | + rdfs:domain iso-tm:MetaTemplateStatement ; | ||
225 | + rdfs:label "hasMetaTemplateObjectRoleFiller" ; | ||
226 | + rdfs:subPropertyOf iso-tm:hasObjectRoleFiller . | ||
227 | + | ||
228 | +iso-tm:hasObjectRoleFiller | ||
229 | + rdf:type owl:ObjectProperty ; | ||
230 | + rdfs:label "hasObjectRoleFiller" . | ||
231 | + | ||
232 | +iso-tm:hasRole | ||
233 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; | ||
234 | + rdfs:comment "Used in meta-template TemplateRoleDescription to indicate which role is being described." ; | ||
235 | + rdfs:domain iso-tm:TemplateRoleDescription ; | ||
236 | + rdfs:label "role" ; | ||
237 | + rdfs:range iso-tm:TemplateRole ; | ||
238 | + rdfs:subPropertyOf iso-tm:hasMetaTemplateObjectRoleFiller . | ||
239 | + | ||
240 | +iso-tm:hasRoleFillerType | ||
241 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; | ||
242 | + rdfs:comment "Used in meta-template TemplateRoleDescription to indicate which class any role-filler needs to belong to. That is, this property records the type constraint on individuals filling this role." ; | ||
243 | + rdfs:domain iso-tm:TemplateRoleDescription ; | ||
244 | + rdfs:label "type" ; | ||
245 | + rdfs:range <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#Class> ; | ||
246 | + rdfs:subPropertyOf iso-tm:hasMetaTemplateObjectRoleFiller . | ||
247 | + | ||
248 | +iso-tm:hasSubTemplate | ||
249 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; | ||
250 | + rdfs:comment "Used in meta-template TemplateSpecialization to indicate which template is the sub-template in a specialization relationship. Use this property to indicate the template which is more constrained than its supertemplate." ; | ||
251 | + rdfs:domain iso-tm:TemplateSpecialization ; | ||
252 | + rdfs:label "hasSubTemplate" ; | ||
253 | + rdfs:range iso-tm:Template ; | ||
254 | + rdfs:subPropertyOf iso-tm:hasMetaTemplateObjectRoleFiller . | ||
255 | + | ||
256 | +iso-tm:hasSuperTemplate | ||
257 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; | ||
258 | + rdfs:comment "Used in meta-template TemplateSpecialization to indicate which template is the super-template in a specialization relationship. Use this property to indicate the template which is less constrained than its subtemplate." ; | ||
259 | + rdfs:domain iso-tm:TemplateSpecialization ; | ||
260 | + rdfs:label "hasSuperTemplate" ; | ||
261 | + rdfs:range iso-tm:Template ; | ||
262 | + rdfs:subPropertyOf iso-tm:hasMetaTemplateObjectRoleFiller . | ||
263 | + | ||
264 | +iso-tm:hasTemplate | ||
265 | + rdf:type owl:FunctionalProperty , owl:ObjectProperty ; | ||
266 | + rdfs:comment "Used in meta-templates TemplateDescription and TemplateRoleDescription to record which template a statement applies to: which template is being described." ; | ||
267 | + rdfs:domain | ||
268 | + [ rdf:type owl:Class ; | ||
269 | + owl:unionOf (iso-tm:TemplateDescription iso-tm:TemplateRoleDescription) | ||
270 | + ] ; | ||
271 | + rdfs:label "isAboutTemplate" ; | ||
272 | + rdfs:range iso-tm:Template ; | ||
273 | + rdfs:subPropertyOf iso-tm:hasMetaTemplateObjectRoleFiller . | ||
274 | + | ||
275 | +iso-tm:valBaseTemplateDataRoleFiller | ||
276 | + rdf:type owl:DatatypeProperty ; | ||
277 | + rdfs:label "valBaseTemplateDataRoleFiller" ; | ||
278 | + rdfs:subPropertyOf iso-tm:valDataRoleFiller . | ||
279 | + | ||
280 | +iso-tm:valDataRoleFiller | ||
281 | + rdf:type owl:DatatypeProperty ; | ||
282 | + rdfs:label "valDataRoleFiller" . | ||
283 | + | ||
284 | +iso-tm:valMetaTemplateDataRoleFiller | ||
285 | + rdf:type owl:DatatypeProperty ; | ||
286 | + rdfs:label "valMetaTemplateDataRoleFiller" ; | ||
287 | + rdfs:subPropertyOf iso-tm:valDataRoleFiller . | ||
288 | + | ||
289 | +iso-tm:valNumberOfRoles | ||
290 | + rdf:type owl:DatatypeProperty ; | ||
291 | + rdfs:comment "Used in meta-template TemplateDescription to say how many roles a template is defined to have." ; | ||
292 | + rdfs:label "numberOfRoles" ; | ||
293 | + rdfs:range xsd:int ; | ||
294 | + rdfs:subPropertyOf iso-tm:valMetaTemplateDataRoleFiller . | ||
295 | + | ||
296 | +iso-tm:valRoleIndex | ||
297 | + rdf:type owl:DatatypeProperty ; | ||
298 | + rdfs:comment "Used in meta-template TemplateRoleDescription to record the position of a role in a template." ; | ||
299 | + rdfs:label "positionInTemplate" ; | ||
300 | + rdfs:range xsd:int ; | ||
301 | + rdfs:subPropertyOf iso-tm:valMetaTemplateDataRoleFiller . | ||
302 | + | ||
303 | +[] rdf:type owl:AllDisjointClasses ; | ||
304 | + owl:members (iso-tm:Template iso-tm:TemplateRole iso-tm:TemplateStatement) . | ||
305 | + | ||
306 | +[] rdf:type owl:AllDisjointClasses ; | ||
307 | + owl:members (iso-tm:TemplateDescription iso-tm:TemplateRoleDescription iso-tm:TemplateSpecialization) . |
This diff could not be displayed because it is too large.
-
Please register or login to post a comment