-
Notifications
You must be signed in to change notification settings - Fork 18
/
gistCore.ttl
3903 lines (3627 loc) · 131 KB
/
gistCore.ttl
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
@prefix : <https://w3id.org/semanticarts/ontology/gistCore#> .
@prefix gist: <https://w3id.org/semanticarts/ns/ontology/gist/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://w3id.org/semanticarts/ontology/gistCore>
a owl:Ontology ;
owl:versionIRI <https://w3id.org/semanticarts/ontology/gistCoreX.x.x> ;
skos:definition "gist is a minimalist upper ontology created by Semantic Arts."^^xsd:string ;
skos:prefLabel "gist"^^xsd:string ;
sh:declare gist:_PrefixDeclaration_gist ;
gist:license "https://creativecommons.org/licenses/by-sa/3.0/"^^xsd:string ;
.
gist:Account
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Agreement
[
a owl:Restriction ;
owl:onProperty gist:hasMagnitude ;
owl:someValuesFrom gist:Balance ;
]
) ;
] ;
skos:definition "An agreement having a balance, as in a bank account, or credit card account, or Accounts Receivable account."^^xsd:string ;
skos:prefLabel "Account"^^xsd:string ;
.
gist:Actuator
a owl:Class ;
rdfs:subClassOf gist:Equipment ;
skos:definition "A device that can affect the real world via a message interface"^^xsd:string ;
skos:prefLabel "Actuator"^^xsd:string ;
.
gist:Address
a owl:Class ;
rdfs:subClassOf gist:Content ;
skos:definition "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."^^xsd:string ;
skos:prefLabel "Address"^^xsd:string ;
.
gist:Agreement
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Commitment
[
a owl:Restriction ;
owl:onProperty gist:hasParty ;
owl:someValuesFrom [
a owl:Class ;
owl:unionOf (
gist:Organization
gist:Person
) ;
] ;
]
[
a owl:Restriction ;
owl:onProperty gist:hasDirectPart ;
owl:onClass gist:Obligation ;
owl:minQualifiedCardinality "2"^^xsd:nonNegativeInteger ;
]
) ;
] ;
skos:definition "Something which two or more People or Organizations mutually commit to do."^^xsd:string ;
skos:prefLabel "Agreement"^^xsd:string ;
.
gist:Area
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Magnitude
[
a owl:Restriction ;
owl:onProperty gist:hasUnitOfMeasure ;
owl:someValuesFrom gist:AreaUnit ;
]
) ;
] ;
skos:definition "A measurement of two-dimensional space."^^xsd:string ;
skos:prefLabel "Area"^^xsd:string ;
.
gist:AreaUnit
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:ProductUnit
[
a owl:Restriction ;
owl:onProperty gist:hasMultiplicand ;
owl:onClass gist:DistanceUnit ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
]
[
a owl:Restriction ;
owl:onProperty gist:hasMultiplier ;
owl:onClass gist:DistanceUnit ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
]
) ;
] ;
skos:definition "A unit of two-dimensional area, such as square inches or hectares."^^xsd:string ;
skos:prefLabel "Area Unit"^^xsd:string ;
.
gist:Artifact
a owl:Class ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty gist:hasGoal ;
owl:someValuesFrom gist:Function ;
] ;
skos:definition "An intentional, person-made thing, which could be physical or content"^^xsd:string ;
skos:prefLabel "Artifact"^^xsd:string ;
.
gist:Aspect
a owl:Class ;
rdfs:subClassOf gist:Category ;
skos:definition "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)."^^xsd:string ;
skos:prefLabel "Aspect"^^xsd:string ;
.
gist:Balance
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Magnitude
[
a owl:Restriction ;
owl:onProperty gist:isAffectedBy ;
owl:someValuesFrom gist:Transaction ;
]
) ;
] ;
skos:definition "An amount decremented or incremented by a series of transactions."^^xsd:string ;
skos:prefLabel "Balance"^^xsd:string ;
.
gist:BaseUnit
a owl:Class ;
rdfs:subClassOf gist:SimpleUnitOfMeasure ;
owl:equivalentClass [
a owl:Class ;
owl:oneOf (
gist:_USDollar
gist:_ampere
gist:_bit
gist:_candela
gist:_each
gist:_kelvin
gist:_kilogram
gist:_meter
gist:_mole
gist:_second
) ;
] ;
skos:definition "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."^^xsd:string ;
skos:prefLabel "Base Unit"^^xsd:string ;
.
gist:Behavior
a owl:Class ;
rdfs:subClassOf gist:Category ;
skos:definition "A way of categorizing events. E.g., differentiating drilling versus cutting."^^xsd:string ;
skos:prefLabel "Behavior"^^xsd:string ;
.
gist:Building
a owl:Class ;
rdfs:subClassOf
gist:Artifact ,
gist:Landmark
;
skos:definition "A relatively permanent man-made structure situated on a plot of land, having a roof and walls, commonly used for dwelling, entertaining, or working."^^xsd:string ;
skos:example
"A house, school, store, factory, chicken coop."^^xsd:string ,
"Negative examples: houseboats (not built on land), caves (not man-made), food trucks and RVs (not permanently situated)."^^xsd:string
;
skos:prefLabel "Building"^^xsd:string ;
skos:scopeNote "User discretion can be applied to edge cases: e.g., is a traditional yurt 'relatively permanently situated' although it is portable and has a tent-like construction?"^^xsd:string ;
.
gist:BundledCatalogItem
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:CatalogItem
[
a owl:Restriction ;
owl:onProperty gist:hasDirectPart ;
owl:someValuesFrom gist:CatalogItem ;
]
) ;
] ;
skos:definition "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."^^xsd:string ;
skos:prefLabel "Bundled Catalog Item"^^xsd:string ;
.
gist:CatalogItem
a owl:Class ;
rdfs:subClassOf gist:Specification ;
skos:definition "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."^^xsd:string ;
skos:prefLabel "Catalog Item"^^xsd:string ;
skos:scopeNote "In short, an unambiguous characterization of what it is that a potential buyer is paying for."^^xsd:string ;
.
gist:Category
a owl:Class ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty gist:isAllocatedBy ;
owl:someValuesFrom [
a owl:Class ;
owl:unionOf (
gist:IntellectualProperty
gist:Organization
gist:Person
) ;
] ;
] ;
skos:definition "A concept or label used to categorize other instances without specifying any formal semantics. Things that can be thought of as types are often categories."^^xsd:string ;
skos:example "Tags used in folksonomies; formal definitions from other systems."^^xsd:string ;
skos:prefLabel "Category"^^xsd:string ;
skos:scopeNote "Often a type 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."^^xsd:string ;
.
gist:CoherentProductUnit
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:ProductUnit
[
a owl:Restriction ;
owl:onProperty gist:hasMultiplicand ;
owl:allValuesFrom [
a owl:Class ;
owl:unionOf (
gist:BaseUnit
gist:CoherentProductUnit
gist:CoherentRatioUnit
) ;
] ;
]
[
a owl:Restriction ;
owl:onProperty gist:hasMultiplier ;
owl:allValuesFrom [
a owl:Class ;
owl:unionOf (
gist:BaseUnit
gist:CoherentProductUnit
gist:CoherentRatioUnit
) ;
] ;
]
) ;
] ;
skos:definition "A product unit both of whose factors are coherent units. The conversion factor is 1."^^xsd:string ;
skos:example "Square meter, an area unit."^^xsd:string ;
skos:prefLabel "Coherent Product Unit"^^xsd:string ;
.
gist:CoherentRatioUnit
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:RatioUnit
[
a owl:Restriction ;
owl:onProperty gist:hasDenominator ;
owl:allValuesFrom [
a owl:Class ;
owl:unionOf (
gist:BaseUnit
gist:CoherentProductUnit
gist:CoherentRatioUnit
) ;
] ;
]
[
a owl:Restriction ;
owl:onProperty gist:hasNumerator ;
owl:allValuesFrom [
a owl:Class ;
owl:unionOf (
gist:BaseUnit
gist:CoherentProductUnit
gist:CoherentRatioUnit
) ;
] ;
]
) ;
] ;
skos:definition "A ratio unit whose conversion factor is 1."^^xsd:string ;
skos:example "Newton, a force unit also expressed as kg-m/s^2"^^xsd:string ;
skos:prefLabel "Coherent Ratio Unit"^^xsd:string ;
.
gist:CoherentUnit
a owl:Class ;
rdfs:seeAlso <http://www.eim.gr/metrology/measurement-units/si-derived-units/coherent-derived-units/> ;
owl:equivalentClass [
a owl:Class ;
owl:unionOf (
gist:BaseUnit
gist:CoherentProductUnit
gist:CoherentRatioUnit
) ;
] ;
skos:definition "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."^^xsd:string ;
skos:example
"A simple unit: kilogram"^^xsd:string ,
"The standard unit for acceleration is meters per square second (feet per square second requires a conversion)"^^xsd:string
;
skos:prefLabel "Coherent Unit"^^xsd:string ;
skos:scopeNote
"Coherent unit is the physics term for this, informally you might think of it as the standard unit for a given dimension."^^xsd:string ,
"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"^^xsd:string
;
.
gist:Collection
a owl:Class ;
skos:definition "A grouping of things."^^xsd:string ;
skos:example "A jury is a group of people, a financial ledger is a collection of transaction entries; a route is an (ordered) collection of segments."^^xsd:string ;
skos:prefLabel "Collection"^^xsd:string ;
skos:scopeNote "Individuals are placed in the collection using the gist:hasMember property. Collections typically are created because the members are functionally connected in some way. This definition allows a collection to have zero members."^^xsd:string ;
.
gist:Commitment
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
[
a owl:Class ;
owl:unionOf (
gist:Requirement
gist:Restriction
) ;
]
[
a owl:Restriction ;
owl:onProperty gist:hasGiver ;
owl:someValuesFrom [
a owl:Class ;
owl:unionOf (
gist:Organization
gist:Person
) ;
] ;
]
[
a owl:Restriction ;
owl:onProperty gist:isCategorizedBy ;
owl:someValuesFrom gist:DegreeOfCommitment ;
]
) ;
] ;
skos:definition "An obligation (possibly unilateral)."^^xsd:string ;
skos:prefLabel "Commitment"^^xsd:string ;
.
gist:Component
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Artifact
[
a owl:Restriction ;
owl:onProperty gist:contributesTo ;
owl:someValuesFrom gist:System ;
]
) ;
] ;
skos:definition "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."^^xsd:string ;
skos:prefLabel "Component"^^xsd:string ;
.
gist:ContemporaryEvent
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Event
[
a owl:Restriction ;
owl:onProperty gist:actualStartDateTime ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
]
[
a owl:Restriction ;
owl:onProperty gist:actualEndDateTime ;
owl:maxCardinality "0"^^xsd:nonNegativeInteger ;
]
) ;
] ;
skos:definition "An event that has started but has not yet ended."^^xsd:string ;
skos:prefLabel "Contemporary Event"^^xsd:string ;
skos:scopeNote "When the event actually ends, it will cease being contemporary."^^xsd:string ;
.
gist:Content
a owl:Class ;
rdfs:subClassOf gist:Artifact ;
owl:disjointWith
gist:GeoPoint ,
gist:GeoRegion ,
gist:Organization ,
gist:PhysicalIdentifiableItem ,
gist:PhysicalSubstance ,
gist:UnitOfMeasure
;
skos:definition "A document, program, image, etc. (Categories are not content until they are written down.)"^^xsd:string ;
skos:prefLabel "Content"^^xsd:string ;
.
gist:ContentExpression
a owl:Class ;
rdfs:subClassOf
gist:Content ,
[
a owl:Restriction ;
owl:onProperty gist:isCategorizedBy ;
owl:someValuesFrom gist:GeneralMediaType ;
] ,
[
a owl:Restriction ;
owl:onProperty gist:isExpressedIn ;
owl:someValuesFrom gist:Language ;
]
;
skos:definition "Intellectual Property reduced to text, audio etc. If it contains text (written or spoken), it may be in a language."^^xsd:string ;
skos:prefLabel "Content Expression"^^xsd:string ;
.
gist:ContingentEvent
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Event
[
a owl:Restriction ;
owl:onProperty gist:hasMagnitude ;
owl:someValuesFrom [
a owl:Restriction ;
owl:onProperty gist:hasUnitOfMeasure ;
owl:hasValue gist:_percent ;
] ;
]
[
a owl:Restriction ;
owl:onProperty gist:isTriggeredBy ;
owl:someValuesFrom gist:Event ;
]
) ;
] ;
skos:definition "An event with a probability of happening in the future, and usually dependent upon some other event or condition."^^xsd:string ;
skos:example
"Fire insurance is contingent on a particular building burning down"^^xsd:string ,
"Sell 20 shares of stock in a given company when the price drops below $200/share."^^xsd:string ,
"The death benefit payout on a life insurance policy following the death of a specific person."^^xsd:string
;
skos:prefLabel "Contingent Event"^^xsd:string ;
.
gist:ContingentObligation
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Commitment
[
a owl:Restriction ;
owl:onProperty gist:hasGiver ;
owl:someValuesFrom [
a owl:Class ;
owl:unionOf (
gist:Organization
gist:Person
) ;
] ;
]
[
a owl:Restriction ;
owl:onProperty gist:isTriggeredBy ;
owl:someValuesFrom gist:Event ;
]
) ;
] ;
skos:definition "An obligation that is not yet firm. There is some contingent event, the occurrence of which will cause the obligation to become firm."^^xsd:string ;
skos:prefLabel "Contingent Obligation"^^xsd:string ;
skos:scopeNote "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)."^^xsd:string ;
.
gist:Contract
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Agreement
[
a owl:Restriction ;
owl:onProperty gist:isUnderJurisdictionOf ;
owl:someValuesFrom gist:GovernmentOrganization ;
]
) ;
] ;
skos:definition "An Agreement which can be enforced by law"^^xsd:string ;
skos:prefLabel "Contract"^^xsd:string ;
.
gist:ContractTerm
a owl:Class ;
rdfs:subClassOf gist:Specification ;
skos:definition "A specification of some aspect of a contract."^^xsd:string ;
skos:prefLabel "Contract Term"^^xsd:string ;
.
gist:ControlledVocabulary
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Collection
[
a owl:Restriction ;
owl:onProperty gist:hasMember ;
owl:someValuesFrom gist:Category ;
]
[
a owl:Restriction ;
owl:onProperty gist:isGovernedBy ;
owl:someValuesFrom [
a owl:Class ;
owl:unionOf (
gist:Organization
gist:Person
) ;
] ;
]
) ;
] ;
skos:definition "A collection of terms approved and managed by some organization or person."^^xsd:string ;
skos:prefLabel "Controlled Vocabulary"^^xsd:string ;
.
gist:Controller
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Equipment
[
a owl:Restriction ;
owl:onProperty gist:directs ;
owl:someValuesFrom gist:Actuator ;
]
[
a owl:Restriction ;
owl:onProperty gist:isCategorizedBy ;
owl:someValuesFrom gist:ControllerType ;
]
[
a owl:Restriction ;
owl:onProperty gist:respondsTo ;
owl:someValuesFrom gist:Sensor ;
]
) ;
] ;
skos:definition "A device that takes messages or signals from a sensor and decides through algorithms whether and which actuator to fire via messages"^^xsd:string ;
skos:prefLabel "Controller"^^xsd:string ;
.
gist:ControllerType
a owl:Class ;
rdfs:subClassOf gist:Category ;
skos:definition "A kind of controller."^^xsd:string ;
skos:prefLabel "Controller Type"^^xsd:string ;
.
gist:Count
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Magnitude
[
a owl:Restriction ;
owl:onProperty gist:hasUnitOfMeasure ;
owl:someValuesFrom gist:CountingUnit ;
]
) ;
] ;
skos:definition "A measure that involves countable amounts (?eaches? as well as cases, etc.). Can be decimal."^^xsd:string ;
skos:prefLabel "Count"^^xsd:string ;
skos:scopeNote "Count is not disjoint with all the other magnitudes, as there are some magnitudes that could conceivably be counted."^^xsd:string ;
.
gist:CountingUnit
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:SimpleUnitOfMeasure
[
a owl:Restriction ;
owl:onProperty gist:hasBaseUnit ;
owl:hasValue gist:_each ;
]
) ;
] ;
skos:definition "A unit of counting, especially ?each?, but also units such as dozens."^^xsd:string ;
skos:prefLabel "Counting Unit"^^xsd:string ;
.
gist:CountryGeoRegion
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:GovernedGeoRegion
[
a owl:Restriction ;
owl:onProperty gist:isGovernedBy ;
owl:onClass gist:CountryGovernment ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
]
) ;
] ;
skos:definition "A defined geographical area (or areas) governed by exactly one country government."^^xsd:string ;
skos:prefLabel "Country Geo-Region"^^xsd:string ;
.
gist:CountryGovernment
a owl:Class ;
owl:disjointWith gist:SubCountryGovernment ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:GovernmentOrganization
[
a owl:Restriction ;
owl:onProperty [
owl:inverseOf gist:isGovernedBy ;
] ;
owl:onClass gist:CountryGeoRegion ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
]
[
a owl:Restriction ;
owl:onProperty gist:isGovernedBy ;
owl:onClass gist:GovernmentOrganization ;
owl:maxQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
]
) ;
] ;
skos:definition "A Government Organization which asserts both sovereignty (i.e., it is not governed by some other government organization) and governance over an entity generally recognized as a 'country'."^^xsd:string ;
skos:prefLabel "Country Government"^^xsd:string ;
skos:scopeNote "While a country government may enter into treaties with other country governments, there are no governing relationships among the treaty members."^^xsd:string ;
.
gist:CurrencyPerDurationUnit
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:RatioUnit
[
a owl:Restriction ;
owl:onProperty gist:hasDenominator ;
owl:allValuesFrom gist:DurationUnit ;
]
[
a owl:Restriction ;
owl:onProperty gist:hasNumerator ;
owl:allValuesFrom gist:CurrencyUnit ;
]
) ;
] ;
skos:definition "A unit for measuring a monetary amount over a period of time, such as dollars/hour or euros/month."^^xsd:string ;
skos:prefLabel "Currency per Duration Unit"^^xsd:string ;
.
gist:CurrencyUnit
a owl:Class ;
owl:disjointWith
gist:DataSizeUnit ,
gist:DistanceUnit ,
gist:DurationUnit ,
gist:ElectricalCurrentUnit ,
gist:LuminousIntensityUnit ,
gist:MassUnit ,
gist:MoleUnit ,
gist:TemperatureUnit
;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:SimpleUnitOfMeasure
[
a owl:Restriction ;
owl:onProperty gist:hasBaseUnit ;
owl:hasValue gist:_USDollar ;
]
) ;
] ;
skos:definition "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)."^^xsd:string ;
skos:prefLabel "Currency Unit"^^xsd:string ;
.
gist:DataSizeUnit
a owl:Class ;
owl:disjointWith
gist:DistanceUnit ,
gist:DurationUnit ,
gist:ElectricalCurrentUnit ,
gist:LuminousIntensityUnit ,
gist:MassUnit ,
gist:MoleUnit ,
gist:TemperatureUnit
;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:SimpleUnitOfMeasure
[
a owl:Restriction ;
owl:onProperty gist:hasBaseUnit ;
owl:hasValue gist:_bit ;
]
) ;
] ;
skos:definition "A unit to measure amounts of digital information."^^xsd:string ;
skos:prefLabel "Data Size Unit"^^xsd:string ;
.
gist:DegreeOfCommitment
a owl:Class ;
rdfs:subClassOf gist:Category ;
skos:definition "The difficulty of reversing a commitment."^^xsd:string ;
skos:example "A car rental typically has a lower degree of commitment than an airfare reservation."^^xsd:string ;
skos:prefLabel "Degree Of Commitment"^^xsd:string ;
.
gist:DistanceUnit
a owl:Class ;
owl:disjointWith
gist:DurationUnit ,
gist:ElectricalCurrentUnit ,
gist:LuminousIntensityUnit ,
gist:MassUnit ,
gist:MoleUnit ,
gist:TemperatureUnit
;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:SimpleUnitOfMeasure
[
a owl:Restriction ;
owl:onProperty gist:hasBaseUnit ;
owl:hasValue gist:_meter ;
]
) ;
] ;
skos:definition "A unit to measure linear distance, such as feet or kilometers."^^xsd:string ;
skos:prefLabel "Distance Unit"^^xsd:string ;
.
gist:Duration
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Magnitude
[
a owl:Restriction ;
owl:onProperty gist:hasUnitOfMeasure ;
owl:someValuesFrom gist:DurationUnit ;
]
) ;
] ;
skos:definition "Time, but not on a timeline."^^xsd:string ;
skos:example "One week (or seven days), but not Jan 1, 2008 to Jan 7, 2008 (which is an interval)."^^xsd:string ;
skos:prefLabel "Duration"^^xsd:string ;
skos:scopeNote "Intervals have durations, but are not themselves durations."^^xsd:string ;
.
gist:DurationUnit
a owl:Class ;
owl:disjointWith
gist:ElectricalCurrentUnit ,
gist:LuminousIntensityUnit ,
gist:MassUnit ,
gist:MoleUnit ,
gist:TemperatureUnit
;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:SimpleUnitOfMeasure
[
a owl:Restriction ;
owl:onProperty gist:hasBaseUnit ;
owl:hasValue gist:_second ;
]
) ;
] ;
skos:definition "A unit to measure passage of time: hours, days, years."^^xsd:string ;
skos:prefLabel "Duration Unit"^^xsd:string ;
.
gist:ElectricCurrent
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Magnitude
[
a owl:Restriction ;
owl:onProperty gist:hasUnitOfMeasure ;
owl:someValuesFrom gist:ElectricalCurrentUnit ;
]
) ;
] ;
skos:definition "A flow of electric charge."^^xsd:string ;
skos:prefLabel "Electric Current"^^xsd:string ;
.
gist:ElectricalCurrentUnit
a owl:Class ;
owl:disjointWith
gist:LuminousIntensityUnit ,
gist:MassUnit ,
gist:MoleUnit ,
gist:TemperatureUnit
;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:SimpleUnitOfMeasure
[
a owl:Restriction ;
owl:onProperty gist:hasBaseUnit ;
owl:hasValue gist:_ampere ;
]
) ;
] ;
skos:definition "Unit of electrical current, which is charge per unit time. The SI unit is the ampere. (Note that electrical current is a composed unit.)"^^xsd:string ;
skos:prefLabel "Electrical Current Unit"^^xsd:string ;
.
gist:ElectronicMessageAddress
a owl:Class ;
rdfs:subClassOf gist:Address ;
skos:definition "Any place an electronic message (email, fax, etc.) can be sent."^^xsd:string ;
skos:prefLabel "Electronic Message Address"^^xsd:string ;
.
gist:EmailAddress
a owl:Class ;
rdfs:subClassOf gist:ElectronicMessageAddress ;
skos:definition "An email address is a unique identifier for an email account. It is used to both send and receive email messages over the Internet."^^xsd:string ;
skos:prefLabel "Email Address"^^xsd:string ;
.
gist:Equipment
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Artifact
gist:PhysicalIdentifiableItem
[
a owl:Restriction ;
owl:onProperty gist:isCategorizedBy ;
owl:someValuesFrom gist:EquipmentType ;
]
) ;
] ;
skos:definition "Tangible property other than land or buildings. Any kind of equipment, could be machine, router, car etc."^^xsd:string ;
skos:prefLabel "Equipment"^^xsd:string ;
.
gist:EquipmentType
a owl:Class ;
rdfs:subClassOf gist:Category ;
skos:definition "Categories of equipment"^^xsd:string ;
skos:prefLabel "Equipment Type"^^xsd:string ;
.
gist:Event
a owl:Class ;
owl:equivalentClass [
a owl:Restriction ;
owl:onProperty gist:isCharacterizedAs ;
owl:someValuesFrom gist:Behavior ;
] ;
skos:definition "Something that occurs over a period of time, often characterized as an activity being carried out by some person, organization, or software application or brought about by natural forces."^^xsd:string ;
skos:editorialNote "See guidance on removing the term in the next major release at https://github.com/semanticarts/gist/issues/947#issuecomment-1679565100."^^xsd:string ;
skos:example "A transaction, conference, baseball game, earthquake."^^xsd:string ;
skos:prefLabel "Event"^^xsd:string ;
skos:scopeNote
"An event does not necessarily have either planned or actual start or end datetimes. For example, a conference can be in the planning phase without any dates selected, but is nevertheless an (unscheduled) event. The subclasses of Event state particular restrictions on planned and actual start and end dates."^^xsd:string ,
"An event occurs during a time interval, which is distinct from the event."^^xsd:string
;
.
gist:Extent
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:Magnitude
[
a owl:Restriction ;
owl:onProperty gist:hasUnitOfMeasure ;
owl:someValuesFrom gist:DistanceUnit ;
]
) ;
] ;
skos:definition "A measure of distance, which could be distances over the Earth, and could also be height, width, length, depth, girth, etc."^^xsd:string ;
skos:prefLabel "Extent"^^xsd:string ;
.
gist:FormattedContent
a owl:Class ;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
gist:ContentExpression
[
a owl:Restriction ;
owl:onProperty gist:isExpressedIn ;
owl:someValuesFrom gist:MediaType ;
]
) ;
] ;
skos:definition "Content which is in a particular format. (E.g., HTML, PDF, JPG.)"^^xsd:string ;
skos:prefLabel "Formatted Content"^^xsd:string ;
.
gist:Function
a owl:Class ;
rdfs:subClassOf gist:Intention ;
skos:definition "A function is what a specific made item is intended to do. For instance: transmit electricity, provide ballast, control ambient temperature."^^xsd:string ;
skos:prefLabel "Function"^^xsd:string ;
.
gist:GeneralMediaType
a owl:Class ;
rdfs:subClassOf gist:Category ;
skos:definition "The real-world media type for content."^^xsd:string ;
skos: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."^^xsd:string ;
skos:prefLabel "General Media Type"^^xsd:string ;
.
gist:GeoPoint
a owl:Class ;
rdfs:subClassOf gist:Place ;
owl:disjointWith
gist:IntellectualProperty ,
gist:Intention ,
gist:Language ,
gist:Magnitude ,
gist:Organization ,
gist:PhysicalIdentifiableItem ,
gist:PhysicalSubstance ,
gist:UnitOfMeasure
;
owl:equivalentClass [
a owl:Class ;
owl:intersectionOf (
[
a owl:Restriction ;
owl:onProperty gist:hasAltitude ;
owl:someValuesFrom gist:Extent ;