-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject_model.owl
3817 lines (3508 loc) · 253 KB
/
Project_model.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xml:base="https://ontologies.semanticarts.com/o/gistCore"
xmlns="https://ontologies.semanticarts.com/o/gistCore#"
xmlns:core="http://www.w3.org/2004/02/skos/core#"
xmlns:gist="https://ontologies.semanticarts.com/gist/">
<owl:Ontology rdf:about="https://ontologies.semanticarts.com/o/gistCore">
<owl:versionIRI rdf:resource="https://ontologies.semanticarts.com/o/gistCore9.5.0"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gist is a minimalist upper ontology created by Semantic Arts</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gistCore</core:prefLabel>
<gist:license rdf:datatype="http://www.w3.org/2001/XMLSchema#string">https://creativecommons.org/licenses/by-sa/3.0/</gist:license>
</owl:Ontology>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasMagnitude">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Magnitude"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">To have a comparable numerical value. Each magnitude has a unit.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Magnitude</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasParty">
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Organization"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Person"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The people or organizations participating in an agreement or obligation</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Party</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasDirectPart">
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/hasPart"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The relationship between a whole and a part where the part has independent existence.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Direct Part</core:prefLabel>
<core:scopeNote rdf:datatype="http://www.w3.org/2001/XMLSchema#string">No cascading delete.</core:scopeNote>
<core:scopeNote rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Use this property to directly associate parts. hasPart is the transitive version.</core:scopeNote>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasUoM">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/Magnitude"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/UnitOfMeasure"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Unit of Measure</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/multiplicand">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/ProductUnit"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/UnitOfMeasure"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relates a ProductUnit such as square mile to the second of two units multiplied together (e.g. mile).</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Multiplicand</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/multiplier">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/ProductUnit"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/UnitOfMeasure"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relates a ProductUnit such as square mile to the first of two units multiplied together (e.g. mile)</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Multiplier</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasGoal">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The reason for doing something</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Goal</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/affectedBy">
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/affects"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Where the effect came from</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Affected By</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/streetAddressOf">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Whose street address is this</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Street Address Of</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/allocatedBy">
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/IntellectualProperty"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Organization"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Person"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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)</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Allocated By</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/denominator">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/RatioUnit"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/UnitOfMeasure"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relates a RatioUnit such as meters/second to the denominator Unit (e.g. second).</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Denominator</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/numerator">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/RatioUnit"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/UnitOfMeasure"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relates a RatioUnit such as meter(s)/second to the numerator Unit (e.g. meter).</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Numerator</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasMember">
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/memberOf"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relates a Collection to its member individuals.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Member</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/categorizedBy">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Points to a taxonomy item or other less formally defined class.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Categorized By</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/giver">
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/hasParty"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The active party, the one with the obligation or the one initiating the transfer</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Giver</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/contributesTo">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The parts of a system contribute to the goal/ function of the whole system</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Contributes To</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/actualStart">
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/actual"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/start"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">When something did start, therefore noting an historical event.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Actual Start</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/actualEnd">
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/actual"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/end"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">When something did end, therefore noting an historical event.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Actual End</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/expressedIn">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The language something was expressed in</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Expressed In</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/plannedEnd">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/end"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/planned"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A date/time that was at least at some point in time in the future. It may be in the past now, but when we planned it, it was in the future.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Planned End</core:prefLabel>
<core:scopeNote rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Most frequently apples to Event(s) and Offer(s). E.g. a conference or sale offer.</core:scopeNote>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/plannedStart">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/planned"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/start"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A date/time that was at least at some point in time in the future. It may be in the past now, but when we planned it, it was in the future.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Planned Start</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/triggeredBy">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Triggered By</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasJurisdiction">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">When laws and contracts are meted out</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Jurisdiction</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/governedBy">
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/governs"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A reference from the thing being governed to the governor</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Governed By</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/directs">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The set of actuators that a controller can affect</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Directs</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/respondsTo">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The set of sensors that a controller is attached to</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Responds to</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasBaseUnit">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/UnitOfMeasure"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/BaseUnit"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/hasStandardUnit"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relates a UnitOfMeasure to its BaseUnit. This indicates what kind of Unit something is.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Base Unit</core:prefLabel>
<core:example rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Saying that a furlong hasBaseUnit meter says it is a DistanceUnit.</core:example>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/governs">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Intention"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Organization"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Person"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Template"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Category"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Content"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/GeoRegion"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/IntellectualProperty"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Intention"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Organization"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Person"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/PhysicalIdentifiableItem"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/PhysicalSubstance"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The subject controls or inhibits the object in some way</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Governs</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/recognizedBy">
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Organization"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Person"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/recognizes"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The entity that formally acknowledges the existence of, as the State recognizes the existence of a particular company</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Recognized By</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasPrecision">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Magnitude"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Precision</core:prefLabel>
<core:scopeNote rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Most frequently apples to Magnitude(s) and TimeInstant. Could also apply to a measurement.</core:scopeNote>
<core:example rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Temperature precise to tenth of a degree C; TimeInstant precise to 24 hours.</core:example>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/characterizedAs">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/Event"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Behavior"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A way to categorize a behavior.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Characterized As</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/end">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Connects the subject to its end time.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">End</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/start">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Connects the subject to its start time.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Start</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasAltitude">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/GeoPoint"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Extent"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Distance above sea level</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Altitude</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/fromPlace">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Place"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Origin</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">From Place</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/toPlace">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Place"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Destination</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">To Place</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/geoContains">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/Place"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Place"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Transitive version of geoDirectlyContains</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Geo Contains</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/timeZoneStandardUsed">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/TimeZoneStandard"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">the "time zone" with Daylight Savings adjust</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Time Zone Standard Used</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/permanentGeoOccupies">
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/geoOccupies"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">To be in a fixed position on the earth</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Permanent Geo Occupies</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasBirthDate">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/LivingThing"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/actualStart"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Date a living thing was "born" (or germinated, for plants).</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Birthdate</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/offspringOf">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/LivingThing"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/LivingThing"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Biological offspring</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Offspring Of</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/sameTimeAs">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">We can have two local time instants refer to the same time, the same universal time.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Same Time As</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/fromAgent">
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Organization"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Person"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The source of a message or shipment</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">From Agent</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/toAgent">
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Organization"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Person"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Indicates to whom (e.g. a message or shipment) is destined for.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">To Agent</core:prefLabel>
<core:scopeNote rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This is not the inverse of fromAgent. A message can be from someone. If we made it the inverse the person would be "to" the message</core:scopeNote>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/getter">
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/hasParty"/>
<owl:propertyDisjointWith rdf:resource="https://ontologies.semanticarts.com/gist/giver"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The recipient</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Getter</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasOrderedMember">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/hasMember"/>
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/orderedMemberOf"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An inverse functional version of hasMember to ensure that no OrderedMember can be in more than one OrderedCollection., which can quickly lead to problems.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Ordered Member</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/directlyPrecededBy">
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/directlyPrecedes"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Inverse of directly precedes</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Directly Preceded By</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/directlyPrecedes">
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/precedes"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A generic ordering relation indicating that the Subject comes immediately before the Object.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Directly Precedes</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/orderedMemberOf">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An inverse of hasOrderedMember</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ordered Member Of</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/allows">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/Intention"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Behavior"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The intention (say a grant) allows a particular kind of activity (for instance egress)</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Allows</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/occursAt">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The geospatial place where something happened or will happen</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Occurs at</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/identifiedBy">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/ID"/>
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/identifies"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This is like a URI: a thing can have more than one ID, but each of the IDs must refer to a unique thing.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Identified By</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/madeUpOf">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/PhysicalSubstance"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relates something to the the substance that it is made up of.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Made Up Of</core:prefLabel>
<core:example rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The vase is made up of clay</core:example>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasSubTask">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/Task"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Task"/>
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/subTaskOf"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Sub Task</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/renderedOn">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">What media something was rendered On</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Rendered On</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/prevents">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/Intention"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Behavior"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The intention (say a law) is intended to prevent this kind of behavior (say jay-walking)</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Prevents</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/directPartOf">
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/hasDirectPart"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The relationship between a part and a whole where the part has independent existence.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Direct Part Of</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/basisFor">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reason for an event</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Basis For</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasSubCategory">
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/hasSuperCategory"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has subcategory</core:prefLabel>
<core:scopeNote rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This is essentially the same as skos:narrowerTransitive, using gist:Category instead of skos:Concept.</core:scopeNote>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasSuperCategory">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has supercategory</core:prefLabel>
<core:scopeNote rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This is essentially the same as skos:broaderTransitive, using gist:Category instead of skos:Concept.</core:scopeNote>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/connectedTo">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A non-owning, non-causal, non-subordinate (i.e., peer-to-peer) relationship.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Connected To</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/offsetToUniversal">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/TimeZone"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Duration"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">How many hours the time zone is off GMT</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Offset To Universal</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/basedOn">
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/basisFor"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pointer to the thing something was derived from</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Based On</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/about">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/Content"/>
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/describedIn"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Subject matter of a document.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">About</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/describedIn">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Document the subject matter appeared in</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Described In</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/accepts">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The types of input messages that will be allowed</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Accepts</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/actual">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">When something did occur, therefore noting an historical event.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Actual</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/affects">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The subject has or had or will have an effect on the object</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Affects</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/aspectOf">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">What this aspect is referring to</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Aspect Of</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/communicationAddressOf">
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/hasCommunicationAddress"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Whose address is this</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Communication Address Of</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasCommunicationAddress">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Address"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Points to a general class of places you can send messages including postal addresses, fax numbers, phone numbers, email, web site, etc.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Communication Address</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/conformsTo">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Intention"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The subject conforms to the Object, e.g. meet an obligation, meet terms of an offer, adhere to a specification</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Conforms To</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/directSubTaskOf">
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/hasDirectSubTask"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Immediate parent task</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Direct Sub Task Of</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasDirectSubTask">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/Task"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Task"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/hasSubTask"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Immediate child task</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Direct Sub Task</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/precedes">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Precedes</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/directlyRecognizedBy">
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/recognizedBy"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The party doing the recognition</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Directly RecognizedBy</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/geoContainedIn">
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/geoContains"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">All the transitive places something is located in</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Geo Contained In</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/geoOccupiedBy">
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/geoOccupies"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">What is in the location</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Geo Occupied By</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/geoOccupies">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/PhysicalIdentifiableItem"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/PhysicalSubstance"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Place"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A thing occupies are region</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Geo Occupies</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasStandardUnit">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/UnitOfMeasure"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/CoherentUnit"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">For a complex unit refers to a unit that has all the component parts in SI</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Standard Unit</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasDeathDate">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/LivingThing"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/actualEnd"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Date a living thing died</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Death Date</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasPart">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/partOf"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The transitive version of hasDirectPart</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Part</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasDirectSubCategory">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has direct subcategory</core:prefLabel>
<core:scopeNote rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</core:scopeNote>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasDirectSuperCategory">
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/hasSuperCategory"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has direct supercategory</core:prefLabel>
<core:scopeNote rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</core:scopeNote>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasFromNode">
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/networkConnection"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The connections at the abstract level of a network. Note this is directed but the parent is the undirected version</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has From Node</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/networkConnection">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Abstract connection for when connections are undirected</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Network Connection</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasIncumbent">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">What equipment or person is currently in this node. Note to create a temporal view make a TemporalRelation for this property</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Incumbent</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/memberOf">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">What group the member is in</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Member Of</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasNavigationalChild">
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/hasNavigationalParent"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Used for informal hierarchical taxonomies. Supports polyhierarchies</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Navigational Child</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasNavigationalParent">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Used for informal hierarchical taxonomies. Supports polyhierarchies</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Navigational Parent</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/partOf">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The transitive version of directPartOf</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Part Of</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasPhysicalLocation">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Place"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Where something is located</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Physical Location</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasStreetAddress">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/BuildingAddress"/>
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/streetAddressOf"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A place that can be found on a map, has geo coordinates; you could live or work there.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Street Address</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/subTaskOf">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">All the upper tasks this task belongs to</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sub Task Of</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasToNode">
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/networkConnection"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The connections at the abstract level of a network. Note this is directed but the parent is the undirected version</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has To Node</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasUniqueNavigationalParent">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/hasNavigationalParent"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Used for taxos that must have single parents</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Unique Navigational Parent</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/hasUniqueSuperCategory">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/hasSuperCategory"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Used for taxos that must have single parents</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has Unique Super Category</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/identifies">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The thing the identifier refers to.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Identifies</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/lastModifiedOn">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/actual"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Date that something was modified.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Last Modified On</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/owns">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Organization"/>
<rdf:Description rdf:about="https://ontologies.semanticarts.com/gist/Person"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Possessing and controlling. Ultimate form of ownership is the right to destroy. Long list of potential Range classes</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Owns</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/parentOf">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Biological Parent</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Parent Of</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/permanentGeoOccupiedBy">
<owl:inverseOf rdf:resource="https://ontologies.semanticarts.com/gist/permanentGeoOccupies"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">What is in the fixed location</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Permanent Geo Occupied By</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/planned">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dates that were in the future at the time they were made.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Planned</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/produces">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The subject creates the object.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Produces</core:prefLabel>
<core:example rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A task produces a deliverable.</core:example>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/recognizes">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Recognizes</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Recognizes</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/recordedOn">
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:subPropertyOf rdf:resource="https://ontologies.semanticarts.com/gist/actual"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Date that something was posted, not necessarily the date it occurred. Must be after the occurred date, but could be before or after the planned date. (Unusual, but I could record today that I expected to be paid last week.)</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Recorded On</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/requires">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/Intention"/>
<rdfs:range rdf:resource="https://ontologies.semanticarts.com/gist/Behavior"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An intention that sets out a state of satisfaction (you are required to drive on right side of the road)</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Requires</core:prefLabel>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="https://ontologies.semanticarts.com/gist/viableRange">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The area over which the sensor can sense (might be a small geospatial area or a specific wire in a circuit)</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Viable Range</core:prefLabel>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/latitude">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/GeoPoint"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Degrees above or below equator</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Latitude</core:prefLabel>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/longitude">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/GeoPoint"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Degrees from GM</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Longitude</core:prefLabel>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/uniqueText">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This is used for the actual value of a key or ID where you don't want the possibility of having more than one.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Unique Text</core:prefLabel>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/decimalValue">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/Magnitude"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The actual value of a magnitude.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Decimal Value</core:prefLabel>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/name">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relates an individual to a casual name.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Name</core:prefLabel>
<core:scopeNote rdf:datatype="http://www.w3.org/2001/XMLSchema#string">For more formal use, consider using a sub property of the object property, identifiedBy.</core:scopeNote>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/convertToBase">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/UnitOfMeasure"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The conversion factor used to get to the base unit. E.g., multiplying by 0.0254 gets you from inches to meters. Divide by this number to go the other way. Used in conjunction with conversionOffset to convert from one unit to another.
Degrees K = (Degrees F - conversionOffset) * convertToBase. Or K = (F-(-469.67)) * (5/9). To go the other way: F = (K * 9/5) -469.67. Try it on Google.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ConvertToBase</core:prefLabel>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/hasTag">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Used for folksonomy style categories (non controlled vocabulary)</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has Tag</core:prefLabel>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/conversionOffset">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/UnitOfMeasure"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">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.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Conversion Offset</core:prefLabel>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/containedText">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Links to the string corresponding to Text</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Contained Text</core:prefLabel>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/epoch">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Seconds since 1/1/1970 UTC (unix time )</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Epoch</core:prefLabel>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/localDate">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relates a TimeInstant to a string indicating what the local date is.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Local Date</core:prefLabel>
<core:altLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LD</core:altLabel>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/localDateTime">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relates a TimeInstant to an xsd:dateTime literal representing the local date and time.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Local Date Time</core:prefLabel>
<core:altLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LDT</core:altLabel>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/localTime">
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relates a TimeInstant to a string indicating what the local time is.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Local Time</core:prefLabel>
<core:altLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LT</core:altLabel>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/universalDate">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relates a TimeInstant to a string indicating what the universal date is.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Universal Date</core:prefLabel>
<core:altLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UD</core:altLabel>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:about="https://ontologies.semanticarts.com/gist/universalDateTime">
<rdfs:domain rdf:resource="https://ontologies.semanticarts.com/gist/TimeInstant"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:isDefinedBy rdf:resource="https://ontologies.semanticarts.com/o/gistCore"/>
<core:definition rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Relates a TimeInstant to an xsd:dateTime literal representing the universal time.</core:definition>
<core:prefLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Universal Date Time</core:prefLabel>
<core:altLabel rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UDT</core:altLabel>