-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgfo-light.owl
1127 lines (748 loc) · 46.1 KB
/
gfo-light.owl
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
<?xml version="1.0"?>
<rdf:RDF xmlns="https://w3id.org/gfo/light/"
xml:base="https://w3id.org/gfo/light/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:doap="http://usefulinc.com/ns/doap#"
xmlns:bibo="http://purl.org/ontology/bibo/"
xmlns:terms="http://purl.org/dc/terms/">
<owl:Ontology rdf:about="https://w3id.org/gfo/light">
<dc:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2024-07-05</dc:modified>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2024-07-05</owl:versionInfo>
<owl:versionIRI rdf:resource="https://w3id.org/gfo/light/release/2024-07-05"/>
<dc:title xml:lang="en">General Formal Ontology Light (GFO-light)</dc:title>
<rdfs:label xml:lang="en">General Formal Ontology Light (GFO-light)</rdfs:label>
<dc:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2006-08-28</dc:created>
<vann:preferredNamespaceURI>https://w3id.org/gfo/light/</vann:preferredNamespaceURI>
<vann:preferredNamespacePrefix>gfo-light</vann:preferredNamespacePrefix>
<foaf:homepage>https://github.com/Onto-Med/GFO</foaf:homepage>
<doap:repository rdf:resource="https://github.com/Onto-Med/GFO"/>
<bibo:doi>10.5281/zenodo.5205419</bibo:doi>
<terms:license rdf:resource="http://creativecommons.org/licenses/by/4.0/"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2000/01/rdf-schema#comment -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
<!-- http://www.w3.org/2002/07/owl#versionInfo -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#versionInfo"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://w3id.org/gfo/light/attributiveOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/attributiveOf">
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/hasAttributive"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Attributive"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/ComplexIndividual"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/before -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/before">
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/TimeEntity"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/TimeEntity"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/boundaryOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/boundaryOf">
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/hasBoundary"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/consistsOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/consistsOf">
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/MaterialObject"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Stuff"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/exhibitedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/exhibitedBy">
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/exhibits"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Presential"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Continuant"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/exhibits -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/exhibits">
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Continuant"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Presential"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/functionOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/functionOf">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/attributiveOf"/>
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/hasFunction"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Function"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/ComplexIndividual"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasAttributive -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasAttributive">
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/ComplexIndividual"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Attributive"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasBoundary -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasBoundary">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasFunction -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasFunction">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/hasAttributive"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/ComplexIndividual"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Function"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasLeftTimeBoundary -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasLeftTimeBoundary">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/hasTimeBoundary"/>
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/leftTimeBoundaryOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasLifetime -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasLifetime">
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/lifetimeOf"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Continuant"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Chronoid"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasMaterialBoundary -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasMaterialBoundary">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/hasBoundary"/>
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/materialBoundaryOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/gfo/light/MaterialLine"/>
<rdf:Description rdf:about="https://w3id.org/gfo/light/MaterialObject"/>
<rdf:Description rdf:about="https://w3id.org/gfo/light/MaterialSurface"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/MaterialBoundary"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasPart -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasPart">
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/partOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/ConcreteIndividual"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/ConcreteIndividual"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasParticipant -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasParticipant">
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/participatesIn"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/ProcessualComplex"/>
<rdfs:range>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/gfo/light/ConcreteIndividual"/>
<owl:Class>
<owl:complementOf rdf:resource="https://w3id.org/gfo/light/ProcessualComplex"/>
</owl:Class>
</owl:intersectionOf>
</owl:Class>
</rdfs:range>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasProcessBoundary -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasProcessBoundary">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/hasBoundary"/>
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/processBoundaryOf"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Process"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Presential"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasRightTimeBoundary -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasRightTimeBoundary">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/hasTimeBoundary"/>
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/rightTimeBoundaryOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasRole -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasRole">
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/roleOf"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Role"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasSpatialBoundary -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasSpatialBoundary">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/hasBoundary"/>
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/spatialBoundaryOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/gfo/light/LineRegion"/>
<rdf:Description rdf:about="https://w3id.org/gfo/light/SpaceRegion"/>
<rdf:Description rdf:about="https://w3id.org/gfo/light/SurfaceRegion"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/SpatialBoundary"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasTemporalExtension -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasTemporalExtension">
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/temporalExtensionOf"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Process"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Chronoid"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/hasTimeBoundary -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/hasTimeBoundary">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/hasBoundary"/>
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/timeBoundaryOf"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Chronoid"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/TimeBoundary"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/instanceOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/instanceOf">
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/instantiatedBy"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Category"/>
<rdfs:comment xml:lang="en">The instantiation relation holds between a category and an item. It is not a relation between categories and individuals due to higher order categories such as "species".</rdfs:comment>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/instantiatedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/instantiatedBy">
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Category"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/leftTimeBoundaryOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/leftTimeBoundaryOf">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/timeBoundaryOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdfs:comment xml:lang="en">Left boundary of a chronoid.</rdfs:comment>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/lifetimeOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/lifetimeOf">
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Chronoid"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Continuant"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/materialBoundaryOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/materialBoundaryOf">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/boundaryOf"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/MaterialBoundary"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/gfo/light/MaterialLine"/>
<rdf:Description rdf:about="https://w3id.org/gfo/light/MaterialObject"/>
<rdf:Description rdf:about="https://w3id.org/gfo/light/MaterialSurface"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/occupiedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/occupiedBy">
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/occupies"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/SpaceRegion"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/MaterialStructure"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/occupies -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/occupies">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/MaterialStructure"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/SpaceRegion"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/partOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/partOf">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/ConcreteIndividual"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/ConcreteIndividual"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/participatesIn -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/participatesIn">
<rdfs:domain>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/gfo/light/ConcreteIndividual"/>
<owl:Class>
<owl:complementOf rdf:resource="https://w3id.org/gfo/light/ProcessualComplex"/>
</owl:Class>
</owl:intersectionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/ProcessualComplex"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/playedBy -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/playedBy">
<owl:inverseOf rdf:resource="https://w3id.org/gfo/light/plays"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Role"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Entity"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/plays -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/plays">
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Entity"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Role"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/presentAt -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/presentAt">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Presential"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/TimeBoundary"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/processBoundaryOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/processBoundaryOf">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/boundaryOf"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Presential"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Process"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/rightTimeBoundaryOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/rightTimeBoundaryOf">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/timeBoundaryOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdfs:comment xml:lang="en">Right boundary of a chronoid.</rdfs:comment>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/roleOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/roleOf">
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Role"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/spatialBoundaryOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/spatialBoundaryOf">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/boundaryOf"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/SpatialBoundary"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/gfo/light/LineRegion"/>
<rdf:Description rdf:about="https://w3id.org/gfo/light/SpaceRegion"/>
<rdf:Description rdf:about="https://w3id.org/gfo/light/SurfaceRegion"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/temporalExtensionOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/temporalExtensionOf">
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/Chronoid"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Process"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/temporallyCoincidesWith -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/temporallyCoincidesWith">
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/TimeBoundary"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/TimeBoundary"/>
</owl:ObjectProperty>
<!-- https://w3id.org/gfo/light/timeBoundaryOf -->
<owl:ObjectProperty rdf:about="https://w3id.org/gfo/light/timeBoundaryOf">
<rdfs:subPropertyOf rdf:resource="https://w3id.org/gfo/light/boundaryOf"/>
<rdfs:domain rdf:resource="https://w3id.org/gfo/light/TimeBoundary"/>
<rdfs:range rdf:resource="https://w3id.org/gfo/light/Chronoid"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://w3id.org/gfo/light/AbstractIndividual -->
<owl:Class rdf:about="https://w3id.org/gfo/light/AbstractIndividual">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Individual"/>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/ConcreteIndividual"/>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/SpaceTimeEntity"/>
<rdfs:comment xml:lang="en">Abstract individuals are independent of space and time, for example the number number '2' or pi.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Attributive -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Attributive">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Individual"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/attributiveOf"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/ComplexIndividual"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Individuals that are related to other individuals by some kind of dependency relation are called attributives.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Category -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Category">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Entity"/>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/Individual"/>
<rdfs:comment xml:lang="en">The notion of category covers all abstract entities that can be instantiated by or are predicated of other entities.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Chronoid -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Chronoid">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/TimeEntity"/>
<rdfs:comment xml:lang="en">Chronoids may be understood as closely similar to real-valued intervals with endpoints.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/ComplexConcreteIndividual -->
<owl:Class rdf:about="https://w3id.org/gfo/light/ComplexConcreteIndividual">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/ComplexIndividual"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/ConcreteIndividual"/>
</owl:Class>
<!-- https://w3id.org/gfo/light/ComplexIndividual -->
<owl:Class rdf:about="https://w3id.org/gfo/light/ComplexIndividual">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Individual"/>
<rdfs:comment xml:lang="en">Complex individuals are composed of elementary ones or components.</rdfs:comment>
<rdfs:comment xml:lang="en">Complex individuals are constituents of situations (with a high degree of independence).</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Concept -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Concept">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Category"/>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/SymbolStructure"/>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/Universal"/>
</owl:Class>
<!-- https://w3id.org/gfo/light/ConcreteIndividual -->
<owl:Class rdf:about="https://w3id.org/gfo/light/ConcreteIndividual">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Individual"/>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/SpaceTimeEntity"/>
<rdfs:comment xml:lang="en">Concrete individuals have an immediate relation to time or to time and space.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Continuant -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Continuant">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/ConcreteIndividual"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/exhibits"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/Presential"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/hasLifetime"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/Chronoid"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Continuants persist through time and are wholly present at every time point of their lifetime.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Disposition -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Disposition">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Attributive"/>
</owl:Class>
<!-- https://w3id.org/gfo/light/Entity -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Entity">
<rdfs:comment xml:lang="en">Everything which exists is called an entity.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Fact -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Fact">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Individual"/>
<rdfs:comment xml:lang="en">Material facts are composed of a relator and material objects playing the corresponding roles. Material facts are continuants.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Function -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Function">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Attributive"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/functionOf"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/ComplexIndividual"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment>The notion of function is built upon that of role: we introduce a function as a category that captures a role played by some entity in the context of a goal achievement (GA), where the GA provides a teleological specification of transitioning to something that is intended to be achieved.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Individual -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Individual">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Entity"/>
<rdfs:comment xml:lang="en">Individuals are entities which cannot be further instantiated.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/LineRegion -->
<owl:Class rdf:about="https://w3id.org/gfo/light/LineRegion">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/SpatialBoundary"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/spatialBoundaryOf"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/SurfaceRegion"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- https://w3id.org/gfo/light/MaterialBoundary -->
<owl:Class rdf:about="https://w3id.org/gfo/light/MaterialBoundary">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/ComplexConcreteIndividual"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/materialBoundaryOf"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://w3id.org/gfo/light/MaterialLine"/>
<rdf:Description rdf:about="https://w3id.org/gfo/light/MaterialObject"/>
<rdf:Description rdf:about="https://w3id.org/gfo/light/MaterialSurface"/>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/MaterialObject"/>
</owl:Class>
<!-- https://w3id.org/gfo/light/MaterialLine -->
<owl:Class rdf:about="https://w3id.org/gfo/light/MaterialLine">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/MaterialBoundary"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/materialBoundaryOf"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/MaterialSurface"/>
</owl:Restriction>
</rdfs:subClassOf>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/MaterialPoint"/>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/MaterialSurface"/>
</owl:Class>
<!-- https://w3id.org/gfo/light/MaterialObject -->
<owl:Class rdf:about="https://w3id.org/gfo/light/MaterialObject">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/ComplexConcreteIndividual"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Continuant"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/consistsOf"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/Stuff"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/exhibits"/>
<owl:allValuesFrom rdf:resource="https://w3id.org/gfo/light/MaterialStructure"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Every material object consists of an amount of stuff.</rdfs:comment>
<rdfs:comment xml:lang="en">Material objects are solid material entities.</rdfs:comment>
<rdfs:comment>Material objects have a natural boundary.</rdfs:comment>
<rdfs:comment xml:lang="en">The lifetime of a material object is a chronoid.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/MaterialPoint -->
<owl:Class rdf:about="https://w3id.org/gfo/light/MaterialPoint">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/MaterialBoundary"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/materialBoundaryOf"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/MaterialLine"/>
</owl:Restriction>
</rdfs:subClassOf>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/MaterialSurface"/>
</owl:Class>
<!-- https://w3id.org/gfo/light/MaterialProcess -->
<owl:Class rdf:about="https://w3id.org/gfo/light/MaterialProcess">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/ComplexConcreteIndividual"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Process"/>
</owl:Class>
<!-- https://w3id.org/gfo/light/MaterialStructure -->
<owl:Class rdf:about="https://w3id.org/gfo/light/MaterialStructure">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Presential"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/exhibitedBy"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/MaterialObject"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/occupies"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/SpaceRegion"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Presentials exhibited by material objects are called material structures.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/MaterialSurface -->
<owl:Class rdf:about="https://w3id.org/gfo/light/MaterialSurface">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/MaterialBoundary"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/materialBoundaryOf"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/MaterialObject"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- https://w3id.org/gfo/light/Number -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Number">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/AbstractIndividual"/>
</owl:Class>
<!-- https://w3id.org/gfo/light/ObjectSituation -->
<owl:Class rdf:about="https://w3id.org/gfo/light/ObjectSituation">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Continuant"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Situation"/>
<rdfs:comment xml:lang="en">Object situations consist of material objects and relations between them.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/PointRegion -->
<owl:Class rdf:about="https://w3id.org/gfo/light/PointRegion">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/SpatialBoundary"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/spatialBoundaryOf"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/LineRegion"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<!-- https://w3id.org/gfo/light/Presential -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Presential">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/ConcreteIndividual"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/presentAt"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/TimeBoundary"/>
</owl:Restriction>
</rdfs:subClassOf>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/ProcessualComplex"/>
<rdfs:comment xml:lang="en">A presential is wholly present at exactly one time point.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/PresenticSituation -->
<owl:Class rdf:about="https://w3id.org/gfo/light/PresenticSituation">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Presential"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Situation"/>
<rdfs:comment xml:lang="en">A presentic situation is a snapshot of an object situation.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Process -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Process">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/ProcessualComplex"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/hasTemporalExtension"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/Chronoid"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Processes are a special kind of processual complexes. Processes are directly in time, they have characteristics which cannot be captured by a collection of time boundaries.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/ProcessualComplex -->
<owl:Class rdf:about="https://w3id.org/gfo/light/ProcessualComplex">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/ConcreteIndividual"/>
<rdfs:comment xml:lang="en">Processual complexes are concrete individuals that have a temporal extension.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/ProcessualRole -->
<owl:Class rdf:about="https://w3id.org/gfo/light/ProcessualRole">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Process"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Role"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/roleOf"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/Process"/>
</owl:Restriction>
</rdfs:subClassOf>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/RelationalRole"/>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/SocialRole"/>
<rdfs:comment xml:lang="en">Processual roles corresponds to the manner in which a single participant behaves in some process.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Quality -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Quality">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Attributive"/>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/Relator"/>
<rdfs:comment>Qualities are attributives and, typically, a quality inheres in its bearer.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/RelationalRole -->
<owl:Class rdf:about="https://w3id.org/gfo/light/RelationalRole">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Attributive"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Role"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/roleOf"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/Relator"/>
</owl:Restriction>
</rdfs:subClassOf>
<owl:disjointWith rdf:resource="https://w3id.org/gfo/light/SocialRole"/>
<rdfs:comment xml:lang="en">Relational role corresponds to the way in which an argument participates in some relation.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Relator -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Relator">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Attributive"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/hasRole"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/RelationalRole"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">Relators connects entities (role players) via roles (they depend on more than one player via their roles).</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Role -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Role">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Individual"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/gfo/light/playedBy"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/gfo/light/Entity"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment xml:lang="en">A role individual is defined as a relational entity that links any entity, called the role player (or filler), with some context, in which the entity plays that role.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Situation -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Situation">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Individual"/>
<rdfs:comment xml:lang="en">Material situations are parts of the material world (at the macroscopic level) that can be consistently comprehended as a whole.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/Situoid -->
<owl:Class rdf:about="https://w3id.org/gfo/light/Situoid">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Process"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Situation"/>
<rdfs:comment xml:lang="en">A situoid (or processual situation) is a part of the spatiotemporal world that arises from an object situation if all objects are replaced by the corresponding processes.</rdfs:comment>
</owl:Class>
<!-- https://w3id.org/gfo/light/SocialObject -->
<owl:Class rdf:about="https://w3id.org/gfo/light/SocialObject">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/ComplexConcreteIndividual"/>
</owl:Class>
<!-- https://w3id.org/gfo/light/SocialProcess -->
<owl:Class rdf:about="https://w3id.org/gfo/light/SocialProcess">
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/ComplexConcreteIndividual"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/gfo/light/Process"/>
</owl:Class>
<!-- https://w3id.org/gfo/light/SocialRole -->