forked from semanticarts/gist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgistCore.owl
3742 lines (3445 loc) · 171 KB
/
gistCore.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" encoding="UTF-8"?>
<!DOCTYPE rdf:RDF [
<!ENTITY gist "https://ontologies.semanticarts.com/gist/">
<!ENTITY owl "http://www.w3.org/2002/07/owl#">
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
]>
<rdf:RDF
xmlns="https://ontologies.semanticarts.com/o/gistCore#"
xmlns:gist="https://ontologies.semanticarts.com/gist/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<owl:Ontology rdf:about="https://ontologies.semanticarts.com/o/gistCore">
<rdfs:label rdf:datatype="&xsd;string">gistCore</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">Gist is a minimalist upper ontology created by Semantic Arts</rdfs:comment>
<owl:versionIRI rdf:resource="https://ontologies.semanticarts.com/o/gistCoreX.x.x"/>
<gist:license rdf:datatype="&xsd;string">https://creativecommons.org/licenses/by-sa/3.0/</gist:license>
</owl:Ontology>
<owl:AnnotationProperty rdf:about="&rdfs;comment">
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&rdfs;label">
</owl:AnnotationProperty>
<owl:Class rdf:about="&gist;Account">
<rdfs:label rdf:datatype="&xsd;string">Account</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">An agreement having a balance, as in a bank account, or credit card account, or Accounts Receivable account.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Agreement">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasMagnitude"/>
<owl:someValuesFrom rdf:resource="&gist;Balance"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;Actuator">
<rdfs:subClassOf rdf:resource="&gist;Equipment"/>
<rdfs:label rdf:datatype="&xsd;string">Actuator</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A device that can affect the real world via a message interface</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;Address">
<rdfs:subClassOf rdf:resource="&gist;Content"/>
<rdfs:label rdf:datatype="&xsd;string">Address</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A reference to a place (real or virtual) that can be located by some routing algorithm, and where messages or things can be sent to or retrieved from. E.g. PO Box or URL to a PDF file.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;Agreement">
<rdfs:label rdf:datatype="&xsd;string">Agreement</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">Something which two or more People or Organizations mutually commit to do.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Commitment">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasParty"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Organization">
</rdf:Description>
<rdf:Description rdf:about="&gist;Person">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasDirectPart"/>
<owl:onClass rdf:resource="&gist;Obligation"/>
<owl:minQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">2</owl:minQualifiedCardinality>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;Area">
<rdfs:label rdf:datatype="&xsd;string">Area</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A measurement of two-dimensional space.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Magnitude">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasUoM"/>
<owl:someValuesFrom rdf:resource="&gist;AreaUnit"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;AreaUnit">
<rdfs:label rdf:datatype="&xsd;string">Area Unit</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A unit of two-dimensional area, such as square inches or hectares.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;ProductUnit">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;multiplicand"/>
<owl:onClass rdf:resource="&gist;DistanceUnit"/>
<owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;multiplier"/>
<owl:onClass rdf:resource="&gist;DistanceUnit"/>
<owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;Artifact">
<rdfs:label rdf:datatype="&xsd;string">Artifact</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">An intentional person made thing, could be physical or content</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Building">
</rdf:Description>
<rdf:Description rdf:about="&gist;Content">
</rdf:Description>
<rdf:Description rdf:about="&gist;Equipment">
</rdf:Description>
<rdf:Description rdf:about="&gist;IntellectualProperty">
</rdf:Description>
<rdf:Description rdf:about="&gist;PhysicalSubstance">
</rdf:Description>
</owl:unionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasGoal"/>
<owl:someValuesFrom rdf:resource="&gist;Function"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;Aspect">
<rdfs:subClassOf rdf:resource="&gist;Category"/>
<rdfs:label rdf:datatype="&xsd;string">Aspect</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A very general term for the characteristic of something that is being measured. E.g., property (height) or a process (cycle time) or a behavior (loyalty).</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;Balance">
<rdfs:label rdf:datatype="&xsd;string">Balance</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">An amount decremented or incremented by a series of transactions.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Magnitude">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;affectedBy"/>
<owl:someValuesFrom rdf:resource="&gist;Transaction"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;BaseUnit">
<rdfs:subClassOf rdf:resource="&gist;SimpleUnitOfMeasure"/>
<rdfs:label rdf:datatype="&xsd;string">Base Unit</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A primitive unit that cannot be decomposed into other units. It can be converted from one measurement system to another. The base units in gist are the seven primitive units from the System Internationale (SI): (meter, second, kilogram, ampere, kelvin, mole, candela), plus three convenience ones: each. bit and usDollar.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:oneOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;_USDollar">
</rdf:Description>
<rdf:Description rdf:about="&gist;_ampere">
</rdf:Description>
<rdf:Description rdf:about="&gist;_bit">
</rdf:Description>
<rdf:Description rdf:about="&gist;_candela">
</rdf:Description>
<rdf:Description rdf:about="&gist;_each">
</rdf:Description>
<rdf:Description rdf:about="&gist;_kelvin">
</rdf:Description>
<rdf:Description rdf:about="&gist;_kilogram">
</rdf:Description>
<rdf:Description rdf:about="&gist;_meter">
</rdf:Description>
<rdf:Description rdf:about="&gist;_mole">
</rdf:Description>
<rdf:Description rdf:about="&gist;_second">
</rdf:Description>
</owl:oneOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;Behavior">
<rdfs:subClassOf rdf:resource="&gist;Category"/>
<rdfs:label rdf:datatype="&xsd;string">Behavior</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A way of categorizing events. E.g., differentiating drilling versus cutting.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;Building">
<rdfs:subClassOf rdf:resource="&gist;Landmark"/>
<rdfs:label rdf:datatype="&xsd;string">Building</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A man-made structure for dwelling or working.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;BuildingAddress">
<rdfs:subClassOf rdf:resource="&gist;Address"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;streetAddressOf"/>
<owl:someValuesFrom rdf:resource="&gist;Building"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label rdf:datatype="&xsd;string">Building Address</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">An address to which you can send mail, or that you could find in the physical world.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;BundledCatalogItem">
<rdfs:label rdf:datatype="&xsd;string">Bundled Catalog Item</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">Any combination of descriptions of things offered together. Could be a kit (several parts offered together), but could also be a product plus a warranty.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;CatalogItem">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasDirectPart"/>
<owl:someValuesFrom rdf:resource="&gist;CatalogItem"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;CatalogItem">
<rdfs:subClassOf rdf:resource="&gist;Specification"/>
<rdfs:label rdf:datatype="&xsd;string">Catalog Item</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A description of a product or service to be delivered, given in a sufficient level of detail that a receiver could determine whether delivery constituted discharge of the obligation to deliver.</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">NOTE: In short, an unambiguous characterization of what it is that a potential buyer is paying for.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;Category">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;allocatedBy"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;IntellectualProperty">
</rdf:Description>
<rdf:Description rdf:about="&gist;Organization">
</rdf:Description>
<rdf:Description rdf:about="&gist;Person">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label rdf:datatype="&xsd;string">Category</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A concept or label used to categorize other instances informally. Things that can be thought of as types are usually Categories.</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">EXAMPLE: Tags used in folksonomies; formal definitions from other systems.</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">NOTE: Often a 'bucket' can be modeled either as an owl:Class or as a gist:Category. Use the latter if you don't care much about the formal structure of the different types, or if there is a whole hierarchy of types that are going to be managed by a group separate from the ontology developers. The formal structure may be defined elsewhere and linked to, if necessary.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;CoherentProductUnit">
<rdfs:label rdf:datatype="&xsd;string">Coherent Product Unit</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A ratio unit whose numerator and denominator reduce to 1</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;ProductUnit">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;multiplicand"/>
<owl:allValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;BaseUnit">
</rdf:Description>
<rdf:Description rdf:about="&gist;CoherentProductUnit">
</rdf:Description>
<rdf:Description rdf:about="&gist;CoherentRatioUnit">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;multiplier"/>
<owl:allValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;BaseUnit">
</rdf:Description>
<rdf:Description rdf:about="&gist;CoherentProductUnit">
</rdf:Description>
<rdf:Description rdf:about="&gist;CoherentRatioUnit">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;CoherentRatioUnit">
<rdfs:label rdf:datatype="&xsd;string">Coherent Ratio Unit</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A ratio unit whose numerator and denominator reduce to 1</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;RatioUnit">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;denominator"/>
<owl:allValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;BaseUnit">
</rdf:Description>
<rdf:Description rdf:about="&gist;CoherentProductUnit">
</rdf:Description>
<rdf:Description rdf:about="&gist;CoherentRatioUnit">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;numerator"/>
<owl:allValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;BaseUnit">
</rdf:Description>
<rdf:Description rdf:about="&gist;CoherentProductUnit">
</rdf:Description>
<rdf:Description rdf:about="&gist;CoherentRatioUnit">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:allValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;CoherentUnit">
<rdfs:label rdf:datatype="&xsd;string">Coherent Unit</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A unit that is expressed in units that have no conversions. It may be a simple unit. It may also be a product or ratio unit that bottoms out in simple units.</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">Example: a simple unit: kilogram</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">Example: the standard unit for acceleration is meters per square second (feet per square second requires a conversion)</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">NOTE: coherent unit is the physics term for this, informally you might think of it as the standard unit for a given dimension.</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">NOTE: in principle, the CoherentUnit for a ProductUnit or RatioUnit can be inferred by recursively decomposing the products and ratios into their respective CoherentUnits, bottoming out in SimpleUnits</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;BaseUnit">
</rdf:Description>
<rdf:Description rdf:about="&gist;CoherentProductUnit">
</rdf:Description>
<rdf:Description rdf:about="&gist;CoherentRatioUnit">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;Collection">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasMember"/>
<owl:someValuesFrom rdf:resource="&owl;Thing"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label rdf:datatype="&xsd;string">Collection</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">Any identifiable grouping of instances. For instance, a jury is a collection of people.</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">EXAMPLES: A jury is a group of people, a financial ledger is a collection of transaction entries; a route is an (ordered) collection of segments.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;Commitment">
<rdfs:label rdf:datatype="&xsd;string">Commitment</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">An obligation (possibly unilateral).</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Requirement">
</rdf:Description>
<rdf:Description rdf:about="&gist;Restriction">
</rdf:Description>
</owl:unionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;categorizedBy"/>
<owl:someValuesFrom rdf:resource="&gist;DegreeOfCommitment"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;giver"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Organization">
</rdf:Description>
<rdf:Description rdf:about="&gist;Person">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;Component">
<rdfs:label rdf:datatype="&xsd;string">Component</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A component is an artifact that contributes to a system. Could be a simple mechanical component, such as the float contributing to the toilet tank maintaining a constant level, or much more complex as in the internet of things.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Artifact">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;contributesTo"/>
<owl:someValuesFrom rdf:resource="&gist;System"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;ContemporaneousEvent">
<rdfs:label rdf:datatype="&xsd;string">Contemporaneous Event</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">An event that actually started after the present time. When we record an end time it ceases to be contemporaneous</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">NOTE: All contemporaneous events eventually end and, due to the nature of the open world, we can never be sure that a contemporaneous event hasn't ended. As a result, this is really a contemporaneous and historical event.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Event">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;actualStart"/>
<owl:someValuesFrom rdf:resource="&gist;TimeInstant"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;actualEnd"/>
<owl:onClass rdf:resource="&gist;TimeInstant"/>
<owl:maxQualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">0</owl:maxQualifiedCardinality>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;Content">
<rdfs:label rdf:datatype="&xsd;string">Content</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A document, program, image, etc. (Categories are not content until they are written down.)</rdfs:comment>
<owl:disjointWith rdf:resource="&gist;GeoPoint"/>
<owl:disjointWith rdf:resource="&gist;GeoRegion"/>
<owl:disjointWith rdf:resource="&gist;Organization"/>
<owl:disjointWith rdf:resource="&gist;PhysicalIdentifiableItem"/>
<owl:disjointWith rdf:resource="&gist;PhysicalSubstance"/>
<owl:disjointWith rdf:resource="&gist;TimeInstant"/>
<owl:disjointWith rdf:resource="&gist;UnitOfMeasure"/>
</owl:Class>
<owl:Class rdf:about="&gist;ContentExpression">
<rdfs:subClassOf rdf:resource="&gist;Content"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;categorizedBy"/>
<owl:someValuesFrom rdf:resource="&gist;GeneralMediaType"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;expressedIn"/>
<owl:someValuesFrom rdf:resource="&gist;Language"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label rdf:datatype="&xsd;string">Content Expression</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">Intellectual Property reduced to text, audio etc. If it contains text (written or spoken), it may be in a language.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;ContingentEvent">
<rdfs:label rdf:datatype="&xsd;string">Contingent Event</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">An event with a probability of happening in the future, and usually dependent upon some other event or condition.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Event">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasMagnitude"/>
<owl:someValuesFrom rdf:resource="&gist;Percentage"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;plannedEnd"/>
<owl:someValuesFrom rdf:resource="&gist;TimeInstant"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;plannedStart"/>
<owl:someValuesFrom rdf:resource="&gist;TimeInstant"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;ContingentObligation">
<rdfs:label rdf:datatype="&xsd;string">Contingent Obligation</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">An obligation that is not yet firm. There is some contingent event, the occurrence of which will cause the obligation to become firm.</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">NOTE: A contingent obligation might have a getter counterparty (as in the case of insurance); but it might not (as in the case of an offer).</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Commitment">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;giver"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Organization">
</rdf:Description>
<rdf:Description rdf:about="&gist;Person">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;triggeredBy"/>
<owl:someValuesFrom rdf:resource="&gist;Event"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;Contract">
<rdfs:label rdf:datatype="&xsd;string">Contract</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">an Agreement which can be enforced by law</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Agreement">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasJurisdiction"/>
<owl:someValuesFrom rdf:resource="&gist;GovernmentOrganization"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;ContractTerm">
<rdfs:subClassOf rdf:resource="&gist;Specification"/>
<rdfs:label rdf:datatype="&xsd;string">Contract Term</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A specification of some aspect of a contract.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;ControlledVocabulary">
<rdfs:label rdf:datatype="&xsd;string">Controlled Vocabulary</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A collection of terms approved and managed by some organization or person.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Collection">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;governedBy"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Organization">
</rdf:Description>
<rdf:Description rdf:about="&gist;Person">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasMember"/>
<owl:someValuesFrom rdf:resource="&gist;Category"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;Controller">
<rdfs:label rdf:datatype="&xsd;string">Controller</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A device that takes messages or signals from a sensor and decides through algorithms whether and which actuator to fire via messages</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Equipment">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;categorizedBy"/>
<owl:someValuesFrom rdf:resource="&gist;ControllerType"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;directs"/>
<owl:someValuesFrom rdf:resource="&gist;Actuator"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;respondsTo"/>
<owl:someValuesFrom rdf:resource="&gist;Sensor"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;ControllerType">
<rdfs:subClassOf rdf:resource="&gist;Category"/>
<rdfs:label rdf:datatype="&xsd;string">Controller type</rdfs:label>
</owl:Class>
<owl:Class rdf:about="&gist;Count">
<rdfs:label rdf:datatype="&xsd;string">Count</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A measure that involves countable amounts (?eaches? as well as cases, etc.). Can be decimal.</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">NOTE: Count is not disjoint with all the other magnitudes, as there are some magnitudes that could conceivably be counted.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Magnitude">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasUoM"/>
<owl:someValuesFrom rdf:resource="&gist;CountingUnit"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;CountingUnit">
<rdfs:label rdf:datatype="&xsd;string">Counting Unit</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A unit of counting, especially ?each?, but also units such as dozens.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;SimpleUnitOfMeasure">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasBaseUnit"/>
<owl:hasValue rdf:resource="&gist;_each"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;CountryGovernment">
<rdfs:label rdf:datatype="&xsd;string">Country Government</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">The geopolitical body that runs a geopolitical region recognized as a country.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;GovernmentOrganization">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;governs"/>
<owl:someValuesFrom rdf:resource="&gist;GeoRegion"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;directlyRecognizedBy"/>
<owl:hasValue rdf:resource="&gist;_unitedNations"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;CurrencyUnit">
<rdfs:label rdf:datatype="&xsd;string">Currency Unit</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A unit of money. Note: this is the only unit whose conversion factors include time (i.e., the conversion rates change on a daily basis).</rdfs:comment>
<owl:disjointWith rdf:resource="&gist;DataSizeUnit"/>
<owl:disjointWith rdf:resource="&gist;DistanceUnit"/>
<owl:disjointWith rdf:resource="&gist;DurationUnit"/>
<owl:disjointWith rdf:resource="&gist;ElectricalCurrentUnit"/>
<owl:disjointWith rdf:resource="&gist;LuminousIntensityUnit"/>
<owl:disjointWith rdf:resource="&gist;MassUnit"/>
<owl:disjointWith rdf:resource="&gist;MoleUnit"/>
<owl:disjointWith rdf:resource="&gist;TemperatureUnit"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;SimpleUnitOfMeasure">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasBaseUnit"/>
<owl:hasValue rdf:resource="&gist;_USDollar"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;DataSizeUnit">
<rdfs:label rdf:datatype="&xsd;string">Data Size Unit</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A unit to measure amounts of digital information.</rdfs:comment>
<owl:disjointWith rdf:resource="&gist;DistanceUnit"/>
<owl:disjointWith rdf:resource="&gist;DurationUnit"/>
<owl:disjointWith rdf:resource="&gist;ElectricalCurrentUnit"/>
<owl:disjointWith rdf:resource="&gist;LuminousIntensityUnit"/>
<owl:disjointWith rdf:resource="&gist;MassUnit"/>
<owl:disjointWith rdf:resource="&gist;MoleUnit"/>
<owl:disjointWith rdf:resource="&gist;TemperatureUnit"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;SimpleUnitOfMeasure">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasBaseUnit"/>
<owl:hasValue rdf:resource="&gist;_bit"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;DateInstant">
<rdfs:label rdf:datatype="&xsd;string">Date Instant</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A point in time known only to the accuracy of one day. Say the signing of the declaration of independence on 7/4/1776</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;TimeInstant">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasPrecision"/>
<owl:hasValue rdf:resource="&gist;_one_day"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;DegreeOfCommitment">
<rdfs:subClassOf rdf:resource="&gist;Category"/>
<rdfs:label rdf:datatype="&xsd;string">Degree Of Commitment</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">EXAMPLE: A car rental typically has a lower degree of commitment than an airfare reservation.</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">The difficulty of reversing a commitment.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;DistanceUnit">
<rdfs:label rdf:datatype="&xsd;string">Distance Unit</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A unit to measure linear distance, such as feet or kilometers.</rdfs:comment>
<owl:disjointWith rdf:resource="&gist;DurationUnit"/>
<owl:disjointWith rdf:resource="&gist;ElectricalCurrentUnit"/>
<owl:disjointWith rdf:resource="&gist;LuminousIntensityUnit"/>
<owl:disjointWith rdf:resource="&gist;MassUnit"/>
<owl:disjointWith rdf:resource="&gist;MoleUnit"/>
<owl:disjointWith rdf:resource="&gist;TemperatureUnit"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;SimpleUnitOfMeasure">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasBaseUnit"/>
<owl:hasValue rdf:resource="&gist;_meter"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;Duration">
<rdfs:label rdf:datatype="&xsd;string">Duration</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">EXAMPLE: One week (or seven days), but not Jan 1, 2008 to Jan 7, 2008 (which is an interval). Intervals have durations, but are not themselves durations.</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">Time, but not on a timeline.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Magnitude">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasUoM"/>
<owl:someValuesFrom rdf:resource="&gist;DurationUnit"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;DurationUnit">
<rdfs:label rdf:datatype="&xsd;string">Duration Unit</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A unit to measure passage of time: hours, days, years.</rdfs:comment>
<owl:disjointWith rdf:resource="&gist;ElectricalCurrentUnit"/>
<owl:disjointWith rdf:resource="&gist;LuminousIntensityUnit"/>
<owl:disjointWith rdf:resource="&gist;MassUnit"/>
<owl:disjointWith rdf:resource="&gist;MoleUnit"/>
<owl:disjointWith rdf:resource="&gist;TemperatureUnit"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;SimpleUnitOfMeasure">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasBaseUnit"/>
<owl:hasValue rdf:resource="&gist;_second"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;ElectricCurrent">
<rdfs:label rdf:datatype="&xsd;string">Electric Current</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A flow of electric charge.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Magnitude">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasUoM"/>
<owl:someValuesFrom rdf:resource="&gist;ElectricalCurrentUnit"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;ElectricalCurrentUnit">
<rdfs:label rdf:datatype="&xsd;string">Electrical Current Unit</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">Unit of electrical current, which is charge per unit time. The SI unit is the ampere. (Note that electrical current is a composed unit.)</rdfs:comment>
<owl:disjointWith rdf:resource="&gist;LuminousIntensityUnit"/>
<owl:disjointWith rdf:resource="&gist;MassUnit"/>
<owl:disjointWith rdf:resource="&gist;MoleUnit"/>
<owl:disjointWith rdf:resource="&gist;TemperatureUnit"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;SimpleUnitOfMeasure">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasBaseUnit"/>
<owl:hasValue rdf:resource="&gist;_ampere"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;ElectronicMessageAddress">
<rdfs:subClassOf rdf:resource="&gist;Address"/>
<rdfs:label rdf:datatype="&xsd;string">Electronic Message Address</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">Any place an electronic message (email, fax, etc.) can be sent.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;EmailAddress">
<rdfs:subClassOf rdf:resource="&gist;ElectronicMessageAddress"/>
<rdfs:label rdf:datatype="&xsd;string">Email Address</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">An email address is a unique identifier for an email account. It is used to both send and receive email messages over the Internet.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;Equipment">
<rdfs:label rdf:datatype="&xsd;string">Equipment</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">Tangible property other than land or buildings. Any kind of equipment, could be machine, router, car etc.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;PhysicalIdentifiableItem">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;categorizedBy"/>
<owl:someValuesFrom rdf:resource="&gist;EquipmentType"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;EquipmentType">
<rdfs:subClassOf rdf:resource="&gist;Category"/>
<rdfs:label rdf:datatype="&xsd;string">Equipment Type</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">Categories of equipment</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;Event">
<rdfs:label rdf:datatype="&xsd;string">Event</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">Something happening over some period of time, often characterized as some kind of activity being carried out by some person, organization, or software application.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;characterizedAs"/>
<owl:someValuesFrom rdf:resource="&gist;Behavior"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;end"/>
<owl:someValuesFrom rdf:resource="&gist;TimeInstant"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;start"/>
<owl:someValuesFrom rdf:resource="&gist;TimeInstant"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;Extent">
<rdfs:label rdf:datatype="&xsd;string">Extent</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A measure of distance, which could be distances over the Earth, and could also be height, width, length, depth, girth, etc.</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;Magnitude">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;hasUoM"/>
<owl:someValuesFrom rdf:resource="&gist;DistanceUnit"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;FormattedContent">
<rdfs:label rdf:datatype="&xsd;string">Formatted Content</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">Content which is in a particular format. (E.g., HTML, PDF, JPG.)</rdfs:comment>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&gist;ContentExpression">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&gist;expressedIn"/>
<owl:someValuesFrom rdf:resource="&gist;MimeType"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<owl:Class rdf:about="&gist;Function">
<rdfs:subClassOf rdf:resource="&gist;Intention"/>
<rdfs:label rdf:datatype="&xsd;string">Function</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">A function is what a specific made item is intended to do. For instance: transmit electricity, provide ballast, control ambient temperature.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;GeneralMediaType">
<rdfs:subClassOf rdf:resource="&gist;Category"/>
<rdfs:label rdf:datatype="&xsd;string">General Media Type</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">EXAMPLE: audio, still image, video, textual, physical (e.g., a statue), or performance (i.e. a play). Or it could be oil or pastel for a painting.</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">The real-world media type for content.</rdfs:comment>
</owl:Class>
<owl:Class rdf:about="&gist;GeoPoint">
<rdfs:label rdf:datatype="&xsd;string">Geo Point</rdfs:label>
<rdfs:comment rdf:datatype="&xsd;string">An individual point on the Earth's surface, identified by latitude, longitude and altitude. If altitude is missing, it is assumed to be at the Earth's surface. However, altitude is measured from sea level. these points are to the WGS-84 coordinate system using the GPS decimal lat/long</rdfs:comment>
<rdfs:comment rdf:datatype="&xsd;string">NOTE: Assume coordinate system used by Google (WGS 84 Web Mercator).</rdfs:comment>
<owl:disjointWith rdf:resource="&gist;IntellectualProperty"/>
<owl:disjointWith rdf:resource="&gist;Intention"/>
<owl:disjointWith rdf:resource="&gist;Language"/>
<owl:disjointWith rdf:resource="&gist;Magnitude"/>
<owl:disjointWith rdf:resource="&gist;Organization"/>
<owl:disjointWith rdf:resource="&gist;PhysicalIdentifiableItem"/>
<owl:disjointWith rdf:resource="&gist;PhysicalSubstance"/>
<owl:disjointWith rdf:resource="&gist;TimeInstant"/>
<owl:disjointWith rdf:resource="&gist;UnitOfMeasure"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">