SCHEMA_ISO-15926-8-data-model.ttl
70.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
# Saved by TopBraid on Wed Aug 17 18:10:40 BST 2011
# baseURI: http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model
@prefix iso-dm: <http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://standards.iso.org/iso/ts/15926/-8/ed-1/tech/reference-data/data-model>
rdf:type owl:Ontology ;
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." ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
iso-dm:AbstractObject
rdf:type owl:Class ;
rdfs:comment "An [abstract_object] is a [thing] that does not exist in space-time."^^xsd:string ;
rdfs:subClassOf iso-dm:Thing ;
owl:disjointWith iso-dm:PossibleIndividual .
iso-dm:Activity
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:PossibleIndividual .
iso-dm:ActualIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:PossibleIndividual .
iso-dm:Approval
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:ArithmeticNumber
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClass ;
owl:disjointWith iso-dm:ClassOfShapeDimension , iso-dm:ClassOfPropertySpace , iso-dm:ClassOfNumber , iso-dm:ClassOfClassOfIndividual .
iso-dm:ArrangedIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:PossibleIndividual .
iso-dm:ArrangementOfIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:CompositionOfIndividual .
iso-dm:AssemblyOfIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ArrangementOfIndividual .
iso-dm:Beginning
rdf:type owl:Class ;
rdfs:comment "A [beginning] is a [temporal_bounding] that marks the temporal start of a [possible_individual]."^^xsd:string ;
rdfs:subClassOf iso-dm:TemporalBounding .
iso-dm:BoundaryOfNumberSpace
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Specialization .
iso-dm:BoundaryOfPropertySpace
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Specialization .
iso-dm:Cardinality
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Class .
iso-dm:CauseOfEvent
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:Class
rdf:type owl:Class ;
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.
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 ;
rdfs:subClassOf iso-dm:AbstractObject .
iso-dm:ClassOfAbstractObject
rdf:type owl:Class ;
rdfs:comment "A [class_of_abstract_object] is a [class] whose members classify members of [abstract_object]."^^xsd:string ;
rdfs:subClassOf iso-dm:Class ;
owl:disjointWith iso-dm:ClassOfIndividual .
iso-dm:ClassOfActivity
rdf:type owl:Class ;
rdfs:comment "A [class_of_activity] is a [class_of_arranged_individual] whose members are instances of [activity]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual .
iso-dm:ClassOfApproval
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfApprovalByStatus
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfArrangedIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfIndividual ;
owl:disjointWith iso-dm:Status , iso-dm:Property , iso-dm:IndividualDimension , iso-dm:ClassOfPeriodInTime , iso-dm:ClassOfEvent .
iso-dm:ClassOfArrangementOfIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfCompositionOfIndividual .
iso-dm:ClassOfAssemblyOfIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfArrangementOfIndividual .
iso-dm:ClassOfAssertion
rdf:type owl:Class ;
rdfs:comment "A [class_of_assertion] is a [class_of_relationship] that describes the assertive nature of the member relations."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfAtom
rdf:type owl:Class ;
rdfs:comment "A [class_of_atom] is a [class_of_arranged_individual] whose members are atoms."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ;
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 .
iso-dm:ClassOfBiologicalMatter
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ;
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 .
iso-dm:ClassOfCauseOfBeginningOfClassOfIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfCauseOfEndingOfClassOfIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfClass
rdf:type owl:Class ;
rdfs:comment "A [class_of_class] is a [class] whose members are instances of [class]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfAbstractObject .
iso-dm:ClassOfClassOfComposition
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfRelationship .
iso-dm:ClassOfClassOfDefinition
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfRepresentation .
iso-dm:ClassOfClassOfDescription
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfRepresentation .
iso-dm:ClassOfClassOfIdentification
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfRepresentation .
iso-dm:ClassOfClassOfIndividual
rdf:type owl:Class ;
rdfs:comment "A [class_of_class_of_individual] is a [class_of_class] whose members are instances of [class_of_individual]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfClass ;
owl:disjointWith iso-dm:ClassOfShapeDimension , iso-dm:ClassOfPropertySpace , iso-dm:ClassOfNumber .
iso-dm:ClassOfClassOfInformationRepresentation
rdf:type owl:Class ;
rdfs:comment "A [class_of_class_of_information_representation] is a [class_of_class_of_individual] that classifies information representation classes."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfClassOfIndividual ;
owl:disjointWith iso-dm:ShapeDimension , iso-dm:ClassOfStatus , iso-dm:ClassOfProperty .
iso-dm:ClassOfClassOfRelationship
rdf:type owl:Class ;
rdfs:comment "A [class_of_class_of_relationship] is a [class_of_class] whose members are instances of [class_of_relationship]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfClass .
iso-dm:ClassOfClassOfRelationshipWithSignature
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationshipWithSignature , iso-dm:ClassOfClassOfRelationship .
iso-dm:ClassOfClassOfRepresentation
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfRelationship .
iso-dm:ClassOfClassOfRepresentationTranslation
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfRelationship .
iso-dm:ClassOfClassOfResponsibilityForRepresentation
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfRelationship .
iso-dm:ClassOfClassOfUsageOfRepresentation
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfRelationship .
iso-dm:ClassOfClassification
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfCompositeMaterial
rdf:type owl:Class ;
rdfs:comment "A [class_of_composite_material] is a [class_of_arranged_individual] whose members have a common arrangement of separable compounds."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ;
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 .
iso-dm:ClassOfCompositionOfIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfCompound
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ;
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 .
iso-dm:ClassOfConnectionOfIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfContainmentOfIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelativeLocation .
iso-dm:ClassOfDefinition
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRepresentationOfThing .
iso-dm:ClassOfDescription
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRepresentationOfThing .
iso-dm:ClassOfDimensionForShape
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfRelationship .
iso-dm:ClassOfDirectConnection
rdf:type owl:Class ;
rdfs:comment "A [class_of_direct_connection] is a [class_of_connection_of_individual] whose members are members of [direct_connection]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfConnectionOfIndividual .
iso-dm:ClassOfEvent
rdf:type owl:Class ;
rdfs:comment "A [class_of_event] is a [class_of_individual] whose members are members of [event]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfIndividual ;
owl:disjointWith iso-dm:Status , iso-dm:Property , iso-dm:IndividualDimension , iso-dm:ClassOfPeriodInTime .
iso-dm:ClassOfExpressInformationRepresentation
rdf:type owl:Class ;
rdfs:comment "A [class_of_EXPRESS_information_representation] is a [class_of_information_representation] that is defined by ISO 10303-11."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfInformationRepresentation ;
owl:disjointWith iso-dm:RepresentationOfGregorianDateAndUtcTime .
iso-dm:ClassOfFeature
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual .
iso-dm:ClassOfFeatureWholePart
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfArrangementOfIndividual .
iso-dm:ClassOfFunctionalMapping
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfFunctionalObject
rdf:type owl:Class ;
rdfs:comment "A [class_of_functional_object] is a [class_of_arranged_individual] that indicates the function or purpose of an object."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ;
owl:disjointWith iso-dm:ClassOfMolecule , iso-dm:CrystallineStructure , iso-dm:ClassOfInformationRepresentation , iso-dm:ClassOfSubAtomicParticle , iso-dm:ClassOfInformationPresentation , iso-dm:Phase , iso-dm:ClassOfParticulateMaterial .
iso-dm:ClassOfIdentification
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRepresentationOfThing .
iso-dm:ClassOfInanimatePhysicalObject
rdf:type owl:Class ;
rdfs:comment "A [class_of_inanimate_physical_object] is a [class_of_arranged_individual] whose members are not living."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ;
owl:disjointWith iso-dm:ClassOfOrganism .
iso-dm:ClassOfIndirectConnection
rdf:type owl:Class ;
rdfs:comment "A [class_of_indirect_connection] is a [class_of_connection_of_individual] whose members are members of [indirect_connection]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfConnectionOfIndividual .
iso-dm:ClassOfIndirectProperty
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfIndividual
rdf:type owl:Class ;
rdfs:comment "A [class_of_individual] is a [class] whose members are all instances of [possible_individual]."^^xsd:string ;
rdfs:subClassOf iso-dm:Class .
iso-dm:ClassOfIndividualUsedInConnection
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfInformationObject
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual .
iso-dm:ClassOfInformationPresentation
rdf:type owl:Class ;
rdfs:comment "A [class_of_information_presentation] is a [class_of_arranged_individual] that distinguishes styles for presenting information."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ;
owl:disjointWith iso-dm:Phase , iso-dm:CrystallineStructure , iso-dm:ClassOfSubAtomicParticle , iso-dm:ClassOfParticulateMaterial , iso-dm:ClassOfMolecule , iso-dm:ClassOfInformationRepresentation .
iso-dm:ClassOfInformationRepresentation
rdf:type owl:Class ;
rdfs:comment "A [class_of_information_representation] is a [class_of_arranged_individual] that defines a pattern that represents information."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ;
owl:disjointWith iso-dm:Phase , iso-dm:CrystallineStructure , iso-dm:ClassOfSubAtomicParticle , iso-dm:ClassOfParticulateMaterial , iso-dm:ClassOfMolecule .
iso-dm:ClassOfIntendedRoleAndDomain
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfInvolvementByReference
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfIsomorphicFunctionalMapping
rdf:type owl:Class ;
rdfs:comment "A [class_of_isomorphic_functional_mapping] is a [class_of_functional_mapping] that is isomorphic."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfFunctionalMapping .
iso-dm:ClassOfLeftNamespace
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfNamespace .
iso-dm:ClassOfLifecycleStage
rdf:type owl:Class ;
rdfs:comment "A [class_of_lifecycle_stage] is a [class_of_relationship] whose members are members of [lifecycle_stage]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfMolecule
rdf:type owl:Class ;
rdfs:comment "A [class_of_molecule] is a [class_of_arranged_individual] whose members are molecules."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ;
owl:disjointWith iso-dm:Phase , iso-dm:CrystallineStructure , iso-dm:ClassOfSubAtomicParticle , iso-dm:ClassOfParticulateMaterial .
iso-dm:ClassOfMultidimensionalObject
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfAbstractObject .
iso-dm:ClassOfNamespace
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfRelationship .
iso-dm:ClassOfNumber
rdf:type owl:Class ;
rdfs:comment "A [class_of_number] is a [class_of_class] whose members are members of [arithmetic_number]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfClass ;
owl:disjointWith iso-dm:ClassOfShapeDimension , iso-dm:ClassOfPropertySpace .
iso-dm:ClassOfOrganism
rdf:type owl:Class ;
rdfs:comment "A [class_of_organism] is a [class_of_arranged_individual] whose members are living organisms."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual .
iso-dm:ClassOfOrganization
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual .
iso-dm:ClassOfParticipation
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfCompositionOfIndividual .
iso-dm:ClassOfParticulateMaterial
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ;
owl:disjointWith iso-dm:Phase , iso-dm:CrystallineStructure , iso-dm:ClassOfSubAtomicParticle .
iso-dm:ClassOfPeriodInTime
rdf:type owl:Class ;
rdfs:comment "A [class_of_period_in_time] is a [class_of_individual] whose members are instances of [period_in_time]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfIndividual ;
owl:disjointWith iso-dm:Status , iso-dm:Property , iso-dm:IndividualDimension .
iso-dm:ClassOfPerson
rdf:type owl:Class ;
rdfs:comment "A [class_of_person] is a [class_of_organism] whose members are people."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfOrganism .
iso-dm:ClassOfPointInTime
rdf:type owl:Class ;
rdfs:comment "A [class_of_point_in_time] is a [class_of_event] whose members are members of [point_in_time]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfEvent .
iso-dm:ClassOfPossibleRoleAndDomain
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfProperty
rdf:type owl:Class ;
rdfs:comment "A [class_of_property] is a [class_of_class_of_individual] whose members are instances of [property]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfClassOfIndividual ;
owl:disjointWith iso-dm:ShapeDimension , iso-dm:ClassOfStatus .
iso-dm:ClassOfPropertySpace
rdf:type owl:Class ;
rdfs:comment "A [class_of_property_space] is a [class_of_class] whose members are members of [property_space]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfClass ;
owl:disjointWith iso-dm:ClassOfShapeDimension .
iso-dm:ClassOfRecognition
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfRelationship
rdf:type owl:Class ;
rdfs:comment "A [class_of_relationship] is a [class_of _abstract_object] whose members are members of [relationship]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfAbstractObject .
iso-dm:ClassOfRelationshipWithRelatedEnd1
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfRelationshipWithRelatedEnd2
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfRelationshipWithSignature
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship , iso-dm:ClassOfRelationship .
iso-dm:ClassOfRelativeLocation
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfRepresentationOfThing
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfRepresentationTranslation
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfResponsibilityForRepresentation
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfRightNamespace
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfNamespace .
iso-dm:ClassOfScale
rdf:type owl:Class ;
rdfs:comment "A [class_of_scale] is a [class_of_class_of_relationship] whose members are instances of [scale]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfClassOfRelationship .
iso-dm:ClassOfScaleConversion
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfIsomorphicFunctionalMapping .
iso-dm:ClassOfShape
rdf:type owl:Class ;
rdfs:comment "A [class_of_shape] is a [property_space] that has instances of [shape] as its members."^^xsd:string ;
rdfs:subClassOf iso-dm:PropertySpace .
iso-dm:ClassOfShapeDimension
rdf:type owl:Class ;
rdfs:comment "A [class_of_shape_dimension] is a [class_of_class] that is a dimension of a [class_of_shape]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfClass .
iso-dm:ClassOfSpecialization
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfStatus
rdf:type owl:Class ;
rdfs:comment "A [class_of_status] is a [class_of_class_of_individual] whose members are a [status]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfClassOfIndividual ;
owl:disjointWith iso-dm:ShapeDimension .
iso-dm:ClassOfSubAtomicParticle
rdf:type owl:Class ;
rdfs:comment "A [class_of_sub_atomic_particle] is a [class_of_arranged_individual] whose members are constituent particles of atoms."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ;
owl:disjointWith iso-dm:Phase , iso-dm:CrystallineStructure .
iso-dm:ClassOfTemporalSequence
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:ClassOfTemporalWholePart
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfCompositionOfIndividual .
iso-dm:ClassOfUsageOfRepresentation
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:Classification
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:ComparisonOfProperty
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:CompositionOfIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:ConnectionOfIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:ContainmentOfIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:RelativeLocation .
iso-dm:CoordinateSystem
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:MultidimensionalScale .
iso-dm:CrystallineStructure
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual ;
owl:disjointWith iso-dm:Phase .
iso-dm:Definition
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:RepresentationOfThing .
iso-dm:Description
rdf:type owl:Class ;
rdfs:comment "A [description] is a [representation_of_thing] that indicates that the [possible_individual] describes the [thing]."^^xsd:string ;
rdfs:subClassOf iso-dm:RepresentationOfThing .
iso-dm:DifferenceOfSetOfClass
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:FunctionalMapping .
iso-dm:DimensionOfIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:DimensionOfShape
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfRelationship .
iso-dm:DirectConnection
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ConnectionOfIndividual .
iso-dm:DocumentDefinition
rdf:type owl:Class ;
rdfs:comment "A [document_definition] is a [class_of_class_of_information_representation] that defines the content and/or structure of documents."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfClassOfInformationRepresentation ;
owl:disjointWith iso-dm:RepresentationForm , iso-dm:Language .
iso-dm:Ending
rdf:type owl:Class ;
rdfs:comment "An [ending] is a [temporal_bounding] that marks the end of a [possible_individual]."^^xsd:string ;
rdfs:subClassOf iso-dm:TemporalBounding .
iso-dm:EnumeratedNumberSet
rdf:type owl:Class ;
rdfs:comment "An [enumerated_number_set] is a [class_of_number] and an [enumerated_set_of_class]."^^xsd:string ;
rdfs:subClassOf iso-dm:EnumeratedSetOfClass , iso-dm:ClassOfNumber ;
owl:disjointWith iso-dm:NumberSpace .
iso-dm:EnumeratedPropertySet
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:EnumeratedSetOfClass , iso-dm:ClassOfProperty ;
owl:disjointWith iso-dm:PropertySpace .
iso-dm:EnumeratedSetOfClass
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClass .
iso-dm:Event
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:PossibleIndividual .
iso-dm:ExpressBinary
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfExpressInformationRepresentation ;
owl:disjointWith iso-dm:ExpressString , iso-dm:ExpressReal , iso-dm:ExpressLogical , iso-dm:ExpressInteger , iso-dm:ExpressBoolean .
iso-dm:ExpressBoolean
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfExpressInformationRepresentation ;
owl:disjointWith iso-dm:ExpressString , iso-dm:ExpressReal , iso-dm:ExpressLogical , iso-dm:ExpressInteger .
iso-dm:ExpressInteger
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfExpressInformationRepresentation ;
owl:disjointWith iso-dm:ExpressString , iso-dm:ExpressReal , iso-dm:ExpressLogical .
iso-dm:ExpressLogical
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfExpressInformationRepresentation ;
owl:disjointWith iso-dm:ExpressString , iso-dm:ExpressReal .
iso-dm:ExpressReal
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfExpressInformationRepresentation ;
owl:disjointWith iso-dm:ExpressString .
iso-dm:ExpressString
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfExpressInformationRepresentation .
iso-dm:FeatureWholePart
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ArrangementOfIndividual .
iso-dm:FunctionalMapping
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:FunctionalPhysicalObject
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:PhysicalObject .
iso-dm:Identification
rdf:type owl:Class ;
rdfs:comment "An [identification] is a [representation_of_thing] that indicates that the [possible_individual] is an identifier for the [thing] identified."^^xsd:string ;
rdfs:subClassOf iso-dm:RepresentationOfThing .
iso-dm:IndirectConnection
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ConnectionOfIndividual .
iso-dm:IndirectProperty
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:IndividualDimension
rdf:type owl:Class ;
rdfs:comment "An [individual_dimension] is a [class_of_individual] whose members characterize a particular [possible_individual]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfIndividual ;
owl:disjointWith iso-dm:Status , iso-dm:Property .
iso-dm:IndividualUsedInConnection
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:IntegerNumber
rdf:type owl:Class ;
rdfs:comment "An [integer_number] is an [arithmetic_number] that is an integer number."^^xsd:string ;
rdfs:subClassOf iso-dm:ArithmeticNumber ;
owl:disjointWith iso-dm:RealNumber , iso-dm:MultidimensionalNumber .
iso-dm:IntendedRoleAndDomain
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:IntersectionOfSetOfClass
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:FunctionalMapping .
iso-dm:InvolvementByReference
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:Language
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfInformationRepresentation ;
owl:disjointWith iso-dm:RepresentationForm .
iso-dm:LeftNamespace
rdf:type owl:Class ;
rdfs:comment "A [left_namespace] is a [namespace] where the [class_of_part] is the left part of the [class_of_whole]."^^xsd:string ;
rdfs:subClassOf iso-dm:Namespace .
iso-dm:LifecycleStage
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:LowerBoundOfNumberRange
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Classification .
iso-dm:LowerBoundOfPropertyRange
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Classification .
iso-dm:MaterializedPhysicalObject
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:PhysicalObject .
iso-dm:MultidimensionalNumber
rdf:type owl:Class ;
rdfs:comment "A [multidimensional_number] is an [arithmetic_number] that is also a [multidimensional_object]."^^xsd:string ;
rdfs:subClassOf iso-dm:MultidimensionalObject , iso-dm:ArithmeticNumber ;
owl:disjointWith iso-dm:RealNumber , iso-dm:MultidimensionalPropertySpace , iso-dm:MultidimensionalProperty , iso-dm:MultidimensionalNumberSpace .
iso-dm:MultidimensionalNumberSpace
rdf:type owl:Class ;
rdfs:comment "A [multidimensional_number_space] is a [number_space] and a [multidimensional_object]."^^xsd:string ;
rdfs:subClassOf iso-dm:NumberSpace , iso-dm:MultidimensionalObject ;
owl:disjointWith iso-dm:NumberRange , iso-dm:MultidimensionalPropertySpace , iso-dm:MultidimensionalProperty .
iso-dm:MultidimensionalObject
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:AbstractObject .
iso-dm:MultidimensionalProperty
rdf:type owl:Class ;
rdfs:comment "A [multidimensional_property] is a [property] that is also a [multidimensional_object]."^^xsd:string ;
rdfs:subClassOf iso-dm:Property , iso-dm:MultidimensionalObject ;
owl:disjointWith iso-dm:MultidimensionalPropertySpace .
iso-dm:MultidimensionalPropertySpace
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:PropertySpace , iso-dm:MultidimensionalObject .
iso-dm:MultidimensionalScale
rdf:type owl:Class ;
rdfs:comment "A [multidimensional_scale] is a [scale] that is also a [multidimensional_object]."^^xsd:string ;
rdfs:subClassOf iso-dm:Scale .
iso-dm:Namespace
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfArrangementOfIndividual .
iso-dm:NumberRange
rdf:type owl:Class ;
rdfs:comment "A [number_range] is a one dimensional [number_space]."^^xsd:string ;
rdfs:subClassOf iso-dm:NumberSpace .
iso-dm:NumberSpace
rdf:type owl:Class ;
rdfs:comment "A [number_space] is a [class_of_number] that is a continuum."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfNumber .
iso-dm:OtherRelationship
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:ParticipatingRoleAndDomain
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:RoleAndDomain , iso-dm:ClassOfIndividual .
iso-dm:Participation
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:CompositionOfIndividual .
iso-dm:PeriodInTime
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:PossibleIndividual .
iso-dm:Phase
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfArrangedIndividual .
iso-dm:PhysicalObject
rdf:type owl:Class ;
rdfs:comment """A [physical_object] is a [possible_individual] that is a distribution of
matter, energy, or both."""^^xsd:string ;
rdfs:subClassOf iso-dm:PossibleIndividual .
iso-dm:PointInTime
rdf:type owl:Class ;
rdfs:comment "An [event] that is the whole space extension with zero extent in time."^^xsd:string ;
rdfs:subClassOf iso-dm:Event .
iso-dm:PossibleIndividual
rdf:type owl:Class ;
rdfs:comment """A [possible_individual] is a [thing] that exists in space and time. This includes:
- things where any of the space time dimensions are vanishingly small,
- those that are either all space for any time, or all time and any space,
- the entirety of all space time
- things that actually exist, or have existed,
- things that are fictional or conjectured and possibly exist in the past, present or future,
- temporal parts (states) of other individuals,
- 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 ;
rdfs:subClassOf iso-dm:Thing .
iso-dm:PossibleRoleAndDomain
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:Property
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfIndividual ;
owl:disjointWith iso-dm:Status .
iso-dm:PropertyForShapeDimension
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfRelationship .
iso-dm:PropertyQuantification
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:FunctionalMapping .
iso-dm:PropertyRange
rdf:type owl:Class ;
rdfs:comment "A [property_range] is a [property_space] that is a continuous subset of a [single_property_dimension]."^^xsd:string ;
rdfs:subClassOf iso-dm:PropertySpace .
iso-dm:PropertySpace
rdf:type owl:Class ;
rdfs:comment "A [property_space] is a [class_of_property] whose members are a coherent continuum of [property]."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfProperty .
iso-dm:PropertySpaceForClassOfShapeDimension
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfRelationship .
iso-dm:RealNumber
rdf:type owl:Class ;
rdfs:comment "A [real_number] is an [arithmetic_number] that is a real number."^^xsd:string ;
rdfs:subClassOf iso-dm:ArithmeticNumber .
iso-dm:Recognition
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:Relationship
rdf:type owl:Class ;
rdfs:comment "A [relationship] is an [abstract_object] that indicates something that one thing has to do with another."^^xsd:string ;
rdfs:subClassOf iso-dm:AbstractObject .
iso-dm:RelativeLocation
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:RepresentationForm
rdf:type owl:Class ;
rdfs:comment "A [representation_form] is a [class_of_class_of_information_representation] that distinguishes the form of representation."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfClassOfInformationRepresentation .
iso-dm:RepresentationOfGregorianDateAndUtcTime
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfInformationRepresentation .
iso-dm:RepresentationOfThing
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:ResponsibilityForRepresentation
rdf:type owl:Class ;
rdfs:comment "A [responsibility_for_representation] is a [relationship] that indicates that the controller [possible_individual] administers the controlled [representation_of_thing]."^^xsd:string ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:RightNamespace
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Namespace .
iso-dm:Role
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:RoleAndDomain .
iso-dm:RoleAndDomain
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Class .
iso-dm:Scale
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfIsomorphicFunctionalMapping .
iso-dm:Shape
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Property .
iso-dm:ShapeDimension
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:ClassOfClassOfIndividual .
iso-dm:SinglePropertyDimension
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:PropertySpace .
iso-dm:SpatialLocation
rdf:type owl:Class ;
rdfs:comment "A [spatial_location] is a [physical_object] that has continuity of relative position."^^xsd:string ;
rdfs:subClassOf iso-dm:PhysicalObject .
iso-dm:Specialization
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:SpecializationByDomain
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Specialization .
iso-dm:SpecializationByRole
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Specialization .
iso-dm:SpecializationOfIndividualDimensionFromProperty
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Specialization .
iso-dm:Status
rdf:type owl:Class ;
rdfs:comment "A [status] is a [class_of_individual] that is a characteristic or quality that is described by discrete, unordered values."^^xsd:string ;
rdfs:subClassOf iso-dm:ClassOfIndividual .
iso-dm:Stream
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:PhysicalObject .
iso-dm:TemporalBounding
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:CompositionOfIndividual .
iso-dm:TemporalSequence
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:TemporalWholePart
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:CompositionOfIndividual .
iso-dm:Thing
rdf:type owl:Class ;
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 .
iso-dm:UnionOfSetOfClass
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:FunctionalMapping .
iso-dm:UpperBoundOfNumberRange
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Classification .
iso-dm:UpperBoundOfPropertyRange
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Classification .
iso-dm:UsageOfRepresentation
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:Relationship .
iso-dm:WholeLifeIndividual
rdf:type owl:Class ;
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 ;
rdfs:subClassOf iso-dm:PossibleIndividual .