forked from CommonCoreOntology/CommonCoreOntologies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInformationEntityOntology.ttl
2206 lines (1782 loc) · 180 KB
/
InformationEntityOntology.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 : <http://www.ontologyrepository.com/CommonCoreOntologies/> .
@prefix cco: <http://www.ontologyrepository.com/CommonCoreOntologies/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology> .
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology> rdf:type owl:Ontology ;
owl:versionIRI <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/2024-02-14/InformationEntityOntology> ;
owl:imports <http://www.ontologyrepository.com/CommonCoreOntologies/Mid/GeospatialOntology> ,
<http://www.ontologyrepository.com/CommonCoreOntologies/Mid/TimeOntology> ;
<http://purl.org/dc/terms/license> <https://opensource.org/licenses/BSD-3-Clause> ;
rdfs:comment "This ontology is designed to represent generic types of information as well as the relationships between information and other entities."@en ;
rdfs:label "Information Entity Ontology"@en ;
owl:versionInfo "Version 1.5"@en .
#################################################################
# Object Properties
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/condition_described_by
cco:condition_described_by rdf:type owl:ObjectProperty ;
owl:inverseOf cco:describes_condition ;
owl:propertyChainAxiom ( cco:described_by
obo:BFO_0000176
) ;
cco:definition "c condition_described_by p iff p is an instance of a Performance Specification, and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "condition described by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/described_by
cco:described_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_subject_of ;
owl:inverseOf cco:describes ;
rdfs:range cco:DescriptiveInformationContentEntity ;
cco:definition "x described_by y iff y is an instance of Information Content Entity, and x is an instance of Entity, such that y is about the characteristics by which y can be recognized or visualized."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "described by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/describes
cco:describes rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_about ;
rdfs:domain cco:DescriptiveInformationContentEntity ;
cco:definition "x describes y iff x is an instance of Information Content Entity, and y is an instance of Entity, such that x is about the characteristics by which y can be recognized or visualized."@en ;
cco:example_of_usage "the content of a newspaper article describes some current event" ,
"the content of a visitor's log describes some facility visit" ,
"the content of an accident report describes some accident" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:comment "It is possible that this relation should be a functional property, that is for all x, y, z if x describes y and x describes z then y = z. For example, if a financial report x describes the quarterly results of a company y and that same financial report describes the quarterly results of a company z, then it should be inferred that companies y and z are the same. We refrained from classifying the relation as a functional property on the concern that descriptions are multifaceted and so consequently it may be that the same report would contain descriptions of multiple entities."@en ;
rdfs:label "describes"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/describes_condition
cco:describes_condition rdf:type owl:ObjectProperty ;
owl:propertyChainAxiom ( obo:BFO_0000178
cco:describes
) ;
cco:definition "p describes_condition c iff p is an instance of a Performance Specification, and p has part d, and d is an instance of a Descriptive Information Content Entity, and p prescribes an entity s, and d describes c, and c is an entity that is causally relevant to s existing as prescribed by p."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "describes condition"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/designated_by
cco:designated_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_subject_of ;
owl:inverseOf cco:designates ;
rdfs:range cco:DesignativeInformationContentEntity ;
cco:definition "x designated_by y iff y is an instance of Information Content Entity and x is an instance of Entity, such that given some context, y uniquely distinguishes x from other entities."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "designated by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/designates
cco:designates rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_about ;
rdfs:domain cco:DesignativeInformationContentEntity ;
cco:definition "x designates y iff x is an instance of an Information Content Entity, and y is an instance of an Entity, such that given some context, x uniquely distinguishes y from other entities."@en ;
cco:example_of_usage "a URL designates the location of a Web Page on the internet" ,
"a person's name designates that person" ,
"a vehicle identification number designates some vehicle" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "designates"@en ;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_a_interval_measurement_of
cco:is_a_interval_measurement_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_a_measurement_of ;
owl:inverseOf cco:is_measured_by_interval ;
rdfs:domain cco:IntervalMeasurementInformationContentEntity ;
cco:definition "x is_a_interval_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale which has uniform intervals but has a zero value that does not correspond to an absence of the attribute being measured."@en ;
cco:example_of_usage "a measurement of air temperature on the Celsius scale." ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is a interval measurement of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_a_measurement_of
cco:is_a_measurement_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:describes ;
owl:inverseOf cco:is_measured_by ;
rdfs:domain cco:MeasurementInformationContentEntity ;
cco:definition "x is_a_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:comment "This object property, as well as all of its children are typified as functional properties. This means that for instances x, y, and z if x is a measurement of y and x is a measurement of z, then y = z."@en ;
rdfs:label "is a measurement of"@en ;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_a_nominal_measurement_of
cco:is_a_nominal_measurement_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_a_measurement_of ;
owl:inverseOf cco:is_measured_by_nominal ;
rdfs:domain cco:NominalMeasurementInformationContentEntity ;
cco:definition "x is_a_nominal_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x classifies y relative to some set of shared, possibly arbitrary, characteristics."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is a nominal measurement of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_a_ordinal_measurement_of
cco:is_a_ordinal_measurement_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_a_measurement_of ;
owl:inverseOf cco:is_measured_by_ordinal ;
rdfs:domain cco:OrdinalMeasurementInformationContentEntity ;
cco:definition "x is_a_ordinal_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale ordered by rank."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is a ordinal measurement of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_a_ratio_measurement_of
cco:is_a_ratio_measurement_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_a_measurement_of ;
owl:inverseOf cco:is_measured_by_ratio ;
rdfs:domain cco:RatioMeasurementInformationContentEntity ;
cco:definition "x is_a_ratio_measurement_of y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale having equal unit values and a zero value that corresponds to the absence of the attribute being measured."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is a ratio measurement of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_about
cco:is_about rdf:type owl:ObjectProperty ;
owl:inverseOf cco:is_subject_of ;
rdfs:domain cco:InformationContentEntity ;
rdfs:range obo:BFO_0000001 ;
cco:definition "A primitive relationship between an Information Content Entity and some Entity."@en ;
cco:definition_source "http://purl.obolibrary.org/obo/IAO_0000136" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is about"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_excerpted_from
cco:is_excerpted_from rdf:type owl:ObjectProperty ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range cco:InformationBearingEntity ;
cco:definition "An Information Bearing Entity b1 is excerpted from another Information Bearing Entity B2 iff b1 is part of some Information Bearing Entity B1 that is carrier of some Information Content Entity C1, B2 is carrier of some Information Content Entity C2, C1 is not identical with C2, b1 is carrier of some Information Content Entity c1, b2 is an Information Bearing Entity that is part of B2 and b2 is carrier of c1 (i.e. the same Information Content Entity as borne by b1)."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is excerpted from"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_geospatial_coordinate_reference_system_of
cco:is_geospatial_coordinate_reference_system_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_reference_system_of ;
owl:inverseOf cco:uses_geospatial_coordinate_reference_system ;
rdfs:domain cco:GeospatialCoordinateReferenceSystem ;
rdfs:range cco:InformationBearingEntity ;
cco:definition "x is_geospatial_coordinate_reference_system_of y iff y is an instance of Information Bearing Entity and x is an instance of Geospatial Coordinate Reference System, such that x describes the set of standards mentioned in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is geospatial coordinate reference system of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by
cco:is_measured_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:described_by ;
rdfs:range cco:MeasurementInformationContentEntity ;
cco:definition "y is_measured_by x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to some scale or classification scheme."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is measured by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_interval
cco:is_measured_by_interval rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_measured_by ;
rdfs:range cco:IntervalMeasurementInformationContentEntity ;
cco:definition "y is_measured_by_interval x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale which has uniform intervals but has a zero value that does not correspond to an absence of the attribute being measured."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is measured by interval"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_nominal
cco:is_measured_by_nominal rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_measured_by ;
rdfs:range cco:NominalMeasurementInformationContentEntity ;
cco:definition "y is_measured_by_nominal x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x classifies y relative to some set of shared, possibly arbitrary, characteristics."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is measured by nominal"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_ordinal
cco:is_measured_by_ordinal rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_measured_by ;
rdfs:range cco:OrdinalMeasurementInformationContentEntity ;
cco:definition "y is_measured_by_ordinal x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale ordered by rank."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is measured by ordinal"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_measured_by_ratio
cco:is_measured_by_ratio rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_measured_by ;
rdfs:range cco:RatioMeasurementInformationContentEntity ;
cco:definition "y is_measured_by_ratio x iff x is an instance of Information Content Entity and y is an instance of Entity, such that x describes some attribute of y relative to a scale having equal unit values and a zero value that corresponds to the absence of the attribute being measured."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is measured by ratio"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_measurement_unit_of
cco:is_measurement_unit_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000084 ;
owl:inverseOf cco:uses_measurement_unit ;
rdfs:domain cco:MeasurementUnit ;
rdfs:range cco:InformationBearingEntity ;
cco:definition "x is_measurement_unit_of y iff y is an instance of Information Bearing Entity and x is an instance of Measurement Unit, such that x describes the magnitude of measured physical quantity mentioned in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is measurement unit of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_mention_of
cco:is_mention_of rdf:type owl:ObjectProperty ;
owl:inverseOf cco:is_mentioned_by ;
cco:definition "x is_mention_of y iff x is an instance Information Bearing Entity and y is an instance Entity, such that x is used as a reference to y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is mention of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_mentioned_by
cco:is_mentioned_by rdf:type owl:ObjectProperty ;
cco:definition "y is_mention_by x iff x is an instance Information Bearing Entity and y is an instance Entity, such that x is used as a reference to y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is mentioned by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_reference_system_of
cco:is_reference_system_of rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000084 ;
owl:inverseOf cco:uses_reference_system ;
rdfs:domain cco:ReferenceSystem ;
rdfs:range cco:InformationBearingEntity ;
cco:definition "x is_reference_system_of y iff y is an instance of Information Bearing Entity and x is an instance of Reference System, such that x describes the set of standards mentioned in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is reference system of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/is_subject_of
cco:is_subject_of rdf:type owl:ObjectProperty ;
rdfs:range cco:InformationContentEntity ;
cco:definition "A primitive relationship between an instance of an Entity and an instance of an Information Content Entity."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "is subject of"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/language_used_in
cco:language_used_in rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:prescribes ;
owl:inverseOf cco:uses_language ;
rdfs:domain cco:Language ;
rdfs:range cco:InformationBearingEntity ;
cco:definition "x language_used_by y iff y is an instance of Information Bearing Entity and x is an instance of Language, such that the literal value of y is a string that is encoded according to the syntax of x."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "language used in"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/prescribed_by
cco:prescribed_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_subject_of ;
owl:inverseOf cco:prescribes ;
rdfs:range cco:DirectiveInformationContentEntity ;
cco:definition "x prescribed_by y iff y is an instance of Information Content Entity and x is an instance of Entity, such that y serves as a rule or guide for x if x is an Occurrent, or y serves as a model for x if x is a Continuant."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "prescribed by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/prescribes
cco:prescribes rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_about ;
rdfs:domain cco:DirectiveInformationContentEntity ;
cco:definition "x prescribes y iff x is an instance of Information Content Entity and y is an instance of Entity, such that x serves as a rule or guide for y if y an Occurrent, or x serves as a model for y if y is a Continuant."@en ;
cco:example_of_usage "a blueprint serves as a model of some Artifact or Facility" ,
"a professional code of conduct serves as a set of rules to be followed while acting in a role within that profession" ,
"an Operations Plan serves as a guide for the tasks that need to be performed to achieve the Objectives of the Operation" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "prescribes"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/represented_by
cco:represented_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_subject_of ;
owl:inverseOf cco:represents ;
rdfs:range cco:RepresentationalInformationContentEntity ;
cco:definition "y represented_by x iff x is an instance of Information Content Entity, and y is an instance of Entity, and z is carrier of x, such that x is about y in virtue of there existing an isomorphism between characteristics of z and y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:comment "See notes for inverse property." ;
rdfs:label "represented by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/represents
cco:represents rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:is_about ;
rdfs:domain cco:RepresentationalInformationContentEntity ;
cco:definition "x represents y iff x is an instance of Information Content Entity, y is an instance of Entity, and z is carrier of x, such that x is about y in virtue of there existing an isomorphism between characteristics of z and y."@en ;
cco:elucidation "The relationship that is being defined here is that between the content of a photographic image and its object, between the content of a video and its objects and events, between the content of an audio recording and the sounds or events generating those sounds, or between the content of a written transcript and the verbal event that it transcribes."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:comment "Isomorphism between the carrier of x and the represented entity can be via a direct similarity relation, e.g., grooves in a vinyl record corresponding to sound waves, or linguistic convention, e.g., a court stenographer's transcription of spoken words, as well as others, such as encoding processes for images."@en ;
rdfs:label "represents"@en ;
<http://www.w3.org/2004/02/skos/core#scopeNote> "Given a stronger temporal interpretation, this property may be functional. For more info please refer to https://github.com/BFO-ontology/BFO-2020/tree/master/src/owl/temporal%20extensions."@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/time_zone_identifier_used_by
cco:time_zone_identifier_used_by rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000084 ;
owl:inverseOf cco:uses_time_zone_identifier ;
rdfs:domain cco:TimeZoneIdentifier ;
rdfs:range cco:InformationBearingEntity ;
cco:definition "x time_zone_identifier_used_by y iff y is an instance of Information Bearing Entity and x is an instance of Time Zone Identifier, such that x designates the spatial region associated with the time zone mentioned in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "time zone identifier used by"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/uses_geospatial_coordinate_reference_system
cco:uses_geospatial_coordinate_reference_system rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:uses_reference_system ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range cco:GeospatialCoordinateReferenceSystem ;
cco:definition "y uses_geospatial_coordinate_reference_system x iff y is an instance of Information Bearing Entity and x is an instance of Geospatial Coordinate Reference System, such that x describes the set of standards mentioned in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "uses geospatial coordinate reference system"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/uses_language
cco:uses_language rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cco:prescribed_by ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range cco:Language ;
cco:definition "x uses_language y iff x is an instance of an Information Bearing Entity and y is an instance of a Language such that the literal value of x is a string that is encoded according to the syntax of y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "uses language"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/uses_measurement_unit
cco:uses_measurement_unit rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000101 ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range cco:MeasurementUnit ;
cco:definition "y uses_measurement_unit x iff y is an instance of Information Bearing Entity and x is an instance of Measurement Unit, such that x describes the magnitude of measured physical quantity mentioned in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "uses measurement unit"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/uses_reference_system
cco:uses_reference_system rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000101 ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range cco:ReferenceSystem ;
cco:definition "y uses_reference_system x iff y is an instance of Information Bearing Entity and x is an instance of Reference System, such that x describes the set of standards mentioned in y."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "uses reference system"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/uses_time_zone_identifier
cco:uses_time_zone_identifier rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000101 ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range cco:TimeZoneIdentifier ;
cco:definition "x uses_time_zone_identifier y iff x is an instance of Information Bearing Entity and y is an instance of Time Zone Identifier, such that y designates the spatial region associated with the time zone mentioned in x."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "uses time zone identifier"@en .
#################################################################
# Data properties
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/has_URI_value
cco:has_URI_value rdf:type owl:DatatypeProperty ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "has URI value"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_boolean_value
cco:has_boolean_value rdf:type owl:DatatypeProperty ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range xsd:boolean ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "has boolean value"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_date_value
cco:has_date_value rdf:type owl:DatatypeProperty ;
rdfs:domain cco:InformationBearingEntity ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "has date value"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_datetime_value
cco:has_datetime_value rdf:type owl:DatatypeProperty ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range xsd:dateTime ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "has datetime value"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_decimal_value
cco:has_decimal_value rdf:type owl:DatatypeProperty ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range xsd:decimal ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "has decimal value"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_double_value
cco:has_double_value rdf:type owl:DatatypeProperty ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range xsd:double ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "has double value"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_integer_value
cco:has_integer_value rdf:type owl:DatatypeProperty ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range xsd:integer ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "has integer value"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/has_text_value
cco:has_text_value rdf:type owl:DatatypeProperty ;
rdfs:domain cco:InformationBearingEntity ;
rdfs:range xsd:string ;
cco:definition "A relationship between an Information Bearing Entity and a string representation."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "has text value"@en .
#################################################################
# Classes
#################################################################
### http://www.ontologyrepository.com/CommonCoreOntologies/AbbreviatedName
cco:AbbreviatedName rdf:type owl:Class ;
rdfs:subClassOf cco:DesignativeName ;
cco:definition "A Designative Name that is a shortened form of a Proper Name."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Abbreviated Name"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Acronym
cco:Acronym rdf:type owl:Class ;
rdfs:subClassOf cco:AbbreviatedName ;
cco:definition "An Abbreviated Name that combines the initial letters of a Designative Name and which is pronounced as a word."@en ;
cco:example_of_usage "Wi-Fi, ASCII, OPSEC" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Acronym"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Algorithm
cco:Algorithm rdf:type owl:Class ;
rdfs:subClassOf cco:DirectiveInformationContentEntity ;
cco:definition "A Directive Information Content Entity that prescribes the inputs and output of mathematical functions as well as workflow of execution for achieving a predefined objective."@en ;
cco:definition_source "http://purl.obolibrary.org/obo/IAO_0000064"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Algorithm"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArbitraryIdentifier
cco:ArbitraryIdentifier rdf:type owl:Class ;
rdfs:subClassOf cco:NonNameIdentifier ;
owl:disjointWith cco:CodeIdentifier ;
cco:alternative_label "Arbitrary ID"@en ;
cco:definition "A Non-Name Identifier that consists of a string of characters that does not follow an encoding system."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Arbitrary Identifier"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArtifactVersionOrdinality
cco:ArtifactVersionOrdinality rdf:type owl:Class ;
rdfs:subClassOf cco:OrdinalMeasurementInformationContentEntity ;
cco:definition "An Ordinal Measurement Information Content Entity that is about the form of an Artifact which differs in some respects from previous or future forms of that Artifact."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Artifact Version Ordinality"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ArtificialLanguage
cco:ArtificialLanguage rdf:type owl:Class ;
rdfs:subClassOf cco:Language ;
owl:disjointWith cco:NautralLanguage ;
cco:definition "A Language that is developed through conscious planning and premeditation, rather than one that was developed through use and repetition."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Constructed_language&oldid=1062733589"^^xsd:anyURI ;
cco:example_of_usage "Esperanto" ,
"Python Programming Language" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Artificial Language"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CalendarDateIdentifier
cco:CalendarDateIdentifier rdf:type owl:Class ;
rdfs:subClassOf cco:DateIdentifier ;
cco:definition "A Date Identifier that designates some Day by using a combination of Day, Week, Month, or Year Identifiers formatted according to an implementation of a Calendar System."@en ;
cco:example_of_usage "January 1, 2018; 1 January 2018; 01/01/18; 01Jan18" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Calendar Date Identifier"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CalendarSystem
cco:CalendarSystem rdf:type owl:Class ;
rdfs:subClassOf cco:TemporalReferenceSystem ;
cco:definition "A Temporal Reference System that is designed to organize and identify dates."@en ;
cco:elucidation "Calendars typically organize dates through the use of naming and temporal conventions based on Days, Weeks, Months, and Years."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Calendar System"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CartesianCoordinateSystem
cco:CartesianCoordinateSystem rdf:type owl:Class ;
rdfs:subClassOf cco:SpatialReferenceSystem ;
cco:alternative_label "Rectangular Coordinate System"@en ;
cco:definition "A Spatial Reference System that identifies each point in a spatial region of n-dimensions using an ordered n-tuple of numerical coordinates that are the signed (i.e. positive or negative) distances measured in the same unit of length from the zero point where the fixed perpendicular Coordinate System Axes meet."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Cartesian_coordinate_system&oldid=1058613323"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Cartesian Coordinate System"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CivilTimeReferenceSystem
cco:CivilTimeReferenceSystem rdf:type owl:Class ;
rdfs:subClassOf cco:TemporalReferenceSystem ;
cco:definition "A Temporal Reference System that is a statutory time scale as designated by civilian authorities to determine local time(s)."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:comment "In traditional astronomical usage, civil time is mean solar time as calculated from midnight as the beginning of the Civil Day."@en ,
"Note that Civil Time Reference System is more accurately represented as a Temporal Reference System that participates in an act of usage that is sanctioned by an appropriate civil authority. As such, it should be represented as a defined class."@en ;
rdfs:label "Civil Time Reference System"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/ClockTimeSystem
cco:ClockTimeSystem rdf:type owl:Class ;
rdfs:subClassOf cco:TemporalReferenceSystem ;
cco:definition "A Temporal Reference System that is a convention for keeping and displaying the Time of Day."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:comment "A single Clock Time System does not provide a complete means for identifying or measuring times. Depending on the particular Clock Time System, it may be compatible for use with one or more other Temporal Reference Systems."@en ;
rdfs:label "Clock Time System"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CodeIdentifier
cco:CodeIdentifier rdf:type owl:Class ;
rdfs:subClassOf cco:NonNameIdentifier ;
cco:alternative_label "Code ID"@en ,
"ID Code"@en ,
"Identifier Code"@en ;
cco:definition "A Non-Name Identifier that consists of a string of characters that was created and assigned according to an encoding system such that metadata can be derived from the identifier."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Code Identifier"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/CountMeasurementInformationContentEntity
cco:CountMeasurementInformationContentEntity rdf:type owl:Class ;
rdfs:subClassOf cco:RatioMeasurementInformationContentEntity ;
cco:definition "A Ratio Measurement Information Content Entity that is a measurement of the number of members of some aggregate."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Count Measurement Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DataRangeIntervalEstimateInformationContentEntity
cco:DataRangeIntervalEstimateInformationContentEntity rdf:type owl:Class ;
rdfs:subClassOf cco:IntervalEstimateInformationContentEntity ;
cco:definition "A Ratio Measurement Information Content Entity that is a measurement of a set of values and is equal to the absolute difference between the largest value and the smallest value in the set."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Data Range Interval Estimate Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DateIdentifier
cco:DateIdentifier rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:TemporalIntervalIdentifier
[ rdf:type owl:Restriction ;
owl:onProperty cco:designates ;
owl:someValuesFrom cco:Day
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf cco:TemporalIntervalIdentifier ;
cco:alternative_label "Day Identifier"@en ;
cco:definition "A Temporal Interval Identifier that designates some Day."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Date Identifier"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DecimalDateIdentifier
cco:DecimalDateIdentifier rdf:type owl:Class ;
rdfs:subClassOf cco:DateIdentifier ;
cco:definition "A Date Identifier that designates some Day by using a number to indicate the sequential ordering of the Day since a specified Reference Time."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Decimal Date Identifier"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DecimalTimeOfDayIdentifier
cco:DecimalTimeOfDayIdentifier rdf:type owl:Class ;
rdfs:subClassOf cco:TimeOfDayIdentifier ;
cco:alternative_label "Fractional Time of Day Identifier"@en ;
cco:definition "A Time of Day Identifier that designates an approximate Temporal Instant that is part of some Day and is specified using a decimal value for the portion of the Day that preceded the Temporal Instant."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Decimal Time of Day Identifier"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DescriptiveInformationContentEntity
cco:DescriptiveInformationContentEntity rdf:type owl:Class ;
rdfs:subClassOf cco:InformationContentEntity ;
owl:disjointWith cco:DesignativeInformationContentEntity ,
cco:DirectiveInformationContentEntity ;
cco:alternative_label "Descriptive ICE"@en ;
cco:definition "An Information Content Entity that consists of a set of propositions that describe some Entity."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Descriptive Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DesignativeInformationContentEntity
cco:DesignativeInformationContentEntity rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:InformationContentEntity
[ rdf:type owl:Restriction ;
owl:onProperty cco:designates ;
owl:someValuesFrom obo:BFO_0000001
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf cco:InformationContentEntity ;
owl:disjointWith cco:DirectiveInformationContentEntity ;
cco:alternative_label "Designative ICE"@en ;
cco:definition "An Information Content Entity that consists of a set of symbols that denote some Entity."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Designative Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DesignativeName
cco:DesignativeName rdf:type owl:Class ;
rdfs:subClassOf cco:DesignativeInformationContentEntity ;
owl:disjointWith cco:NonNameIdentifier ;
cco:alternative_label "Name"@en ;
cco:definition "A Designative Information Content Entity that consists of a string of characters that designates an entity within a specified cultural or social namespace and which is typically a word or phrase in a natural language that has an accepted cultural or social significance."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Designative Name"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DeviationMeasurementInformationContentEntity
cco:DeviationMeasurementInformationContentEntity rdf:type owl:Class ;
rdfs:subClassOf cco:MeasurementInformationContentEntity ;
cco:alternative_label "Conformance Measurement"@en ,
"Degree of Conformance"@en ,
"Degree of Deviation"@en ,
"Deviation Measurement"@en ;
cco:definition "A Measurement Information Content Entity that is a measurement of the extent to which an entity conforms to how it is expected or supposed to be."@en ;
cco:elucidation "In order for a Deviation to exist, an entity must first be expected, represented, prescribed, or predicted as being a certain way. Then, at a future time, this value can be compared to its actual, reported, or measured value to determine the Deviation between these values."@en ;
cco:example_of_usage "a missile impact deviates from its target location by 100 feet" ,
"a satellite deviaties from its predicted orbital path by 5 kilometers" ,
"an overweight piece of luggage deviates from an airline's maximum allowed weight by +10 pounds" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:comment "'Deviation Measurement Information Content Entity' and 'Veracity Measurement Information Content Entity' are complementary notions. Deviation is a measure of whether reality conforms to an ICE (e.g., a plan or prediction), whereas Veracity is a measure of whether a Descriptive ICE conforms to reality."@en ,
"Note, the term 'accuracy' is avoided due to its ambiguity between: correctness-of-performance (see: 'Reliability Measurement Information Content Entity'), correctness-of-information (see: 'Veracity Measurement Information Content Entity'), and adherance-to-expectations ('Deviation Measurement Information Content Entity')."@en ;
rdfs:label "Deviation Measurement Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DiminutiveName
cco:DiminutiveName rdf:type owl:Class ;
rdfs:subClassOf cco:AbbreviatedName ;
cco:definition "An Abbreviated Name that is a familiar form of a Proper Name."@en ;
cco:elucidation "\"Familiar form of a Proper Name\" means: that the name is (originally) a short, affectionate version of the fuller name, used (originally) by family or friends."@en ;
cco:example_of_usage "Alex, Bob, Cathy" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Diminutive Name"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DirectiveInformationContentEntity
cco:DirectiveInformationContentEntity rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:InformationContentEntity
[ rdf:type owl:Restriction ;
owl:onProperty cco:prescribes ;
owl:someValuesFrom obo:BFO_0000001
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf cco:InformationContentEntity ;
cco:alternative_label "Directive ICE"@en ;
cco:definition "An Information Content Entity that consists of a set of propositions or images (as in the case of a blueprint) that prescribe some Entity."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Directive Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/DistanceMeasurementInformationContentEntity
cco:DistanceMeasurementInformationContentEntity rdf:type owl:Class ;
rdfs:subClassOf cco:RatioMeasurementInformationContentEntity ;
cco:definition "A Ratio Measurement Information Content Entity that is a measurement of a One-Dimensional Extent inhering in some Site that is externally connected to two Independent Continuants."@en ;
cco:elucidation "Displacement (vector) is the shortest possible distance (scalar) between two points. Further thought is needed to adequately handle measurements of distance traveled along a path, e.g., a circuitous path or an arc (such as the surface of a planet), versus the simple case of a direct, straight line between two points."@en ,
"Distance is a measure between two reference points, which are located on or in, or in some manner part of, the two obejcts for which the length of the extent between is sought. For exmple, the center point of the indentation of a ball in the sand and the edge of the foul line, the forwardmost point on a car's bumper and the closest point on the 2-dimensional plane that serves as the fiat boundary of a crosswalk, the center of an antenna array and closest point on ground."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Distance Measurement Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/EstimateInformationContentEntity
cco:EstimateInformationContentEntity rdf:type owl:Class ;
rdfs:subClassOf cco:MeasurementInformationContentEntity ;
cco:alternative_label "Estimate"@en ,
"Estimate Measurement Information Content Entity"@en ,
"Estimated Value"@en ;
cco:definition "A Measurement Information Content Entity that is a measurement of an entity based on partial information about that entity or an appropriately similar entity."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Estimate Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/EventStatusNominalInformationContentEntity
cco:EventStatusNominalInformationContentEntity rdf:type owl:Class ;
rdfs:subClassOf cco:NominalMeasurementInformationContentEntity ;
cco:definition "A Nominal Measurement Information Content Entity that is a measurement of the current state of a process."@en ;
cco:example_of_usage "proposed, approved, planned, in progress, completed, failed, or successful" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Event Status Nominal Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialCoordinateReferenceSystem
cco:GeospatialCoordinateReferenceSystem rdf:type owl:Class ;
rdfs:subClassOf cco:SpatialReferenceSystem ;
cco:alternative_label "Geographic Coordinate System"@en ;
cco:definition "A Spatial Reference System that is used to determine and identify the location of a point or object at or near the surface of the Earth."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Geospatial Coordinate Reference System"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GeospatialRegionBoundingBoxIdentifierList
cco:GeospatialRegionBoundingBoxIdentifierList rdf:type owl:Class ;
rdfs:subClassOf cco:MeasurementUnitOfGeocoordinate ;
cco:definition "A Measurement Unit of Geocoordinate that is comprised of 4 pairs of coordinates, one for each of the 4 defining points (North, West, South, East) of a Geospatial Region Bounding Box."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Geospatial Region Bounding Box Identifier List"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/GreenwichMeanTimeZoneIdentifier
cco:GreenwichMeanTimeZoneIdentifier rdf:type owl:Class ;
rdfs:subClassOf cco:TimeZoneIdentifier ;
cco:definition "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Greenwich Mean Time."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:comment "Greenwich Mean Time (GMT) is the mean solar time at the Royal Observatory in Greenwich, London and has been superseded by Coordinated Universal Time (UTC)."@en ;
rdfs:label "Greenwich Mean Time Zone Identifier"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/InformationBearingEntity
cco:InformationBearingEntity rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000030
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000101 ;
owl:someValuesFrom cco:InformationContentEntity
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf obo:BFO_0000030 ;
cco:alternative_label "IBE"@en ;
cco:definition "An Object upon which an Information Content Entity generically depends."@en ;
cco:definition_source "http://purl.obolibrary.org/obo/IAO_0000178"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Information Bearing Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/InformationContentEntity
cco:InformationContentEntity rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( obo:BFO_0000031
[ rdf:type owl:Restriction ;
owl:onProperty cco:is_about ;
owl:someValuesFrom obo:BFO_0000001
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf obo:BFO_0000031 ;
cco:alternative_label "ICE"@en ;
cco:definition "A Generically Dependent Continuant that generically depends on some Information Bearing Entity and stands in relation of aboutness to some Entity."@en ;
cco:definition_source "http://purl.obolibrary.org/obo/IAO_0000030" ;
cco:elucidation "Information Content Entity is here intended to be a class of Entities whose instances are the informational content of Information Bearing Entities. For example, three instances of information bearers -- such as a bar chart, color-coded map, and a written report -- each of which lists the GDP of Countries for the year 2010 are each different carriers of the same information content. It is this content that is generically dependent upon its carrier. This treatment of Informational Content Entity (cf. the Information Artifact Ontology) leads to a principle of subtyping based upon the relationship that ICE's have with the Entity they are about rather than characteristics such as format, language, measurement scale, or media. The latter are treated here as being Qualities of bearers."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/InformationQualityEntity
cco:InformationQualityEntity rdf:type owl:Class ;
rdfs:subClassOf obo:BFO_0000019 ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000197 ;
owl:someValuesFrom cco:InformationBearingEntity
] ;
cco:alternative_label "IQE"@en ;
cco:definition "A Quality that concretizes some Information Content Entity."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:comment "Typically, an IQE will be a complex pattern made up of multiple qualities joined together spatially."@en ;
rdfs:label "Information Quality Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Initialism
cco:Initialism rdf:type owl:Class ;
rdfs:subClassOf cco:AbbreviatedName ;
cco:definition "An Abbreviated Name that consists of the initial letters of some words (or syllables) in a Designative Name, and in which each letter is pronounced separately."@en ;
cco:example_of_usage "USA, CPU, BBC" ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Initialism"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/IntervalEstimateInformationContentEntity
cco:IntervalEstimateInformationContentEntity rdf:type owl:Class ;
rdfs:subClassOf cco:EstimateInformationContentEntity ;
cco:alternative_label "Interval Estimate"@en ,
"Interval Estimate Measurement Information Content Entity"@en ;
cco:definition "An Estimate Information Content Entity that consists of an interval of possible (or probable) values for the measured entity."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Interval Estimate Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/IntervalMeasurementInformationContentEntity
cco:IntervalMeasurementInformationContentEntity rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:MeasurementInformationContentEntity
[ rdf:type owl:Restriction ;
owl:onProperty cco:is_a_interval_measurement_of ;
owl:someValuesFrom obo:BFO_0000001
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf cco:MeasurementInformationContentEntity ;
owl:disjointWith cco:NominalMeasurementInformationContentEntity ,
cco:OrdinalMeasurementInformationContentEntity ,
cco:RatioMeasurementInformationContentEntity ;
cco:definition "A Measurement Information Content Entity that places a Quality of an Entity onto some interval scale having no true zero value."@en ;
cco:example_of_usage "The sentence \"The temperature reached -27 degrees Fahrenheit on January 20, 1985 in Chicago, IL.\" is the carrier of an interval measurement as 0 degrees on the Fahrenheit scale does not describe absolute zero."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:comment "Four of the subtypes of measurements used here (Interval, Nominal, Ordinal, and Ratio) were originally defined by S.S. Stevens in the article \"On the Theory of Scales of Measurement\" in Science, Vol. 103 No. 2684 on June 7, 1946. For an introductory article with links to additional content including criticisms and alternate classifications of measurements see https://en.wikipedia.org/wiki/Level_of_measurement"@en ;
rdfs:label "Interval Measurement Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/JulianDateFraction
cco:JulianDateFraction rdf:type owl:Class ;
rdfs:subClassOf cco:DecimalTimeOfDayIdentifier ;
cco:alternative_label "Julian Date Time Identifier"@en ,
"Julian Day Fraction"@en ;
cco:definition "A Decimal Time of Day Identifier that designates an approximate Temporal Instant that is part of some Julian Day."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Julian Date Fraction"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/JulianDateIdentifier
cco:JulianDateIdentifier rdf:type owl:Class ;
rdfs:subClassOf cco:DecimalTimeOfDayIdentifier ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000178 ;
owl:someValuesFrom cco:JulianDateFraction
] ,
[ rdf:type owl:Restriction ;
owl:onProperty obo:BFO_0000178 ;
owl:someValuesFrom cco:JulianDayNumber
] ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:designates ;
owl:someValuesFrom cco:JulianDate
] ;
cco:definition "A Decimal Time of Day Identifier that designates a Julian Date and is composed of both a Julian Day Number and a Julian Date Fraction."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Julian Date Identifier"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/JulianDayNumber
cco:JulianDayNumber rdf:type owl:Class ;
rdfs:subClassOf cco:DecimalDateIdentifier ,
[ rdf:type owl:Restriction ;
owl:onProperty cco:designates ;
owl:someValuesFrom cco:JulianDay
] ;
cco:definition "A Decimal Date Identifier that designates some Julian Day by using a number to indicate the sequential ordering of the Day since the Julian Date epoch."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Julian Day Number"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/Language
cco:Language rdf:type owl:Class ;
rdfs:subClassOf cco:DirectiveInformationContentEntity ;
cco:definition "A Directive Information Content Entity that prescribes a canonical format for communication."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Language"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/LegalName
cco:LegalName rdf:type owl:Class ;
rdfs:subClassOf cco:ProperName ;
cco:definition "A Proper Name that is an official name for the designated entity as determined by a Government or court of law."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Legal Name"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/LotNumber
cco:LotNumber rdf:type owl:Class ;
rdfs:subClassOf cco:CodeIdentifier ;
cco:definition "A Code Identifier that designates a particular quantity or lot of material from a single manufacturer."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Lot_number&oldid=1061846325"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Lot Number"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/LunarCalendarSystem
cco:LunarCalendarSystem rdf:type owl:Class ;
rdfs:subClassOf cco:CalendarSystem ;
cco:definition "A Calendar System that is designed to organize and identify dates based on the cycles of the Moon's phases."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Lunar_calendar&oldid=1055396837"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Lunar Calendar System"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MaximumOrdinalMeasurementInformationContentEntity
cco:MaximumOrdinalMeasurementInformationContentEntity rdf:type owl:Class ;
rdfs:subClassOf cco:OrdinalMeasurementInformationContentEntity ;
cco:definition "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the largest or having the greatest amount relative to a nominally described set of like entities."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Maximum Ordinal Measurement Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MeanPointEstimateInformationContentEntity
cco:MeanPointEstimateInformationContentEntity rdf:type owl:Class ;
rdfs:subClassOf cco:PointEstimateInformationContentEntity ;
cco:alternative_label "Arithmetic Mean"@en ,
"Average"@en ,
"Mean"@en ;
cco:definition "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to the sum of all the values in the set divided by the total number of values in the set."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Mean Point Estimate Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementInformationContentEntity
cco:MeasurementInformationContentEntity rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( cco:DescriptiveInformationContentEntity
[ rdf:type owl:Restriction ;
owl:onProperty cco:is_a_measurement_of ;
owl:someValuesFrom obo:BFO_0000001
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf cco:DescriptiveInformationContentEntity ;
owl:disjointWith cco:RepresentationalInformationContentEntity ;
cco:alternative_label "Measurement ICE"@en ;
cco:definition "A Descriptive Information Content Entity that describes the extent, dimensions, quantity, or quality of an Entity relative to some standard."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Measurement Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnit
cco:MeasurementUnit rdf:type owl:Class ;
rdfs:subClassOf cco:DescriptiveInformationContentEntity ;
cco:definition "A Descriptive Information Content Entity that describes a definite magnitude of a physical quantity, defined and adopted by convention and/or by law, that is used as a standard for measurement of the same physical quantity."@en ;
cco:definition_source "https://en.wikipedia.org/w/index.php?title=Unit_of_measurement&oldid=1061038125"^^xsd:anyURI ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Measurement Unit"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MeasurementUnitOfGeocoordinate
cco:MeasurementUnitOfGeocoordinate rdf:type owl:Class ;
rdfs:subClassOf cco:MeasurementUnit ;
cco:definition "A Measurement Unit specifying the geospatial coordinates of a location."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Measurement Unit of Geocoordinate"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MedianPointEstimateInformationContentEntity
cco:MedianPointEstimateInformationContentEntity rdf:type owl:Class ;
rdfs:subClassOf cco:PointEstimateInformationContentEntity ;
cco:alternative_label "Median"@en ;
cco:definition "A Point Estimate Information Content Entity that is a measurement of a set of values and is equal to either the middle value or the average of the two values which separate the set into two equally populated upper and lower sets."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Median Point Estimate Information Content Entity"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MilitaryTimeZoneIdentifier
cco:MilitaryTimeZoneIdentifier rdf:type owl:Class ;
rdfs:subClassOf cco:TimeZoneIdentifier ;
cco:definition "A Time Zone Identifier that designates a spatial region where the local time is calculated according to the specified offset from Zulu time, which has no offset from Coordinated Universal Time."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;
rdfs:label "Military Time Zone Identifier"@en .
### http://www.ontologyrepository.com/CommonCoreOntologies/MinimumOrdinalMeasurementInformationContentEntity
cco:MinimumOrdinalMeasurementInformationContentEntity rdf:type owl:Class ;
rdfs:subClassOf cco:OrdinalMeasurementInformationContentEntity ;
cco:definition "An Ordinal Measurement Information Content Entity that is a measurement of some entity in virtue of it being the smallest or having the least amount relative to a nominally described set of like entities."@en ;
cco:is_curated_in_ontology "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology"^^xsd:anyURI ;