-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathontology.nt
3913 lines (3913 loc) · 435 KB
/
ontology.nt
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
<https://ontologies.semanticarts.com/o/gistCore> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Ontology> .
<https://ontologies.semanticarts.com/o/gistCore> <http://www.w3.org/2002/07/owl#versionIRI> <https://ontologies.semanticarts.com/o/gistCoreX.x.x> .
<https://ontologies.semanticarts.com/o/gistCore> <http://www.w3.org/2004/02/skos/core#definition> "gist is a minimalist upper ontology created by Semantic Arts." .
<https://ontologies.semanticarts.com/o/gistCore> <http://www.w3.org/2004/02/skos/core#prefLabel> "gist" .
<https://ontologies.semanticarts.com/o/gistCore> <https://ontologies.semanticarts.com/gist/license> "https://creativecommons.org/licenses/by-sa/3.0/" .
#
#
# #################################################################
# #
# # Annotation properties
# #
# #################################################################
#
#
# http://www.w3.org/2004/02/skos/core#definition
<http://www.w3.org/2004/02/skos/core#definition> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://www.w3.org/2004/02/skos/core#example
<http://www.w3.org/2004/02/skos/core#example> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://www.w3.org/2004/02/skos/core#note
<http://www.w3.org/2004/02/skos/core#note> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://www.w3.org/2004/02/skos/core#prefLabel
<http://www.w3.org/2004/02/skos/core#prefLabel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# http://www.w3.org/2004/02/skos/core#scopeNote
<http://www.w3.org/2004/02/skos/core#scopeNote> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# https://ontologies.semanticarts.com/gist/domainIncludes
<https://ontologies.semanticarts.com/gist/domainIncludes> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<https://ontologies.semanticarts.com/gist/domainIncludes> <http://www.w3.org/2004/02/skos/core#definition> "Relates a property to a class that is (one of) the type(s) the property is expected to be used on." .
<https://ontologies.semanticarts.com/gist/domainIncludes> <http://www.w3.org/2004/02/skos/core#example> "The domain for the property gist:hasMember includes gist:Collection." .
<https://ontologies.semanticarts.com/gist/domainIncludes> <http://www.w3.org/2004/02/skos/core#prefLabel> "domain includes" .
<https://ontologies.semanticarts.com/gist/domainIncludes> <http://www.w3.org/2004/02/skos/core#scopeNote> "This property is used to guide the ontology user; like all annotation properties, it does not play a role in inference." .
<https://ontologies.semanticarts.com/gist/domainIncludes> <http://www.w3.org/2004/02/skos/core#scopeNote> "This property means the same thing as the Schema.org version, which is an rdf:Property and not compliant with OWL-DL." .
<https://ontologies.semanticarts.com/gist/domainIncludes> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2004/02/skos/core#scopeNote> .
#
# https://ontologies.semanticarts.com/gist/license
<https://ontologies.semanticarts.com/gist/license> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
#
# https://ontologies.semanticarts.com/gist/rangeIncludes
<https://ontologies.semanticarts.com/gist/rangeIncludes> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AnnotationProperty> .
<https://ontologies.semanticarts.com/gist/rangeIncludes> <http://www.w3.org/2004/02/skos/core#definition> "Relates a property to a class that constitutes (one of) the expected type(s) for values of the property." .
<https://ontologies.semanticarts.com/gist/rangeIncludes> <http://www.w3.org/2004/02/skos/core#example> "The range for the property gist:isCategorizedBy includes gist:Category." .
<https://ontologies.semanticarts.com/gist/rangeIncludes> <http://www.w3.org/2004/02/skos/core#prefLabel> "range includes" .
<https://ontologies.semanticarts.com/gist/rangeIncludes> <http://www.w3.org/2004/02/skos/core#scopeNote> "This property is used to guide the ontology user; like all annotation properties, it does not play a role in inference." .
<https://ontologies.semanticarts.com/gist/rangeIncludes> <http://www.w3.org/2004/02/skos/core#scopeNote> "This property means the same thing as the Schema.org version, which is an rdf:Property and not compliant with OWL-DL." .
<https://ontologies.semanticarts.com/gist/rangeIncludes> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2004/02/skos/core#scopeNote> .
#
#
#
# #################################################################
# #
# # Object Properties
# #
# #################################################################
#
#
# https://ontologies.semanticarts.com/gist/accepts
<https://ontologies.semanticarts.com/gist/accepts> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/accepts> <http://www.w3.org/2004/02/skos/core#definition> "The types of input messages that will be allowed." .
<https://ontologies.semanticarts.com/gist/accepts> <http://www.w3.org/2004/02/skos/core#prefLabel> "accepts" .
#
# https://ontologies.semanticarts.com/gist/affects
<https://ontologies.semanticarts.com/gist/affects> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/affects> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/isAffectedBy> .
<https://ontologies.semanticarts.com/gist/affects> <http://www.w3.org/2004/02/skos/core#definition> "The subject has, had, or will have an effect on the object." .
<https://ontologies.semanticarts.com/gist/affects> <http://www.w3.org/2004/02/skos/core#prefLabel> "affects" .
#
# https://ontologies.semanticarts.com/gist/allows
<https://ontologies.semanticarts.com/gist/allows> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/allows> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/Intention> .
<https://ontologies.semanticarts.com/gist/allows> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Behavior> .
<https://ontologies.semanticarts.com/gist/allows> <http://www.w3.org/2004/02/skos/core#definition> "The intention (say a grant) allows a particular kind of activity (for instance egress)" .
<https://ontologies.semanticarts.com/gist/allows> <http://www.w3.org/2004/02/skos/core#prefLabel> "allows" .
#
# https://ontologies.semanticarts.com/gist/comesFromAgent
<https://ontologies.semanticarts.com/gist/comesFromAgent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/comesFromAgent> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/hasParticipant> .
<https://ontologies.semanticarts.com/gist/comesFromAgent> <http://www.w3.org/2000/01/rdf-schema#range> _:genid1 .
_:genid1 <http://www.w3.org/2002/07/owl#unionOf> _:genid3 .
_:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid2 .
_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Person> .
_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Organization> .
_:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://ontologies.semanticarts.com/gist/comesFromAgent> <http://www.w3.org/2004/02/skos/core#definition> "The party that is the source of something (e.g. a message, shipment, etc.)" .
<https://ontologies.semanticarts.com/gist/comesFromAgent> <http://www.w3.org/2004/02/skos/core#prefLabel> "comes from agent" .
<https://ontologies.semanticarts.com/gist/comesFromAgent> <http://www.w3.org/2004/02/skos/core#scopeNote> "This is not the inverse of gist:goesToAgent. A message can be to someone. If we made it the inverse the person would be \"from\" the message" .
#
# https://ontologies.semanticarts.com/gist/comesFromPlace
<https://ontologies.semanticarts.com/gist/comesFromPlace> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/comesFromPlace> <http://www.w3.org/2000/01/rdf-schema#range> _:genid4 .
_:genid4 <http://www.w3.org/2002/07/owl#unionOf> _:genid6 .
_:genid6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid5 .
_:genid5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:genid5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Place> .
_:genid5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Address> .
_:genid6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://ontologies.semanticarts.com/gist/comesFromPlace> <http://www.w3.org/2004/02/skos/core#definition> "Origin" .
<https://ontologies.semanticarts.com/gist/comesFromPlace> <http://www.w3.org/2004/02/skos/core#prefLabel> "comes from place" .
#
# https://ontologies.semanticarts.com/gist/conformsTo
<https://ontologies.semanticarts.com/gist/conformsTo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/conformsTo> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Intention> .
<https://ontologies.semanticarts.com/gist/conformsTo> <http://www.w3.org/2004/02/skos/core#definition> "The subject conforms to the Object, e.g. meet an obligation, meet terms of an offer, adhere to a specification" .
<https://ontologies.semanticarts.com/gist/conformsTo> <http://www.w3.org/2004/02/skos/core#prefLabel> "conforms to" .
#
# https://ontologies.semanticarts.com/gist/containsGeographically
<https://ontologies.semanticarts.com/gist/containsGeographically> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/containsGeographically> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/isGeographicallyContainedIn> .
<https://ontologies.semanticarts.com/gist/containsGeographically> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> .
<https://ontologies.semanticarts.com/gist/containsGeographically> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/Place> .
<https://ontologies.semanticarts.com/gist/containsGeographically> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Place> .
<https://ontologies.semanticarts.com/gist/containsGeographically> <http://www.w3.org/2004/02/skos/core#definition> "Relate one place to another place that is contained within the first." .
<https://ontologies.semanticarts.com/gist/containsGeographically> <http://www.w3.org/2004/02/skos/core#prefLabel> "contains geographically" .
#
# https://ontologies.semanticarts.com/gist/contributesTo
<https://ontologies.semanticarts.com/gist/contributesTo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/contributesTo> <http://www.w3.org/2004/02/skos/core#definition> "The parts of a system contribute to the goal/ function of the whole system" .
<https://ontologies.semanticarts.com/gist/contributesTo> <http://www.w3.org/2004/02/skos/core#prefLabel> "contributes to" .
#
# https://ontologies.semanticarts.com/gist/directs
<https://ontologies.semanticarts.com/gist/directs> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/directs> <http://www.w3.org/2004/02/skos/core#definition> "The set of actuators that a controller can affect" .
<https://ontologies.semanticarts.com/gist/directs> <http://www.w3.org/2004/02/skos/core#prefLabel> "directs" .
#
# https://ontologies.semanticarts.com/gist/followsDirectly
<https://ontologies.semanticarts.com/gist/followsDirectly> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/followsDirectly> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/precedesDirectly> .
<https://ontologies.semanticarts.com/gist/followsDirectly> <http://www.w3.org/2004/02/skos/core#definition> "A generic ordering relation indicating that the subject comes immediately after the object." .
<https://ontologies.semanticarts.com/gist/followsDirectly> <http://www.w3.org/2004/02/skos/core#prefLabel> "follows directly" .
<https://ontologies.semanticarts.com/gist/followsDirectly> <http://www.w3.org/2004/02/skos/core#scopeNote> "It is safest to use this property only when the directness has a semantic correspondence with the world. Only break a direct link by inserting an intermediate item when that change corresponds to a change in the world." .
#
# https://ontologies.semanticarts.com/gist/goesToAgent
<https://ontologies.semanticarts.com/gist/goesToAgent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/goesToAgent> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/hasParticipant> .
<https://ontologies.semanticarts.com/gist/goesToAgent> <http://www.w3.org/2000/01/rdf-schema#range> _:genid7 .
_:genid7 <http://www.w3.org/2002/07/owl#unionOf> _:genid9 .
_:genid9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid8 .
_:genid8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:genid8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Person> .
_:genid8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Organization> .
_:genid9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://ontologies.semanticarts.com/gist/goesToAgent> <http://www.w3.org/2004/02/skos/core#definition> "The party that is the recipient of something (e.g. a message, shipment, etc.)" .
<https://ontologies.semanticarts.com/gist/goesToAgent> <http://www.w3.org/2004/02/skos/core#prefLabel> "goes to agent" .
<https://ontologies.semanticarts.com/gist/goesToAgent> <http://www.w3.org/2004/02/skos/core#scopeNote> "This is not the inverse of gist:comesFromAgent. A message can be from someone. If we made it the inverse the person would be \"to\" the message" .
#
# https://ontologies.semanticarts.com/gist/goesToPlace
<https://ontologies.semanticarts.com/gist/goesToPlace> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/goesToPlace> <http://www.w3.org/2000/01/rdf-schema#range> _:genid10 .
_:genid10 <http://www.w3.org/2002/07/owl#unionOf> _:genid12 .
_:genid12 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid11 .
_:genid11 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:genid11 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Place> .
_:genid11 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid12 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Address> .
_:genid12 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid10 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://ontologies.semanticarts.com/gist/goesToPlace> <http://www.w3.org/2004/02/skos/core#definition> "Destination" .
<https://ontologies.semanticarts.com/gist/goesToPlace> <http://www.w3.org/2004/02/skos/core#prefLabel> "goes to place" .
#
# https://ontologies.semanticarts.com/gist/governs
<https://ontologies.semanticarts.com/gist/governs> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/governs> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/isGovernedBy> .
<https://ontologies.semanticarts.com/gist/governs> <http://www.w3.org/2000/01/rdf-schema#domain> _:genid13 .
_:genid13 <http://www.w3.org/2002/07/owl#unionOf> _:genid17 .
_:genid17 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid16 .
_:genid16 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid15 .
_:genid15 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid14 .
_:genid14 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:genid14 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Template> .
_:genid14 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid15 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Person> .
_:genid15 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid16 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Organization> .
_:genid16 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid17 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Intention> .
_:genid17 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid13 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://ontologies.semanticarts.com/gist/governs> <http://www.w3.org/2000/01/rdf-schema#range> _:genid18 .
_:genid18 <http://www.w3.org/2002/07/owl#unionOf> _:genid27 .
_:genid27 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid26 .
_:genid26 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid25 .
_:genid25 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid24 .
_:genid24 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid23 .
_:genid23 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid22 .
_:genid22 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid21 .
_:genid21 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid20 .
_:genid20 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid19 .
_:genid19 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:genid19 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/PhysicalSubstance> .
_:genid19 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid20 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/PhysicalIdentifiableItem> .
_:genid20 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid21 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Person> .
_:genid21 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid22 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Organization> .
_:genid22 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid23 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Intention> .
_:genid23 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid24 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/IntellectualProperty> .
_:genid24 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid25 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/GeoRegion> .
_:genid25 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid26 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Content> .
_:genid26 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid27 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Category> .
_:genid27 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid18 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://ontologies.semanticarts.com/gist/governs> <http://www.w3.org/2004/02/skos/core#definition> "The subject controls or inhibits the object in some way" .
<https://ontologies.semanticarts.com/gist/governs> <http://www.w3.org/2004/02/skos/core#prefLabel> "governs" .
#
# https://ontologies.semanticarts.com/gist/hasAddress
<https://ontologies.semanticarts.com/gist/hasAddress> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasAddress> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Address> .
<https://ontologies.semanticarts.com/gist/hasAddress> <http://www.w3.org/2004/02/skos/core#definition> "Relates the subject to its physical or virtual address." .
<https://ontologies.semanticarts.com/gist/hasAddress> <http://www.w3.org/2004/02/skos/core#example> "The street address of a building; the email address of a person." .
<https://ontologies.semanticarts.com/gist/hasAddress> <http://www.w3.org/2004/02/skos/core#prefLabel> "has address" .
#
# https://ontologies.semanticarts.com/gist/hasAltitude
<https://ontologies.semanticarts.com/gist/hasAltitude> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasAltitude> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/GeoPoint> .
<https://ontologies.semanticarts.com/gist/hasAltitude> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Extent> .
<https://ontologies.semanticarts.com/gist/hasAltitude> <http://www.w3.org/2004/02/skos/core#definition> "Distance above sea level" .
<https://ontologies.semanticarts.com/gist/hasAltitude> <http://www.w3.org/2004/02/skos/core#prefLabel> "has altitude" .
#
# https://ontologies.semanticarts.com/gist/hasBaseUnit
<https://ontologies.semanticarts.com/gist/hasBaseUnit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasBaseUnit> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/hasStandardUnit> .
<https://ontologies.semanticarts.com/gist/hasBaseUnit> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/UnitOfMeasure> .
<https://ontologies.semanticarts.com/gist/hasBaseUnit> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/BaseUnit> .
<https://ontologies.semanticarts.com/gist/hasBaseUnit> <http://www.w3.org/2004/02/skos/core#definition> "Relates a UnitOfMeasure to its BaseUnit. This indicates what kind of Unit something is." .
<https://ontologies.semanticarts.com/gist/hasBaseUnit> <http://www.w3.org/2004/02/skos/core#example> "Saying that a furlong hasBaseUnit meter says it is a DistanceUnit." .
<https://ontologies.semanticarts.com/gist/hasBaseUnit> <http://www.w3.org/2004/02/skos/core#prefLabel> "has base unit" .
#
# https://ontologies.semanticarts.com/gist/hasBiologicalParent
<https://ontologies.semanticarts.com/gist/hasBiologicalParent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasBiologicalParent> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/LivingThing> .
<https://ontologies.semanticarts.com/gist/hasBiologicalParent> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/LivingThing> .
<https://ontologies.semanticarts.com/gist/hasBiologicalParent> <http://www.w3.org/2004/02/skos/core#definition> "Relates a living thing to its biological parent." .
<https://ontologies.semanticarts.com/gist/hasBiologicalParent> <http://www.w3.org/2004/02/skos/core#prefLabel> "has biological parent" .
#
# https://ontologies.semanticarts.com/gist/hasCommunicationAddress
<https://ontologies.semanticarts.com/gist/hasCommunicationAddress> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasCommunicationAddress> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/hasAddress> .
<https://ontologies.semanticarts.com/gist/hasCommunicationAddress> <http://www.w3.org/2000/01/rdf-schema#domain> _:genid28 .
_:genid28 <http://www.w3.org/2002/07/owl#unionOf> _:genid30 .
_:genid30 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid29 .
_:genid29 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:genid29 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Person> .
_:genid29 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid30 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Organization> .
_:genid30 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid28 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://ontologies.semanticarts.com/gist/hasCommunicationAddress> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Address> .
<https://ontologies.semanticarts.com/gist/hasCommunicationAddress> <http://www.w3.org/2004/02/skos/core#definition> "Relates a Person or Organization to where they can receive messages, including postal addresses, fax numbers, phone numbers, email, web site, etc." .
<https://ontologies.semanticarts.com/gist/hasCommunicationAddress> <http://www.w3.org/2004/02/skos/core#prefLabel> "has communication address" .
#
# https://ontologies.semanticarts.com/gist/hasDenominator
<https://ontologies.semanticarts.com/gist/hasDenominator> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasDenominator> <http://www.w3.org/2004/02/skos/core#definition> "Relates a RatioUnit such as meters/second to the denominator Unit (e.g. second)." .
<https://ontologies.semanticarts.com/gist/hasDenominator> <http://www.w3.org/2004/02/skos/core#prefLabel> "has denominator" .
#
# https://ontologies.semanticarts.com/gist/hasDirectPart
<https://ontologies.semanticarts.com/gist/hasDirectPart> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasDirectPart> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/hasPart> .
<https://ontologies.semanticarts.com/gist/hasDirectPart> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/isDirectPartOf> .
<https://ontologies.semanticarts.com/gist/hasDirectPart> <http://www.w3.org/2004/02/skos/core#definition> "The relationship between a whole and a part where the part has independent existence." .
<https://ontologies.semanticarts.com/gist/hasDirectPart> <http://www.w3.org/2004/02/skos/core#prefLabel> "has direct part" .
<https://ontologies.semanticarts.com/gist/hasDirectPart> <http://www.w3.org/2004/02/skos/core#scopeNote> "It is safest to use this property when there is semantic directness inherent in the relationship, rather than choosing appropriate granularity. For example, a spark plug is a direct part of an engine block; there cannot be any intermediate parts. Beware of making a hasDirectPart assertion and then inserting an intermediate part; this will result in making an asserted triple false even though there was no change in the world." .
<https://ontologies.semanticarts.com/gist/hasDirectPart> <http://www.w3.org/2004/02/skos/core#scopeNote> "No cascading delete." .
<https://ontologies.semanticarts.com/gist/hasDirectPart> <http://www.w3.org/2004/02/skos/core#scopeNote> "Use this property to directly associate a part with the whole. gist:hasPart is the transitive version." .
#
# https://ontologies.semanticarts.com/gist/hasDirectSubCategory
<https://ontologies.semanticarts.com/gist/hasDirectSubCategory> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasDirectSubCategory> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/hasSubCategory> .
<https://ontologies.semanticarts.com/gist/hasDirectSubCategory> <http://www.w3.org/2004/02/skos/core#definition> "The subject category is a supercategory of the object category. This property defines the direct links in a category hierarchy; no intermediate categories can exist between the direct links." .
<https://ontologies.semanticarts.com/gist/hasDirectSubCategory> <http://www.w3.org/2004/02/skos/core#prefLabel> "has direct subcategory" .
<https://ontologies.semanticarts.com/gist/hasDirectSubCategory> <http://www.w3.org/2004/02/skos/core#scopeNote> "Unlike its superproperty gist:hasSubCategory, this property is not transitive. It is essentially the same as the non-transitive skos:narrower, using gist:Category rather than skos:Concept." .
#
# https://ontologies.semanticarts.com/gist/hasDirectSubTask
<https://ontologies.semanticarts.com/gist/hasDirectSubTask> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasDirectSubTask> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/hasSubTask> .
<https://ontologies.semanticarts.com/gist/hasDirectSubTask> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/isDirectSubTaskOf> .
<https://ontologies.semanticarts.com/gist/hasDirectSubTask> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/Task> .
<https://ontologies.semanticarts.com/gist/hasDirectSubTask> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Task> .
<https://ontologies.semanticarts.com/gist/hasDirectSubTask> <http://www.w3.org/2004/02/skos/core#definition> "Immediate child task" .
<https://ontologies.semanticarts.com/gist/hasDirectSubTask> <http://www.w3.org/2004/02/skos/core#prefLabel> "has direct sub task" .
#
# https://ontologies.semanticarts.com/gist/hasDirectSuperCategory
<https://ontologies.semanticarts.com/gist/hasDirectSuperCategory> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasDirectSuperCategory> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/hasSuperCategory> .
<https://ontologies.semanticarts.com/gist/hasDirectSuperCategory> <http://www.w3.org/2004/02/skos/core#definition> "The subject category is a subcategory of the object category. This property defines the direct links in a category hierarchy; no intermediate categories can exist between the direct links." .
<https://ontologies.semanticarts.com/gist/hasDirectSuperCategory> <http://www.w3.org/2004/02/skos/core#prefLabel> "has direct supercategory" .
<https://ontologies.semanticarts.com/gist/hasDirectSuperCategory> <http://www.w3.org/2004/02/skos/core#scopeNote> "Unlike its superproperty gist:hasSuperCategory, this property is not transitive. It is essentially the same as the non-transitive skos:broader, using gist:Category rather than skos:Concept." .
#
# https://ontologies.semanticarts.com/gist/hasGiver
<https://ontologies.semanticarts.com/gist/hasGiver> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasGiver> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/hasParticipant> .
<https://ontologies.semanticarts.com/gist/hasGiver> <http://www.w3.org/2002/07/owl#propertyDisjointWith> <https://ontologies.semanticarts.com/gist/hasRecipient> .
<https://ontologies.semanticarts.com/gist/hasGiver> <http://www.w3.org/2004/02/skos/core#definition> "The active party, the one with the obligation or the one initiating the transfer" .
<https://ontologies.semanticarts.com/gist/hasGiver> <http://www.w3.org/2004/02/skos/core#prefLabel> "has giver" .
#
# https://ontologies.semanticarts.com/gist/hasGoal
<https://ontologies.semanticarts.com/gist/hasGoal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasGoal> <http://www.w3.org/2004/02/skos/core#definition> "The reason for doing something" .
<https://ontologies.semanticarts.com/gist/hasGoal> <http://www.w3.org/2004/02/skos/core#prefLabel> "has goal" .
#
# https://ontologies.semanticarts.com/gist/hasIncumbent
<https://ontologies.semanticarts.com/gist/hasIncumbent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasIncumbent> <http://www.w3.org/2004/02/skos/core#definition> "What equipment or person is currently in this node. Note to create a temporal view make a TemporalRelation for this property" .
<https://ontologies.semanticarts.com/gist/hasIncumbent> <http://www.w3.org/2004/02/skos/core#prefLabel> "has incumbent" .
#
# https://ontologies.semanticarts.com/gist/hasMagnitude
<https://ontologies.semanticarts.com/gist/hasMagnitude> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasMagnitude> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Magnitude> .
<https://ontologies.semanticarts.com/gist/hasMagnitude> <http://www.w3.org/2004/02/skos/core#definition> "To have a comparable numeric value. Each magnitude has a unit." .
<https://ontologies.semanticarts.com/gist/hasMagnitude> <http://www.w3.org/2004/02/skos/core#prefLabel> "has magnitude" .
#
# https://ontologies.semanticarts.com/gist/hasMember
<https://ontologies.semanticarts.com/gist/hasMember> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasMember> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/isMemberOf> .
<https://ontologies.semanticarts.com/gist/hasMember> <http://www.w3.org/2004/02/skos/core#definition> "Relates a Collection to its member individuals." .
<https://ontologies.semanticarts.com/gist/hasMember> <http://www.w3.org/2004/02/skos/core#prefLabel> "has member" .
<https://ontologies.semanticarts.com/gist/hasMember> <https://ontologies.semanticarts.com/gist/domainIncludes> <https://ontologies.semanticarts.com/gist/Collection> .
#
# https://ontologies.semanticarts.com/gist/hasMultiplicand
<https://ontologies.semanticarts.com/gist/hasMultiplicand> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasMultiplicand> <http://www.w3.org/2004/02/skos/core#definition> "Relates a ProductUnit such as square mile to the second of two units multiplied together (e.g. mile)." .
<https://ontologies.semanticarts.com/gist/hasMultiplicand> <http://www.w3.org/2004/02/skos/core#prefLabel> "has multiplicand" .
#
# https://ontologies.semanticarts.com/gist/hasMultiplier
<https://ontologies.semanticarts.com/gist/hasMultiplier> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasMultiplier> <http://www.w3.org/2004/02/skos/core#definition> "Relates a ProductUnit such as square mile to the first of two units multiplied together (e.g. mile)" .
<https://ontologies.semanticarts.com/gist/hasMultiplier> <http://www.w3.org/2004/02/skos/core#prefLabel> "has multiplier" .
#
# https://ontologies.semanticarts.com/gist/hasNavigationalChild
<https://ontologies.semanticarts.com/gist/hasNavigationalChild> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasNavigationalChild> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/hasNavigationalParent> .
<https://ontologies.semanticarts.com/gist/hasNavigationalChild> <http://www.w3.org/2004/02/skos/core#definition> "Relates a parent category to a child category in an informal (e.g., faceted) hierarchy." .
<https://ontologies.semanticarts.com/gist/hasNavigationalChild> <http://www.w3.org/2004/02/skos/core#example> "Refrigerator handles are not refrigerators, but it may be useful to represent their relationship hierarchically for a faceted UI filter." .
<https://ontologies.semanticarts.com/gist/hasNavigationalChild> <http://www.w3.org/2004/02/skos/core#prefLabel> "has navigational child" .
#
# https://ontologies.semanticarts.com/gist/hasNavigationalParent
<https://ontologies.semanticarts.com/gist/hasNavigationalParent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasNavigationalParent> <http://www.w3.org/2004/02/skos/core#definition> "Relates a child category to a parent category in an informal (e.g., faceted) hierarchy." .
<https://ontologies.semanticarts.com/gist/hasNavigationalParent> <http://www.w3.org/2004/02/skos/core#example> "Refrigerator handles are not refrigerators, but it may be useful to represent their relationship hierarchically for a faceted UI filter." .
<https://ontologies.semanticarts.com/gist/hasNavigationalParent> <http://www.w3.org/2004/02/skos/core#prefLabel> "has navigational parent" .
#
# https://ontologies.semanticarts.com/gist/hasNumerator
<https://ontologies.semanticarts.com/gist/hasNumerator> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasNumerator> <http://www.w3.org/2004/02/skos/core#definition> "Relates a RatioUnit such as meter(s)/second to the numerator Unit (e.g. meter)." .
<https://ontologies.semanticarts.com/gist/hasNumerator> <http://www.w3.org/2004/02/skos/core#prefLabel> "has numerator" .
#
# https://ontologies.semanticarts.com/gist/hasOffsetToUniversal
<https://ontologies.semanticarts.com/gist/hasOffsetToUniversal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasOffsetToUniversal> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/TimeZone> .
<https://ontologies.semanticarts.com/gist/hasOffsetToUniversal> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Duration> .
<https://ontologies.semanticarts.com/gist/hasOffsetToUniversal> <http://www.w3.org/2004/02/skos/core#definition> "How many hours the time zone is off GMT" .
<https://ontologies.semanticarts.com/gist/hasOffsetToUniversal> <http://www.w3.org/2004/02/skos/core#prefLabel> "has offset to universal" .
#
# https://ontologies.semanticarts.com/gist/hasPart
<https://ontologies.semanticarts.com/gist/hasPart> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasPart> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/isPartOf> .
<https://ontologies.semanticarts.com/gist/hasPart> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> .
<https://ontologies.semanticarts.com/gist/hasPart> <http://www.w3.org/2004/02/skos/core#definition> "The transitive version of gist:hasDirectPart" .
<https://ontologies.semanticarts.com/gist/hasPart> <http://www.w3.org/2004/02/skos/core#prefLabel> "has part" .
#
# https://ontologies.semanticarts.com/gist/hasParticipant
<https://ontologies.semanticarts.com/gist/hasParticipant> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasParticipant> <http://www.w3.org/2004/02/skos/core#definition> "Relates something (e.g. an agreement) to things that play a role, or take part or are otherwise involved in some way." .
<https://ontologies.semanticarts.com/gist/hasParticipant> <http://www.w3.org/2004/02/skos/core#example> "An event of transferring money has a participating account that receives the money." .
<https://ontologies.semanticarts.com/gist/hasParticipant> <http://www.w3.org/2004/02/skos/core#prefLabel> "has participant" .
<https://ontologies.semanticarts.com/gist/hasParticipant> <http://www.w3.org/2004/02/skos/core#scopeNote> "The thing with participants will often be an agreement, event or obligation." .
<https://ontologies.semanticarts.com/gist/hasParticipant> <http://www.w3.org/2004/02/skos/core#scopeNote> "This is intended as an abstract property. Only its subproperties will be directly used." .
#
# https://ontologies.semanticarts.com/gist/hasParty
<https://ontologies.semanticarts.com/gist/hasParty> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasParty> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/hasParticipant> .
<https://ontologies.semanticarts.com/gist/hasParty> <http://www.w3.org/2000/01/rdf-schema#range> _:genid31 .
_:genid31 <http://www.w3.org/2002/07/owl#unionOf> _:genid33 .
_:genid33 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid32 .
_:genid32 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:genid32 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Person> .
_:genid32 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid33 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Organization> .
_:genid33 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid31 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://ontologies.semanticarts.com/gist/hasParty> <http://www.w3.org/2004/02/skos/core#definition> "The people or organizations participating in an event, agreement or obligation" .
<https://ontologies.semanticarts.com/gist/hasParty> <http://www.w3.org/2004/02/skos/core#example> "For loan agreements, one might create hasLender and hasBorrower as subproperties of hasParty." .
<https://ontologies.semanticarts.com/gist/hasParty> <http://www.w3.org/2004/02/skos/core#prefLabel> "has party" .
#
# https://ontologies.semanticarts.com/gist/hasPhysicalLocation
<https://ontologies.semanticarts.com/gist/hasPhysicalLocation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasPhysicalLocation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> .
<https://ontologies.semanticarts.com/gist/hasPhysicalLocation> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Place> .
<https://ontologies.semanticarts.com/gist/hasPhysicalLocation> <http://www.w3.org/2004/02/skos/core#definition> "Where something is located" .
<https://ontologies.semanticarts.com/gist/hasPhysicalLocation> <http://www.w3.org/2004/02/skos/core#prefLabel> "has physical location" .
#
# https://ontologies.semanticarts.com/gist/hasPrecision
<https://ontologies.semanticarts.com/gist/hasPrecision> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasPrecision> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Magnitude> .
<https://ontologies.semanticarts.com/gist/hasPrecision> <http://www.w3.org/2004/02/skos/core#definition> "Links a Magnitude to the degree of accuracy of the numeric value. This allows for fuzzy numbers. All magnitudes have a precision. Usually we don't record them. When we do this, it will be a value whose extent covers 2 standard deviations around the stated magnitude" .
<https://ontologies.semanticarts.com/gist/hasPrecision> <http://www.w3.org/2004/02/skos/core#example> "Temperature precise to tenth of a degree C; length precise to the nearest centimeter." .
<https://ontologies.semanticarts.com/gist/hasPrecision> <http://www.w3.org/2004/02/skos/core#prefLabel> "has precision" .
#
# https://ontologies.semanticarts.com/gist/hasRecipient
<https://ontologies.semanticarts.com/gist/hasRecipient> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasRecipient> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/hasParticipant> .
<https://ontologies.semanticarts.com/gist/hasRecipient> <http://www.w3.org/2004/02/skos/core#definition> "The recipient" .
<https://ontologies.semanticarts.com/gist/hasRecipient> <http://www.w3.org/2004/02/skos/core#prefLabel> "has recipient" .
#
# https://ontologies.semanticarts.com/gist/hasStandardUnit
<https://ontologies.semanticarts.com/gist/hasStandardUnit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasStandardUnit> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/UnitOfMeasure> .
<https://ontologies.semanticarts.com/gist/hasStandardUnit> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/CoherentUnit> .
<https://ontologies.semanticarts.com/gist/hasStandardUnit> <http://www.w3.org/2004/02/skos/core#definition> "For a complex unit refers to a unit that has all the component parts in SI" .
<https://ontologies.semanticarts.com/gist/hasStandardUnit> <http://www.w3.org/2004/02/skos/core#prefLabel> "has standard unit" .
#
# https://ontologies.semanticarts.com/gist/hasSubCategory
<https://ontologies.semanticarts.com/gist/hasSubCategory> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasSubCategory> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/hasSuperCategory> .
<https://ontologies.semanticarts.com/gist/hasSubCategory> <http://www.w3.org/2004/02/skos/core#definition> "The subject category is inclusive of, or broader than, the object category. Everything categorized by the subcategory can be inferred to be categorized by the supercategory." .
<https://ontologies.semanticarts.com/gist/hasSubCategory> <http://www.w3.org/2004/02/skos/core#prefLabel> "has subcategory" .
<https://ontologies.semanticarts.com/gist/hasSubCategory> <http://www.w3.org/2004/02/skos/core#scopeNote> "This is essentially the same as skos:narrowerTransitive, using gist:Category instead of skos:Concept." .
#
# https://ontologies.semanticarts.com/gist/hasSubTask
<https://ontologies.semanticarts.com/gist/hasSubTask> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasSubTask> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/isSubTaskOf> .
<https://ontologies.semanticarts.com/gist/hasSubTask> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> .
<https://ontologies.semanticarts.com/gist/hasSubTask> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/Task> .
<https://ontologies.semanticarts.com/gist/hasSubTask> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Task> .
<https://ontologies.semanticarts.com/gist/hasSubTask> <http://www.w3.org/2004/02/skos/core#definition> "A task that is part of a larger task. The time frame of the subtasks may overlap but may not extend beyond the time frame of the parent task. A subtask may be part of more than one parent task." .
<https://ontologies.semanticarts.com/gist/hasSubTask> <http://www.w3.org/2004/02/skos/core#prefLabel> "has subtask" .
#
# https://ontologies.semanticarts.com/gist/hasSuperCategory
<https://ontologies.semanticarts.com/gist/hasSuperCategory> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasSuperCategory> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> .
<https://ontologies.semanticarts.com/gist/hasSuperCategory> <http://www.w3.org/2004/02/skos/core#definition> "The subject category is included by, or narrower than, the object category. Everything categorized by the subcategory can be inferred to be categorized by the supercategory." .
<https://ontologies.semanticarts.com/gist/hasSuperCategory> <http://www.w3.org/2004/02/skos/core#prefLabel> "has supercategory" .
<https://ontologies.semanticarts.com/gist/hasSuperCategory> <http://www.w3.org/2004/02/skos/core#scopeNote> "This is essentially the same as skos:broaderTransitive, using gist:Category instead of skos:Concept." .
#
# https://ontologies.semanticarts.com/gist/hasUniqueNavigationalParent
<https://ontologies.semanticarts.com/gist/hasUniqueNavigationalParent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasUniqueNavigationalParent> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/hasNavigationalParent> .
<https://ontologies.semanticarts.com/gist/hasUniqueNavigationalParent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
<https://ontologies.semanticarts.com/gist/hasUniqueNavigationalParent> <http://www.w3.org/2004/02/skos/core#definition> "Relates a subject category to a unique parent category in an informal (e.g., faceted) hierarchy." .
<https://ontologies.semanticarts.com/gist/hasUniqueNavigationalParent> <http://www.w3.org/2004/02/skos/core#prefLabel> "has unique navigational parent" .
#
# https://ontologies.semanticarts.com/gist/hasUniqueSuperCategory
<https://ontologies.semanticarts.com/gist/hasUniqueSuperCategory> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasUniqueSuperCategory> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/hasSuperCategory> .
<https://ontologies.semanticarts.com/gist/hasUniqueSuperCategory> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
<https://ontologies.semanticarts.com/gist/hasUniqueSuperCategory> <http://www.w3.org/2004/02/skos/core#definition> "Used for taxos that must have single parents" .
<https://ontologies.semanticarts.com/gist/hasUniqueSuperCategory> <http://www.w3.org/2004/02/skos/core#prefLabel> "has unique supercategory" .
#
# https://ontologies.semanticarts.com/gist/hasUnitOfMeasure
<https://ontologies.semanticarts.com/gist/hasUnitOfMeasure> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasUnitOfMeasure> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/Magnitude> .
<https://ontologies.semanticarts.com/gist/hasUnitOfMeasure> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/UnitOfMeasure> .
<https://ontologies.semanticarts.com/gist/hasUnitOfMeasure> <http://www.w3.org/2004/02/skos/core#definition> "Which unit of measure you are using. All measures are expressed in some unit of measure, even if we don't know what it is initially." .
<https://ontologies.semanticarts.com/gist/hasUnitOfMeasure> <http://www.w3.org/2004/02/skos/core#prefLabel> "has unit of measure" .
#
# https://ontologies.semanticarts.com/gist/hasViableRange
<https://ontologies.semanticarts.com/gist/hasViableRange> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/hasViableRange> <http://www.w3.org/2004/02/skos/core#definition> "The area over which the sensor can sense (might be a small geospatial area or a specific wire in a circuit)" .
<https://ontologies.semanticarts.com/gist/hasViableRange> <http://www.w3.org/2004/02/skos/core#prefLabel> "has viable range" .
#
# https://ontologies.semanticarts.com/gist/identifies
<https://ontologies.semanticarts.com/gist/identifies> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/identifies> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/isIdentifiedBy> .
<https://ontologies.semanticarts.com/gist/identifies> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
<https://ontologies.semanticarts.com/gist/identifies> <http://www.w3.org/2004/02/skos/core#definition> "The thing the identifier refers to." .
<https://ontologies.semanticarts.com/gist/identifies> <http://www.w3.org/2004/02/skos/core#prefLabel> "identifies" .
#
# https://ontologies.semanticarts.com/gist/isAbout
<https://ontologies.semanticarts.com/gist/isAbout> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isAbout> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/isDescribedIn> .
<https://ontologies.semanticarts.com/gist/isAbout> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/Content> .
<https://ontologies.semanticarts.com/gist/isAbout> <http://www.w3.org/2004/02/skos/core#definition> "Subject matter of a document." .
<https://ontologies.semanticarts.com/gist/isAbout> <http://www.w3.org/2004/02/skos/core#prefLabel> "is about" .
#
# https://ontologies.semanticarts.com/gist/isAffectedBy
<https://ontologies.semanticarts.com/gist/isAffectedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isAffectedBy> <http://www.w3.org/2004/02/skos/core#definition> "Where the effect came from" .
<https://ontologies.semanticarts.com/gist/isAffectedBy> <http://www.w3.org/2004/02/skos/core#prefLabel> "is affected by" .
#
# https://ontologies.semanticarts.com/gist/isAllocatedBy
<https://ontologies.semanticarts.com/gist/isAllocatedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isAllocatedBy> <http://www.w3.org/2000/01/rdf-schema#range> _:genid34 .
_:genid34 <http://www.w3.org/2002/07/owl#unionOf> _:genid37 .
_:genid37 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid36 .
_:genid36 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid35 .
_:genid35 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:genid35 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Person> .
_:genid35 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid36 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Organization> .
_:genid36 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid37 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/IntellectualProperty> .
_:genid37 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid34 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://ontologies.semanticarts.com/gist/isAllocatedBy> <http://www.w3.org/2004/02/skos/core#definition> "Connection between an ID and the thing that minted the ID. It may be a person or organization, or could be an algorithm (next available or random number generator)" .
<https://ontologies.semanticarts.com/gist/isAllocatedBy> <http://www.w3.org/2004/02/skos/core#prefLabel> "is allocated by" .
#
# https://ontologies.semanticarts.com/gist/isAspectOf
<https://ontologies.semanticarts.com/gist/isAspectOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isAspectOf> <http://www.w3.org/2004/02/skos/core#definition> "What this aspect is referring to" .
<https://ontologies.semanticarts.com/gist/isAspectOf> <http://www.w3.org/2004/02/skos/core#prefLabel> "is aspect of" .
#
# https://ontologies.semanticarts.com/gist/isBasedOn
<https://ontologies.semanticarts.com/gist/isBasedOn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isBasedOn> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/isBasisFor> .
<https://ontologies.semanticarts.com/gist/isBasedOn> <http://www.w3.org/2004/02/skos/core#definition> "The Object is a foundation for, a starting point for, gave rise to or justifies the Subject" .
<https://ontologies.semanticarts.com/gist/isBasedOn> <http://www.w3.org/2004/02/skos/core#example> "A document is based on a document template. A metric computing the average income of a population is based on the metric for individual income." .
<https://ontologies.semanticarts.com/gist/isBasedOn> <http://www.w3.org/2004/02/skos/core#prefLabel> "is based on" .
#
# https://ontologies.semanticarts.com/gist/isBasisFor
<https://ontologies.semanticarts.com/gist/isBasisFor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isBasisFor> <http://www.w3.org/2004/02/skos/core#definition> "The Subject is a foundation for, a starting point for, gave rise to or justifies the Object" .
<https://ontologies.semanticarts.com/gist/isBasisFor> <http://www.w3.org/2004/02/skos/core#example> "The reason, law, rule, etc. behind an action or decision. The desire to create a community around the data-centric revolution/movement was the basis for initiating the Data-Centric Architecture Summit in 2018. The unabridged dictionary was the basis for the abridged dictionary." .
<https://ontologies.semanticarts.com/gist/isBasisFor> <http://www.w3.org/2004/02/skos/core#prefLabel> "is basis for" .
#
# https://ontologies.semanticarts.com/gist/isCategorizedBy
<https://ontologies.semanticarts.com/gist/isCategorizedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isCategorizedBy> <http://www.w3.org/2004/02/skos/core#definition> "Points to a taxonomy item or other less formally defined class." .
<https://ontologies.semanticarts.com/gist/isCategorizedBy> <http://www.w3.org/2004/02/skos/core#prefLabel> "is categorized by" .
<https://ontologies.semanticarts.com/gist/isCategorizedBy> <https://ontologies.semanticarts.com/gist/rangeIncludes> <https://ontologies.semanticarts.com/gist/Category> .
#
# https://ontologies.semanticarts.com/gist/isCharacterizedAs
<https://ontologies.semanticarts.com/gist/isCharacterizedAs> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isCharacterizedAs> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/Event> .
<https://ontologies.semanticarts.com/gist/isCharacterizedAs> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Behavior> .
<https://ontologies.semanticarts.com/gist/isCharacterizedAs> <http://www.w3.org/2004/02/skos/core#definition> "A way to categorize a behavior." .
<https://ontologies.semanticarts.com/gist/isCharacterizedAs> <http://www.w3.org/2004/02/skos/core#prefLabel> "is characterized as" .
#
# https://ontologies.semanticarts.com/gist/isConnectedTo
<https://ontologies.semanticarts.com/gist/isConnectedTo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isConnectedTo> <http://www.w3.org/2004/02/skos/core#definition> "A non-owning, non-causal, non-subordinate (i.e., peer-to-peer) relationship." .
<https://ontologies.semanticarts.com/gist/isConnectedTo> <http://www.w3.org/2004/02/skos/core#prefLabel> "is connected to" .
#
# https://ontologies.semanticarts.com/gist/isDescribedIn
<https://ontologies.semanticarts.com/gist/isDescribedIn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isDescribedIn> <http://www.w3.org/2004/02/skos/core#definition> "Document the subject matter appeared in" .
<https://ontologies.semanticarts.com/gist/isDescribedIn> <http://www.w3.org/2004/02/skos/core#prefLabel> "is described in" .
#
# https://ontologies.semanticarts.com/gist/isDirectPartOf
<https://ontologies.semanticarts.com/gist/isDirectPartOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isDirectPartOf> <http://www.w3.org/2004/02/skos/core#definition> "The relationship between a part and a whole where the part has independent existence." .
<https://ontologies.semanticarts.com/gist/isDirectPartOf> <http://www.w3.org/2004/02/skos/core#prefLabel> "is direct part of" .
<https://ontologies.semanticarts.com/gist/isDirectPartOf> <http://www.w3.org/2004/02/skos/core#scopeNote> "It is safest to use this property when there is semantic directness inherent in the relationship, rather than choosing appropriate granularity. For example, a spark plug is a direct part of an engine block; there cannot be any intermediate parts. Beware of making a directPartOf assertion and then inserting an intermediate part; this will result in making an asserted triple false even though there was no change in the world." .
<https://ontologies.semanticarts.com/gist/isDirectPartOf> <http://www.w3.org/2004/02/skos/core#scopeNote> "Use this property to directly associate a part with the whole. partOf is the transitive version." .
#
# https://ontologies.semanticarts.com/gist/isDirectSubTaskOf
<https://ontologies.semanticarts.com/gist/isDirectSubTaskOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isDirectSubTaskOf> <http://www.w3.org/2004/02/skos/core#definition> "Immediate parent task" .
<https://ontologies.semanticarts.com/gist/isDirectSubTaskOf> <http://www.w3.org/2004/02/skos/core#prefLabel> "is direct subtask of" .
#
# https://ontologies.semanticarts.com/gist/isExpressedIn
<https://ontologies.semanticarts.com/gist/isExpressedIn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isExpressedIn> <http://www.w3.org/2004/02/skos/core#definition> "The language something was expressed in" .
<https://ontologies.semanticarts.com/gist/isExpressedIn> <http://www.w3.org/2004/02/skos/core#prefLabel> "is expressed in" .
#
# https://ontologies.semanticarts.com/gist/isGeographicallyContainedIn
<https://ontologies.semanticarts.com/gist/isGeographicallyContainedIn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isGeographicallyContainedIn> <http://www.w3.org/2004/02/skos/core#definition> "Relates one place to another place that contains the first." .
<https://ontologies.semanticarts.com/gist/isGeographicallyContainedIn> <http://www.w3.org/2004/02/skos/core#prefLabel> "is geographically contained in" .
#
# https://ontologies.semanticarts.com/gist/isGeographicallyOccupiedBy
<https://ontologies.semanticarts.com/gist/isGeographicallyOccupiedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isGeographicallyOccupiedBy> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/occupiesGeographically> .
<https://ontologies.semanticarts.com/gist/isGeographicallyOccupiedBy> <http://www.w3.org/2004/02/skos/core#definition> "What is in the location" .
<https://ontologies.semanticarts.com/gist/isGeographicallyOccupiedBy> <http://www.w3.org/2004/02/skos/core#prefLabel> "is geographically occupied by" .
#
# https://ontologies.semanticarts.com/gist/isGeographicallyPermanentlyOccupiedBy
<https://ontologies.semanticarts.com/gist/isGeographicallyPermanentlyOccupiedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isGeographicallyPermanentlyOccupiedBy> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/occupiesGeographicallyPermanently> .
<https://ontologies.semanticarts.com/gist/isGeographicallyPermanentlyOccupiedBy> <http://www.w3.org/2004/02/skos/core#definition> "What is in the fixed location" .
<https://ontologies.semanticarts.com/gist/isGeographicallyPermanentlyOccupiedBy> <http://www.w3.org/2004/02/skos/core#prefLabel> "is geographically permanently occupied by" .
#
# https://ontologies.semanticarts.com/gist/isGovernedBy
<https://ontologies.semanticarts.com/gist/isGovernedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isGovernedBy> <http://www.w3.org/2004/02/skos/core#definition> "A reference from the thing being governed to the governor" .
<https://ontologies.semanticarts.com/gist/isGovernedBy> <http://www.w3.org/2004/02/skos/core#prefLabel> "is governed by" .
#
# https://ontologies.semanticarts.com/gist/isIdentifiedBy
<https://ontologies.semanticarts.com/gist/isIdentifiedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isIdentifiedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#InverseFunctionalProperty> .
<https://ontologies.semanticarts.com/gist/isIdentifiedBy> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/ID> .
<https://ontologies.semanticarts.com/gist/isIdentifiedBy> <http://www.w3.org/2004/02/skos/core#definition> "This is like a URI: a thing can have more than one ID, but each of the IDs must refer to a unique thing." .
<https://ontologies.semanticarts.com/gist/isIdentifiedBy> <http://www.w3.org/2004/02/skos/core#prefLabel> "is identified by" .
#
# https://ontologies.semanticarts.com/gist/isMadeUpOf
<https://ontologies.semanticarts.com/gist/isMadeUpOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isMadeUpOf> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/PhysicalSubstance> .
<https://ontologies.semanticarts.com/gist/isMadeUpOf> <http://www.w3.org/2004/02/skos/core#definition> "Relates something to a substance that it is made up of." .
<https://ontologies.semanticarts.com/gist/isMadeUpOf> <http://www.w3.org/2004/02/skos/core#example> "The vase is made up of clay. Water is made up of hydrogen and oxygen." .
<https://ontologies.semanticarts.com/gist/isMadeUpOf> <http://www.w3.org/2004/02/skos/core#prefLabel> "is made up of" .
#
# https://ontologies.semanticarts.com/gist/isMemberOf
<https://ontologies.semanticarts.com/gist/isMemberOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isMemberOf> <http://www.w3.org/2004/02/skos/core#definition> "What group the member is in" .
<https://ontologies.semanticarts.com/gist/isMemberOf> <http://www.w3.org/2004/02/skos/core#prefLabel> "is member of" .
#
# https://ontologies.semanticarts.com/gist/isPartOf
<https://ontologies.semanticarts.com/gist/isPartOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isPartOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> .
<https://ontologies.semanticarts.com/gist/isPartOf> <http://www.w3.org/2004/02/skos/core#definition> "The transitive version of gist:isDirectPartOf" .
<https://ontologies.semanticarts.com/gist/isPartOf> <http://www.w3.org/2004/02/skos/core#prefLabel> "is part of" .
#
# https://ontologies.semanticarts.com/gist/isRecognizedBy
<https://ontologies.semanticarts.com/gist/isRecognizedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isRecognizedBy> <http://www.w3.org/2002/07/owl#inverseOf> <https://ontologies.semanticarts.com/gist/recognizes> .
<https://ontologies.semanticarts.com/gist/isRecognizedBy> <http://www.w3.org/2000/01/rdf-schema#range> _:genid38 .
_:genid38 <http://www.w3.org/2002/07/owl#unionOf> _:genid40 .
_:genid40 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid39 .
_:genid39 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:genid39 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Person> .
_:genid39 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid40 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Organization> .
_:genid40 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid38 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://ontologies.semanticarts.com/gist/isRecognizedBy> <http://www.w3.org/2004/02/skos/core#definition> "The entity that formally acknowledges the existence of, as the State recognizes the existence of a particular company" .
<https://ontologies.semanticarts.com/gist/isRecognizedBy> <http://www.w3.org/2004/02/skos/core#prefLabel> "is recognized by" .
#
# https://ontologies.semanticarts.com/gist/isRecognizedDirectlyBy
<https://ontologies.semanticarts.com/gist/isRecognizedDirectlyBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isRecognizedDirectlyBy> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/isRecognizedBy> .
<https://ontologies.semanticarts.com/gist/isRecognizedDirectlyBy> <http://www.w3.org/2004/02/skos/core#definition> "The party doing the recognition" .
<https://ontologies.semanticarts.com/gist/isRecognizedDirectlyBy> <http://www.w3.org/2004/02/skos/core#prefLabel> "is recognized directly by" .
#
# https://ontologies.semanticarts.com/gist/isRenderedOn
<https://ontologies.semanticarts.com/gist/isRenderedOn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isRenderedOn> <http://www.w3.org/2004/02/skos/core#definition> "What media something was rendered On" .
<https://ontologies.semanticarts.com/gist/isRenderedOn> <http://www.w3.org/2004/02/skos/core#prefLabel> "is rendered on" .
#
# https://ontologies.semanticarts.com/gist/isSubTaskOf
<https://ontologies.semanticarts.com/gist/isSubTaskOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isSubTaskOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> .
<https://ontologies.semanticarts.com/gist/isSubTaskOf> <http://www.w3.org/2004/02/skos/core#definition> "All the upper tasks this task belongs to" .
<https://ontologies.semanticarts.com/gist/isSubTaskOf> <http://www.w3.org/2004/02/skos/core#prefLabel> "is subtask of" .
#
# https://ontologies.semanticarts.com/gist/isTriggeredBy
<https://ontologies.semanticarts.com/gist/isTriggeredBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isTriggeredBy> <http://www.w3.org/2004/02/skos/core#definition> "General causal relation. For obligations a property that describes what would happen to trigger the contingent obligation. In most cases, before the Contingent becomes an Obligation, the triggered by event is a planned event (that is it hasn't happened yet -- if it had happened the contingency would no longer be contingent. In most cases it will be a ContingentEvent . Other uses include controls, processes etc" .
<https://ontologies.semanticarts.com/gist/isTriggeredBy> <http://www.w3.org/2004/02/skos/core#prefLabel> "is triggered by" .
#
# https://ontologies.semanticarts.com/gist/isUnderJurisdictionOf
<https://ontologies.semanticarts.com/gist/isUnderJurisdictionOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/isUnderJurisdictionOf> <http://www.w3.org/2004/02/skos/core#definition> "Relates a law, contract, etc., to the system of law or government which has the power, right, or authority to interpret and apply it." .
<https://ontologies.semanticarts.com/gist/isUnderJurisdictionOf> <http://www.w3.org/2004/02/skos/core#prefLabel> "is under jurisdiction of" .
#
# https://ontologies.semanticarts.com/gist/links
<https://ontologies.semanticarts.com/gist/links> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/links> <http://www.w3.org/2004/02/skos/core#definition> "Relates a NetworkLink to a NetworkNode that it connects to another node. Used when the connections are undirected, or the direction is not known." .
<https://ontologies.semanticarts.com/gist/links> <http://www.w3.org/2004/02/skos/core#prefLabel> "links" .
#
# https://ontologies.semanticarts.com/gist/linksFrom
<https://ontologies.semanticarts.com/gist/linksFrom> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/linksFrom> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/links> .
<https://ontologies.semanticarts.com/gist/linksFrom> <http://www.w3.org/2004/02/skos/core#definition> "Relates a NetworkLink to its origin NetworkNode. Unlike the superproperty, this represents a directed connection." .
<https://ontologies.semanticarts.com/gist/linksFrom> <http://www.w3.org/2004/02/skos/core#prefLabel> "links from" .
#
# https://ontologies.semanticarts.com/gist/linksTo
<https://ontologies.semanticarts.com/gist/linksTo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/linksTo> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/links> .
<https://ontologies.semanticarts.com/gist/linksTo> <http://www.w3.org/2004/02/skos/core#definition> "Relates a NetworkLink to its destination NetworkNode. Unlike the superproperty, this represents a directed connection." .
<https://ontologies.semanticarts.com/gist/linksTo> <http://www.w3.org/2004/02/skos/core#prefLabel> "links to" .
#
# https://ontologies.semanticarts.com/gist/occupiesGeographically
<https://ontologies.semanticarts.com/gist/occupiesGeographically> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/occupiesGeographically> <http://www.w3.org/2000/01/rdf-schema#domain> _:genid41 .
_:genid41 <http://www.w3.org/2002/07/owl#unionOf> _:genid43 .
_:genid43 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid42 .
_:genid42 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:genid42 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/PhysicalSubstance> .
_:genid42 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid43 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/PhysicalIdentifiableItem> .
_:genid43 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid41 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://ontologies.semanticarts.com/gist/occupiesGeographically> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Place> .
<https://ontologies.semanticarts.com/gist/occupiesGeographically> <http://www.w3.org/2004/02/skos/core#definition> "A thing occupies are region" .
<https://ontologies.semanticarts.com/gist/occupiesGeographically> <http://www.w3.org/2004/02/skos/core#prefLabel> "occupies geographically" .
#
# https://ontologies.semanticarts.com/gist/occupiesGeographicallyPermanently
<https://ontologies.semanticarts.com/gist/occupiesGeographicallyPermanently> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/occupiesGeographicallyPermanently> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/occupiesGeographically> .
<https://ontologies.semanticarts.com/gist/occupiesGeographicallyPermanently> <http://www.w3.org/2004/02/skos/core#definition> "To be in a fixed position on the earth" .
<https://ontologies.semanticarts.com/gist/occupiesGeographicallyPermanently> <http://www.w3.org/2004/02/skos/core#prefLabel> "occupies geographically permanently" .
#
# https://ontologies.semanticarts.com/gist/occursIn
<https://ontologies.semanticarts.com/gist/occursIn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/occursIn> <http://www.w3.org/2004/02/skos/core#definition> "The geospatial place where something happened or will happen" .
<https://ontologies.semanticarts.com/gist/occursIn> <http://www.w3.org/2004/02/skos/core#prefLabel> "occurs in" .
#
# https://ontologies.semanticarts.com/gist/owns
<https://ontologies.semanticarts.com/gist/owns> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/owns> <http://www.w3.org/2000/01/rdf-schema#domain> _:genid44 .
_:genid44 <http://www.w3.org/2002/07/owl#unionOf> _:genid46 .
_:genid46 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid45 .
_:genid45 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:genid45 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Person> .
_:genid45 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid46 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://ontologies.semanticarts.com/gist/Organization> .
_:genid46 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid44 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<https://ontologies.semanticarts.com/gist/owns> <http://www.w3.org/2004/02/skos/core#definition> "Possessing and controlling. Ultimate form of ownership is the right to destroy. Long list of potential Range classes" .
<https://ontologies.semanticarts.com/gist/owns> <http://www.w3.org/2004/02/skos/core#prefLabel> "owns" .
#
# https://ontologies.semanticarts.com/gist/precedes
<https://ontologies.semanticarts.com/gist/precedes> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/precedes> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> .
<https://ontologies.semanticarts.com/gist/precedes> <http://www.w3.org/2004/02/skos/core#definition> "A generic ordering relation indicating that the subject has the same order as or comes before the object. The 'greater than or equal to' symbol is often used for this relation." .
<https://ontologies.semanticarts.com/gist/precedes> <http://www.w3.org/2004/02/skos/core#prefLabel> "precedes" .
#
# https://ontologies.semanticarts.com/gist/precedesDirectly
<https://ontologies.semanticarts.com/gist/precedesDirectly> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/precedesDirectly> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/precedes> .
<https://ontologies.semanticarts.com/gist/precedesDirectly> <http://www.w3.org/2004/02/skos/core#definition> "A generic ordering relation indicating that the subject comes immediately before the object." .
<https://ontologies.semanticarts.com/gist/precedesDirectly> <http://www.w3.org/2004/02/skos/core#prefLabel> "precedes directly" .
<https://ontologies.semanticarts.com/gist/precedesDirectly> <http://www.w3.org/2004/02/skos/core#scopeNote> "It is safest to use this property only when the directness has a semantic correspondence with the world. Only break a direct link by inserting an intermediate item when that change corresponds to a change in the world." .
#
# https://ontologies.semanticarts.com/gist/prevents
<https://ontologies.semanticarts.com/gist/prevents> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/prevents> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/Intention> .
<https://ontologies.semanticarts.com/gist/prevents> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/Behavior> .
<https://ontologies.semanticarts.com/gist/prevents> <http://www.w3.org/2004/02/skos/core#definition> "The intention (say a law) is intended to prevent this kind of behavior (say jay-walking)" .
<https://ontologies.semanticarts.com/gist/prevents> <http://www.w3.org/2004/02/skos/core#prefLabel> "prevents" .
#
# https://ontologies.semanticarts.com/gist/produces
<https://ontologies.semanticarts.com/gist/produces> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/produces> <http://www.w3.org/2004/02/skos/core#definition> "The subject creates the object." .
<https://ontologies.semanticarts.com/gist/produces> <http://www.w3.org/2004/02/skos/core#example> "A task produces a deliverable." .
<https://ontologies.semanticarts.com/gist/produces> <http://www.w3.org/2004/02/skos/core#prefLabel> "produces" .
#
# https://ontologies.semanticarts.com/gist/providesOrderFor
<https://ontologies.semanticarts.com/gist/providesOrderFor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/providesOrderFor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
<https://ontologies.semanticarts.com/gist/providesOrderFor> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/OrderedMember> .
<https://ontologies.semanticarts.com/gist/providesOrderFor> <http://www.w3.org/2004/02/skos/core#definition> "Links a member of an ordered collection to the real-world item it represents in that collection." .
<https://ontologies.semanticarts.com/gist/providesOrderFor> <http://www.w3.org/2004/02/skos/core#prefLabel> "provides order for" .
#
# https://ontologies.semanticarts.com/gist/recognizes
<https://ontologies.semanticarts.com/gist/recognizes> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/recognizes> <http://www.w3.org/2004/02/skos/core#definition> "Recognizes" .
<https://ontologies.semanticarts.com/gist/recognizes> <http://www.w3.org/2004/02/skos/core#prefLabel> "recognizes" .
#
# https://ontologies.semanticarts.com/gist/requires
<https://ontologies.semanticarts.com/gist/requires> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/requires> <http://www.w3.org/2004/02/skos/core#definition> "The subject needs the object or makes it necessary, mandatory, or compulsory." .
<https://ontologies.semanticarts.com/gist/requires> <http://www.w3.org/2004/02/skos/core#example> "Humans require air; solar power requires sunshine." .
<https://ontologies.semanticarts.com/gist/requires> <http://www.w3.org/2004/02/skos/core#prefLabel> "requires" .
<https://ontologies.semanticarts.com/gist/requires> <http://www.w3.org/2004/02/skos/core#scopeNote> "This predicate is defined generally enough to encompass a few different meanings of the English word 'requires': \r\n\t\t\r\n\t\t1. To need something or to make something necessary.\r\n\t\t2. To order or demand something, or to order someone to do something, especially because of a rule or law.\r\n\t\t3. To make it officially necessary for someone to do something.\r\n\t\r\n\tImplementations requiring a more specific meaning should define subproperties." .
#
# https://ontologies.semanticarts.com/gist/respondsTo
<https://ontologies.semanticarts.com/gist/respondsTo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/respondsTo> <http://www.w3.org/2004/02/skos/core#definition> "The set of sensors that a controller is attached to" .
<https://ontologies.semanticarts.com/gist/respondsTo> <http://www.w3.org/2004/02/skos/core#prefLabel> "responds to" .
#
# https://ontologies.semanticarts.com/gist/usesTimeZoneStandard
<https://ontologies.semanticarts.com/gist/usesTimeZoneStandard> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<https://ontologies.semanticarts.com/gist/usesTimeZoneStandard> <http://www.w3.org/2000/01/rdf-schema#range> <https://ontologies.semanticarts.com/gist/TimeZoneStandard> .
<https://ontologies.semanticarts.com/gist/usesTimeZoneStandard> <http://www.w3.org/2004/02/skos/core#definition> "The time zone, including daylight savings time adjustment, of an event or other object that can have a date and time." .
<https://ontologies.semanticarts.com/gist/usesTimeZoneStandard> <http://www.w3.org/2004/02/skos/core#example> "EST (Eastern Standard Time), PST (Pacific Daylight Time)." .
<https://ontologies.semanticarts.com/gist/usesTimeZoneStandard> <http://www.w3.org/2004/02/skos/core#prefLabel> "uses time zone standard" .
#
#
#
# #################################################################
# #
# # Data properties
# #
# #################################################################
#
#
# https://ontologies.semanticarts.com/gist/actualEndDate
<https://ontologies.semanticarts.com/gist/actualEndDate> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/actualEndDate> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/actualEndDateTime> .
<https://ontologies.semanticarts.com/gist/actualEndDate> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/actualEndDate> <http://www.w3.org/2004/02/skos/core#definition> "The actual date that something ended, with precision of one day." .
<https://ontologies.semanticarts.com/gist/actualEndDate> <http://www.w3.org/2004/02/skos/core#example> "'2021-06-01T00:00:00-6:00'^^xsd:dateTime" .
<https://ontologies.semanticarts.com/gist/actualEndDate> <http://www.w3.org/2004/02/skos/core#prefLabel> "actual end date" .
<https://ontologies.semanticarts.com/gist/actualEndDate> <http://www.w3.org/2004/02/skos/core#scopeNote> "Used for things where the precision of a date is sufficient, such as most projects, tasks, and the like. Recommended usage is to zero out the hours through microseconds to avoid spurious precision." .
#
# https://ontologies.semanticarts.com/gist/actualEndDateTime
<https://ontologies.semanticarts.com/gist/actualEndDateTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/actualEndDateTime> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/endDateTime> .
<https://ontologies.semanticarts.com/gist/actualEndDateTime> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/actualEndDateTime> <http://www.w3.org/2004/02/skos/core#definition> "The actual date and time that something ended, with no implied precision." .
<https://ontologies.semanticarts.com/gist/actualEndDateTime> <http://www.w3.org/2004/02/skos/core#prefLabel> "actual end date time" .
<https://ontologies.semanticarts.com/gist/actualEndDateTime> <http://www.w3.org/2004/02/skos/core#scopeNote> "This is an abstraction over the various precisions of actual end time, and is not expected to be asserted directly. Values with different precisions can be compared since they all have the same format." .
#
# https://ontologies.semanticarts.com/gist/actualEndMicrosecond
<https://ontologies.semanticarts.com/gist/actualEndMicrosecond> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/actualEndMicrosecond> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/actualEndDateTime> .
<https://ontologies.semanticarts.com/gist/actualEndMicrosecond> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/actualEndMicrosecond> <http://www.w3.org/2004/02/skos/core#definition> "The actual time that something ended, expressed as a system time used for timestamps." .
<https://ontologies.semanticarts.com/gist/actualEndMicrosecond> <http://www.w3.org/2004/02/skos/core#example> "'2021-06-01T08:03:27.12324-6:00'^^xsd:dateTime" .
<https://ontologies.semanticarts.com/gist/actualEndMicrosecond> <http://www.w3.org/2004/02/skos/core#prefLabel> "actual end microsecond" .
<https://ontologies.semanticarts.com/gist/actualEndMicrosecond> <http://www.w3.org/2004/02/skos/core#scopeNote> "A system time will be as precise as the system can supply, typically at least milliseconds, sometimes microseconds. The convention for timestamps, such as recording a transaction, is to specify just the end point; the start time is rarely needed." .
#
# https://ontologies.semanticarts.com/gist/actualEndMinute
<https://ontologies.semanticarts.com/gist/actualEndMinute> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/actualEndMinute> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/actualEndDateTime> .
<https://ontologies.semanticarts.com/gist/actualEndMinute> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/actualEndMinute> <http://www.w3.org/2004/02/skos/core#definition> "The actual date and time that something ended, with precision of one minute." .
<https://ontologies.semanticarts.com/gist/actualEndMinute> <http://www.w3.org/2004/02/skos/core#example> "'2021-06-01T08:32:00-6:00'^^xsd:dateTime" .
<https://ontologies.semanticarts.com/gist/actualEndMinute> <http://www.w3.org/2004/02/skos/core#prefLabel> "actual end minute" .
<https://ontologies.semanticarts.com/gist/actualEndMinute> <http://www.w3.org/2004/02/skos/core#scopeNote> "Used for things like meetings and time card entries, where the hour and minute are important. Recommended usage is to zero out the seconds and microseconds to avoid spurious precision." .
#
# https://ontologies.semanticarts.com/gist/actualEndYear
<https://ontologies.semanticarts.com/gist/actualEndYear> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/actualEndYear> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/actualEndDateTime> .
<https://ontologies.semanticarts.com/gist/actualEndYear> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/actualEndYear> <http://www.w3.org/2004/02/skos/core#definition> "The actual date that something ended, with precision of one year." .
<https://ontologies.semanticarts.com/gist/actualEndYear> <http://www.w3.org/2004/02/skos/core#example> "'2021-01-01T00:00:00-6:00'^^xsd:dateTime" .
<https://ontologies.semanticarts.com/gist/actualEndYear> <http://www.w3.org/2004/02/skos/core#example> "The tenure of the previous chairman of the board ended in 2021." .
<https://ontologies.semanticarts.com/gist/actualEndYear> <http://www.w3.org/2004/02/skos/core#prefLabel> "actual end year" .
<https://ontologies.semanticarts.com/gist/actualEndYear> <http://www.w3.org/2004/02/skos/core#scopeNote> "Used for things where the precision of a year is sufficient. Recommended usage is to zero out the hours through microseconds to avoid spurious precision. Note that it is not valid to zero out months and days, so arbitrary values must be included." .
#
# https://ontologies.semanticarts.com/gist/actualStartDate
<https://ontologies.semanticarts.com/gist/actualStartDate> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/actualStartDate> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/actualStartDateTime> .
<https://ontologies.semanticarts.com/gist/actualStartDate> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/actualStartDate> <http://www.w3.org/2004/02/skos/core#definition> "The actual date that something started, with precision of one day." .
<https://ontologies.semanticarts.com/gist/actualStartDate> <http://www.w3.org/2004/02/skos/core#example> "'2021-06-01T00:00:00-6:00'^^xsd:dateTime" .
<https://ontologies.semanticarts.com/gist/actualStartDate> <http://www.w3.org/2004/02/skos/core#prefLabel> "actual start date" .
<https://ontologies.semanticarts.com/gist/actualStartDate> <http://www.w3.org/2004/02/skos/core#scopeNote> "Used for things where the precision of a date is sufficient, such as most projects, tasks, and the like. Recommended usage is to zero out the hours through microseconds to avoid spurious precision." .
#
# https://ontologies.semanticarts.com/gist/actualStartDateTime
<https://ontologies.semanticarts.com/gist/actualStartDateTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/actualStartDateTime> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/startDateTime> .
<https://ontologies.semanticarts.com/gist/actualStartDateTime> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/actualStartDateTime> <http://www.w3.org/2004/02/skos/core#definition> "The actual date and time that something ended, with no implied precision." .
<https://ontologies.semanticarts.com/gist/actualStartDateTime> <http://www.w3.org/2004/02/skos/core#prefLabel> "actual start date time" .
<https://ontologies.semanticarts.com/gist/actualStartDateTime> <http://www.w3.org/2004/02/skos/core#scopeNote> "This is an abstraction over the various precisions of actual start time, and is not expected to be asserted directly. Values with different precisions can be compared since they all have the same format." .
#
# https://ontologies.semanticarts.com/gist/actualStartMicrosecond
<https://ontologies.semanticarts.com/gist/actualStartMicrosecond> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/actualStartMicrosecond> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/actualStartDateTime> .
<https://ontologies.semanticarts.com/gist/actualStartMicrosecond> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/actualStartMicrosecond> <http://www.w3.org/2004/02/skos/core#definition> "The actual time that something started, expressed as a system time used for timestamps." .
<https://ontologies.semanticarts.com/gist/actualStartMicrosecond> <http://www.w3.org/2004/02/skos/core#example> "'2021-06-01T08:03:27.12324-6:00'^^xsd:dateTime" .
<https://ontologies.semanticarts.com/gist/actualStartMicrosecond> <http://www.w3.org/2004/02/skos/core#prefLabel> "actual start microsecond" .
<https://ontologies.semanticarts.com/gist/actualStartMicrosecond> <http://www.w3.org/2004/02/skos/core#scopeNote> "A system time will be as precise as the system can supply, typically at least milliseconds, sometimes microseconds. The convention for timestamps, such as recording a transaction, is to specify just the end point; the start time is rarely needed. This property is defined for the cases when you do need to capture the runtime of a system process, and is then used in conjunction with gist:actualEndMicrosecond." .
#
# https://ontologies.semanticarts.com/gist/actualStartMinute
<https://ontologies.semanticarts.com/gist/actualStartMinute> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/actualStartMinute> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/actualStartDateTime> .
<https://ontologies.semanticarts.com/gist/actualStartMinute> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/actualStartMinute> <http://www.w3.org/2004/02/skos/core#definition> "The actual date and time that something started, with precision of one minute." .
<https://ontologies.semanticarts.com/gist/actualStartMinute> <http://www.w3.org/2004/02/skos/core#example> "'2021-06-01T08:32:00-6:00'^^xsd:dateTime" .
<https://ontologies.semanticarts.com/gist/actualStartMinute> <http://www.w3.org/2004/02/skos/core#prefLabel> "actual start minute" .
<https://ontologies.semanticarts.com/gist/actualStartMinute> <http://www.w3.org/2004/02/skos/core#scopeNote> "Used for things like meetings and time card entries, where the hour and minute are important. Recommended usage is to zero out the seconds and microseconds to avoid spurious precision." .
#
# https://ontologies.semanticarts.com/gist/actualStartYear
<https://ontologies.semanticarts.com/gist/actualStartYear> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/actualStartYear> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/actualStartDateTime> .
<https://ontologies.semanticarts.com/gist/actualStartYear> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/actualStartYear> <http://www.w3.org/2004/02/skos/core#definition> "The actual date that something started, with precision of one year." .
<https://ontologies.semanticarts.com/gist/actualStartYear> <http://www.w3.org/2004/02/skos/core#example> "'2021-01-01T00:00:00-6:00'^^xsd:dateTime" .
<https://ontologies.semanticarts.com/gist/actualStartYear> <http://www.w3.org/2004/02/skos/core#example> "The tenure of the current chairman of the board began in 2021." .
<https://ontologies.semanticarts.com/gist/actualStartYear> <http://www.w3.org/2004/02/skos/core#prefLabel> "actual start year" .
<https://ontologies.semanticarts.com/gist/actualStartYear> <http://www.w3.org/2004/02/skos/core#scopeNote> "Used for things where the precision of a year is sufficient. Recommended usage is to zero out the hours through microseconds to avoid spurious precision. Note that it is not valid to zero out months and days, so arbitrary values must be included." .
#
# https://ontologies.semanticarts.com/gist/atDateTime
<https://ontologies.semanticarts.com/gist/atDateTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/atDateTime> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/atDateTime> <http://www.w3.org/2004/02/skos/core#definition> "The date and time at which something did or will occur, with variants for precision, start and end, and actual vs. planned." .
<https://ontologies.semanticarts.com/gist/atDateTime> <http://www.w3.org/2004/02/skos/core#prefLabel> "at date time" .
<https://ontologies.semanticarts.com/gist/atDateTime> <http://www.w3.org/2004/02/skos/core#scopeNote> "This is the top level property for asserting time, and is not expected to be asserted directly.\r\n\r\nThe subproperties allow the ontologist to do three things:\r\n1) Distinguish start and end times.\r\n2) Indicate whether a time is planned or actual. This is useful for everything from project management to calendar appointments and the like. It is also useful for date effectivities; i.e., something valid up to a planned date).\r\n3) Distinguish varying levels of precision; sort of a simple version of the Allen functions. \r\n\r\nAll datetimes are of the same format: '2021-06-01T08:03:27.12324-6:00'^^xsd:dateTime. This is compatible with and a subset of ISO 8601.\r\n\r\nTime zone offset, such as -6:00 (of which there are a few dozen) is recognized in the date itself, as shown. The actual time zone standard (of which there are 131) may optionally be attached to the event or other object itself; see property gist:usesTimeZoneStandard.\r\n\r\nThere will be many historical dates that do not have a time zone offset (e.g., Lincoln's birthday, as well as about 75% of all legacy systems), and in that case the offset can be omitted. \r\n\r\nThe conventions for precision that are repeated in each property name are as follows:\r\n\t- *DateTime is an abstraction over the various precisions of its subproperties.\r\n\t- *Date refers to a calendar date (e.g., birthdays and invoice dates) and is assumed to have precision of one day. Time zone offset is allowed.\r\n\t- *Minute refers to clock time; e.g., a meeting will start at 9:15 with a timezone offset. Precision is assumed to have precision of one minute.\r\n\t- *Microsecond refers to system time, and it will be as precise as the system can supply; typically at least milliseconds, sometime microseconds.\r\n\r\n" .
#
# https://ontologies.semanticarts.com/gist/birthDate
<https://ontologies.semanticarts.com/gist/birthDate> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/birthDate> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/startDateTime> .
<https://ontologies.semanticarts.com/gist/birthDate> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/birthDate> <http://www.w3.org/2004/02/skos/core#definition> "The date some living thing was or will be born, with precision of one day." .
<https://ontologies.semanticarts.com/gist/birthDate> <http://www.w3.org/2004/02/skos/core#example> "'2021-06-01T00:00:00-6:00'^^xsd:dateTime" .
<https://ontologies.semanticarts.com/gist/birthDate> <http://www.w3.org/2004/02/skos/core#prefLabel> "birth date" .
<https://ontologies.semanticarts.com/gist/birthDate> <http://www.w3.org/2004/02/skos/core#scopeNote> "This is a subproperty of gist:startDateTime rather than gist:actualStartDate because some living things have yet to be born. This property refers to a calendar date and is assumed to precision of one day (time zone offset is allowed). It is recommended to zero out the hours through microseconds to avoid spurious precision. Implementations requiring a birthdate to the minute can define a subproperty." .
#
# https://ontologies.semanticarts.com/gist/containedText
<https://ontologies.semanticarts.com/gist/containedText> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/containedText> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://ontologies.semanticarts.com/gist/containedText> <http://www.w3.org/2004/02/skos/core#definition> "Links to the string corresponding to Text" .
<https://ontologies.semanticarts.com/gist/containedText> <http://www.w3.org/2004/02/skos/core#prefLabel> "contained text" .
#
# https://ontologies.semanticarts.com/gist/conversionFactor
<https://ontologies.semanticarts.com/gist/conversionFactor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/conversionFactor> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/UnitOfMeasure> .
<https://ontologies.semanticarts.com/gist/conversionFactor> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#double> .
<https://ontologies.semanticarts.com/gist/conversionFactor> <http://www.w3.org/2004/02/skos/core#definition> "The conversion factor used to convert a unit to its standard (i.e., coherent) unit (which could be a base unit.)" .
<https://ontologies.semanticarts.com/gist/conversionFactor> <http://www.w3.org/2004/02/skos/core#example> "A value expressed in inches is multiplied by a conversion factor of 0.0254 to express the value in the base unit, meter." .
<https://ontologies.semanticarts.com/gist/conversionFactor> <http://www.w3.org/2004/02/skos/core#example> "An area expressed as 7 square kilometers is multiplied by a conversion factor of one million which results in 7 million square meters." .
<https://ontologies.semanticarts.com/gist/conversionFactor> <http://www.w3.org/2004/02/skos/core#prefLabel> "conversion factor" .
<https://ontologies.semanticarts.com/gist/conversionFactor> <http://www.w3.org/2004/02/skos/core#scopeNote> "Sometimes this property must be used in conjunction with conversionOffset. Kelvin = (Degrees F - conversionOffset) * conversionFactor. Or K = (F-(-469.67)) * (5/9)." .
#
# https://ontologies.semanticarts.com/gist/conversionOffset
<https://ontologies.semanticarts.com/gist/conversionOffset> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/conversionOffset> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/UnitOfMeasure> .
<https://ontologies.semanticarts.com/gist/conversionOffset> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#double> .
<https://ontologies.semanticarts.com/gist/conversionOffset> <http://www.w3.org/2004/02/skos/core#definition> "Add this number to get to the zero point. On the Celsius scale, the conversionOffset is -273.15 degrees C. On the Fahrenheit scale it is -459.67 degrees. Is equal to 0 when the unit has the same zero point as the base unit. e.g. inch, meter." .
<https://ontologies.semanticarts.com/gist/conversionOffset> <http://www.w3.org/2004/02/skos/core#prefLabel> "conversion offset" .
#
# https://ontologies.semanticarts.com/gist/deathDate
<https://ontologies.semanticarts.com/gist/deathDate> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/deathDate> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/actualEndDate> .
<https://ontologies.semanticarts.com/gist/deathDate> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/deathDate> <http://www.w3.org/2004/02/skos/core#definition> "The date some living thing died." .
<https://ontologies.semanticarts.com/gist/deathDate> <http://www.w3.org/2004/02/skos/core#example> "'2021-06-01T00:00:00-6:00'^^xsd:dateTime" .
<https://ontologies.semanticarts.com/gist/deathDate> <http://www.w3.org/2004/02/skos/core#prefLabel> "death date" .
<https://ontologies.semanticarts.com/gist/deathDate> <http://www.w3.org/2004/02/skos/core#scopeNote> "Refers to a calendar date and is assumed to have precision of one day (time zone offset is allowed). Recommended usage is to zero out the hours through microseconds to avoid spurious precision. Implementations requiring a death date to the minute can define a subproperty." .
#
# https://ontologies.semanticarts.com/gist/description
<https://ontologies.semanticarts.com/gist/description> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/description> <http://www.w3.org/2004/02/skos/core#definition> "A statement about someone or something's attributes or characteristics." .
<https://ontologies.semanticarts.com/gist/description> <http://www.w3.org/2004/02/skos/core#example> "The Empire State Building is a 102-story Art Deco skyscraper in Midtown Manhattan in New York City, United States. It was designed by Shreve, Lamb & Harmon and built from 1930 to 1931." .
<https://ontologies.semanticarts.com/gist/description> <http://www.w3.org/2004/02/skos/core#prefLabel> "description" .
<https://ontologies.semanticarts.com/gist/description> <http://www.w3.org/2004/02/skos/core#scopeNote> "This property is used to provide a description of an instance entity in greater detail than a label." .
#
# https://ontologies.semanticarts.com/gist/encryptedText
<https://ontologies.semanticarts.com/gist/encryptedText> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/encryptedText> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/containedText> .
<https://ontologies.semanticarts.com/gist/encryptedText> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://ontologies.semanticarts.com/gist/encryptedText> <http://www.w3.org/2004/02/skos/core#definition> "Links to the string corresponding to EncryptedText" .
<https://ontologies.semanticarts.com/gist/encryptedText> <http://www.w3.org/2004/02/skos/core#prefLabel> "encrypted text" .
#
# https://ontologies.semanticarts.com/gist/endDateTime
<https://ontologies.semanticarts.com/gist/endDateTime> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/endDateTime> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/atDateTime> .
<https://ontologies.semanticarts.com/gist/endDateTime> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://ontologies.semanticarts.com/gist/endDateTime> <http://www.w3.org/2004/02/skos/core#definition> "The date and time that something ended." .
<https://ontologies.semanticarts.com/gist/endDateTime> <http://www.w3.org/2004/02/skos/core#prefLabel> "end date time" .
<https://ontologies.semanticarts.com/gist/endDateTime> <http://www.w3.org/2004/02/skos/core#scopeNote> "This is an abstraction over the various precisions of end time, and is not expected to be asserted directly. Values with different precisions can be compared since they all have the same format." .
<https://ontologies.semanticarts.com/gist/endDateTime> <http://www.w3.org/2004/02/skos/core#scopeNote> "We have looked at some extreme edge cases (e.g., did this meeting end before or after the trade was posted?) and we couldn't find any use case that required special processing. Those who have such use cases can implement them (and feel free to let us know)." .
#
# https://ontologies.semanticarts.com/gist/isRecordedAt
<https://ontologies.semanticarts.com/gist/isRecordedAt> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/isRecordedAt> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://ontologies.semanticarts.com/gist/actualEndDateTime> .
<https://ontologies.semanticarts.com/gist/isRecordedAt> <http://www.w3.org/2004/02/skos/core#definition> "Date that something was posted, not necessarily the date it occurred. Must be after the date of occurrence, but could be before or after the planned date. (Unusual, but I could record today that I expected to be paid last week.)" .
<https://ontologies.semanticarts.com/gist/isRecordedAt> <http://www.w3.org/2004/02/skos/core#prefLabel> "is recorded at" .
<https://ontologies.semanticarts.com/gist/isRecordedAt> <http://www.w3.org/2004/02/skos/core#scopeNote> "Precision may vary according to context." .
#
# https://ontologies.semanticarts.com/gist/latitude
<https://ontologies.semanticarts.com/gist/latitude> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/latitude> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/GeoPoint> .
<https://ontologies.semanticarts.com/gist/latitude> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#double> .
<https://ontologies.semanticarts.com/gist/latitude> <http://www.w3.org/2004/02/skos/core#definition> "Degrees above or below equator" .
<https://ontologies.semanticarts.com/gist/latitude> <http://www.w3.org/2004/02/skos/core#prefLabel> "latitude" .
#
# https://ontologies.semanticarts.com/gist/longitude
<https://ontologies.semanticarts.com/gist/longitude> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/longitude> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/GeoPoint> .
<https://ontologies.semanticarts.com/gist/longitude> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#double> .
<https://ontologies.semanticarts.com/gist/longitude> <http://www.w3.org/2004/02/skos/core#definition> "Degrees from GM" .
<https://ontologies.semanticarts.com/gist/longitude> <http://www.w3.org/2004/02/skos/core#prefLabel> "longitude" .
#
# https://ontologies.semanticarts.com/gist/name
<https://ontologies.semanticarts.com/gist/name> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/name> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
<https://ontologies.semanticarts.com/gist/name> <http://www.w3.org/2004/02/skos/core#definition> "Relates an individual to a casual name." .
<https://ontologies.semanticarts.com/gist/name> <http://www.w3.org/2004/02/skos/core#prefLabel> "name" .
<https://ontologies.semanticarts.com/gist/name> <http://www.w3.org/2004/02/skos/core#scopeNote> "For more formal use, consider using a sub property of the object property, identifiedBy." .
#
# https://ontologies.semanticarts.com/gist/numericValue
<https://ontologies.semanticarts.com/gist/numericValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://ontologies.semanticarts.com/gist/numericValue> <http://www.w3.org/2000/01/rdf-schema#domain> <https://ontologies.semanticarts.com/gist/Magnitude> .
<https://ontologies.semanticarts.com/gist/numericValue> <http://www.w3.org/2000/01/rdf-schema#range> _:genid47 .
_:genid47 <http://www.w3.org/2002/07/owl#unionOf> _:genid65 .
_:genid65 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid64 .
_:genid64 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid63 .
_:genid63 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid62 .
_:genid62 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid61 .
_:genid61 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid60 .
_:genid60 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid59 .
_:genid59 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid58 .
_:genid58 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid57 .
_:genid57 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid56 .
_:genid56 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid55 .
_:genid55 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid54 .
_:genid54 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid53 .
_:genid53 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid52 .
_:genid52 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid51 .
_:genid51 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid50 .
_:genid50 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid49 .
_:genid49 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid48 .
_:genid48 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
_:genid48 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/2002/07/owl#real> .
_:genid48 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid49 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/2002/07/owl#rational> .
_:genid49 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
_:genid50 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/2001/XMLSchema#unsignedShort> .
_:genid50 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .