-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathTime.owl
More file actions
2058 lines (1547 loc) · 115 KB
/
Time.owl
File metadata and controls
2058 lines (1547 loc) · 115 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="http://ontology.eil.utoronto.ca/icity/Time/"
xml:base="http://ontology.eil.utoronto.ca/icity/Time/"
xmlns:adms="http://www.w3.org/ns/adms#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:ns="http://creativecommons.org/ns#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:wgs84_pos="http://www.w3.org/2003/01/geo/wgs84_pos#"
xmlns:time="http://www.w3.org/2006/time#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<owl:Ontology rdf:about="http://ontology.eil.utoronto.ca/icity/Time/">
<owl:versionIRI rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/1.1/"/>
<owl:imports rdf:resource="http://www.w3.org/2006/time#2016"/>
<skos:changeNote>2017-02 - intervalIn, intervalDisjoint, monthOfYear added; TemporalUnit subclass of TemporalDuration</skos:changeNote>
<rdfs:seeAlso rdf:resource="http://www.w3.org/TR/owl-time"/>
<terms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2017-04-06</terms:modified>
<adms:relatedDocumentation>Under development. Please see report on iCity Ontology v1.</adms:relatedDocumentation>
<vann:preferredNamespacePrefix>icity-Time</vann:preferredNamespacePrefix>
<skos:changeNote>2016-06-15 - initial update of OWL-Time - modified to support arbitrary temporal reference systems. </skos:changeNote>
<rdfs:seeAlso rdf:resource="http://dx.doi.org/10.3233/SW-150187"/>
<terms:license rdf:resource="https://creativecommons.org/licenses/by/4.0/"/>
<terms:creator rdf:resource="mailto:panfeng66@gmail.com"/>
<ns:license>http://creativecommons.org/licenses/by/3.0/</ns:license>
<skos:changeNote>2016-12-20 - restore time:Year and time:January which were present in the 2006 version of the ontology, but now marked "deprecated". </skos:changeNote>
<dc:title>Time Ontology</dc:title>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal">1.1</owl:versionInfo>
<vann:preferredNamespaceUri>http://ontology.eil.utoronto.ca/icity/Time/</vann:preferredNamespaceUri>
<dc:description>Ontology to capture concepts related to time. Directly reuses the W3C Time ontology.</dc:description>
<owl:priorVersion rdf:resource="http://www.w3.org/2006/time#2006"/>
<terms:isVersionOf rdf:resource="http://www.w3.org/TR/owl-time"/>
<terms:rights xml:lang="en">Copyright © 2006-2017 W3C, OGC. W3C and OGC liability, trademark and document use rules apply.</terms:rights>
<terms:creator rdf:resource="https://en.wikipedia.org/wiki/Jerry_Hobbs"/>
<skos:historyNote xml:lang="en">Update of OWL-Time ontology, extended to support general temporal reference systems.
Ontology engineering by Simon J D Cox</skos:historyNote>
<terms:creator rdf:resource="http://orcid.org/0000-0002-3884-3420"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Developed as part of the overall iCity ontology effort, the iCity-Time ontology is designed to capture concepts related to time.
Reuses the owl-time ontology.
Copyright @ 2016 Megan Katsumi, iCity Research Group
Changes from previous version:
-update to owl-time ontology per W3C revision in 2017</rdfs:comment>
<terms:contributor rdf:resource="mailto:chris.little@metoffice.gov.uk"/>
<dc:creator>Megan Katsumi</dc:creator>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2006-09-27</terms:created>
<skos:changeNote>2016-12-20 - adjust range of time:timeZone to time:TimeZone, moved up from the tzont ontology. </skos:changeNote>
<dc:issued>November 29, 2016</dc:issued>
<rdfs:label xml:lang="en">OWL-Time</rdfs:label>
<rdfs:seeAlso rdf:resource="http://www.semantic-web-journal.net/content/time-ontology-extended-non-gregorian-calendar-applications"/>
<skos:changeNote>2017-04-06 - hasTime, hasXSDDuration added; Number removed; all duration elements changed to xsd:decimal</skos:changeNote>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://creativecommons.org/ns#license -->
<owl:AnnotationProperty rdf:about="http://creativecommons.org/ns#license"/>
<!-- http://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://purl.org/dc/elements/1.1/date -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/date"/>
<!-- http://purl.org/dc/elements/1.1/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
<!-- http://purl.org/dc/elements/1.1/issued -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/issued"/>
<!-- http://purl.org/dc/elements/1.1/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
<!-- http://purl.org/dc/terms/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/creator"/>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
<!-- http://purl.org/dc/terms/issued -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/issued"/>
<!-- http://purl.org/dc/terms/modified -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/modified"/>
<!-- http://purl.org/dc/terms/rights -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/rights"/>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
<!-- http://purl.org/vocab/vann/preferredNamespacePrefix -->
<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/preferredNamespacePrefix"/>
<!-- http://purl.org/vocab/vann/preferredNamespaceUri -->
<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/preferredNamespaceUri"/>
<!-- http://www.w3.org/2002/07/owl#versionInfo -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#versionInfo"/>
<!-- http://www.w3.org/2003/01/geo/wgs84_pos#alt -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2003/01/geo/wgs84_pos#alt">
<rdfs:comment>The WGS84 altitude of a SpatialThing (decimal meters
above the local reference ellipsoid).</rdfs:comment>
<rdfs:label>altitude</rdfs:label>
<rdfs:domain rdf:resource="http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing"/>
</owl:AnnotationProperty>
<!-- http://www.w3.org/ns/adms#relatedDocumentation -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/adms#relatedDocumentation"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2006/time#generalDay -->
<rdfs:Datatype rdf:about="http://www.w3.org/2006/time#generalDay">
<rdfs:comment xml:lang="en">Day of month - formulated as a text string with a pattern constraint to reproduce the same lexical form as gDay, except that values up to 99 are permitted, in order to support calendars with more than 31 days in a month.
Note that the value-space is not defined, so a generic OWL2 processor cannot compute ordering relationships of values of this type.</rdfs:comment>
<rdfs:label xml:lang="en">Generalized day</rdfs:label>
<skos:definition xml:lang="en">Day of month - generalization of xsd:gDay, formulated as a text string with a pattern constraint to reproduce the same lexical form as gDay, except that values up to 99 are permitted, in order to support calendars with more than 31 days in a month. Note that the value-space is not defined, so a generic OWL2 processor cannot compute ordering relationships of values of this type. </skos:definition>
</rdfs:Datatype>
<!-- http://www.w3.org/2006/time#generalMonth -->
<rdfs:Datatype rdf:about="http://www.w3.org/2006/time#generalMonth">
<rdfs:comment xml:lang="en">Month of year - formulated as a text string with a pattern constraint to reproduce the same lexical form as gMonth, except that values up to 20 are permitted, in order to support calendars with more than 12 months in the year.
Note that the value-space is not defined, so a generic OWL2 processor cannot compute ordering relationships of values of this type.</rdfs:comment>
<rdfs:label xml:lang="en">Generalized month</rdfs:label>
<skos:definition xml:lang="en">Month of year - generalization of xsd:gMonth, formulated as a text string with a pattern constraint to reproduce the same lexical form as gMonth, except that values up to 20 are permitted, in order to support calendars with more than 12 months in the year. Note that the value-space is not defined, so a generic OWL2 processor cannot compute ordering relationships of values of this type.</skos:definition>
</rdfs:Datatype>
<!-- http://www.w3.org/2006/time#generalYear -->
<rdfs:Datatype rdf:about="http://www.w3.org/2006/time#generalYear"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyProperty -->
<owl:ObjectProperty rdf:about="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyProperty">
<dc:description>Property added for organizational purposes, to identify properties defined in the Time Ontology.</dc:description>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#after -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#after">
<owl:inverseOf rdf:resource="http://www.w3.org/2006/time#before"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:comment xml:lang="en">Gives directionality to time. If a temporal entity T1 is after another temporal entity T2, then the beginning of T1 is after the end of T2.</rdfs:comment>
<rdfs:label xml:lang="en">after</rdfs:label>
<skos:definition xml:lang="en">Gives directionality to time. If a temporal entity T1 is after another temporal entity T2, then the beginning of T1 is after the end of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#before -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#before">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:comment xml:lang="en">Gives directionality to time. If a temporal entity T1 is before another temporal entity T2, then the end of T1 is before the beginning of T2. Thus, "before" can be considered to be basic to instants and derived for intervals.</rdfs:comment>
<rdfs:label xml:lang="en">before</rdfs:label>
<skos:definition xml:lang="en">Gives directionality to time. If a temporal entity T1 is before another temporal entity T2, then the end of T1 is before the beginning of T2. Thus, "before" can be considered to be basic to instants and derived for intervals.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#dayOfWeek -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#dayOfWeek">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#DayOfWeek"/>
<rdfs:comment xml:lang="en">The day of week, whose value is a member of the class time:DayOfWeek</rdfs:comment>
<rdfs:label xml:lang="en">day of week</rdfs:label>
<skos:definition xml:lang="en">The day of week, whose value is a member of the class time:DayOfWeek</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#hasBeginning -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#hasBeginning">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#hasTime"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:comment xml:lang="en">Beginning of a temporal entity</rdfs:comment>
<rdfs:label xml:lang="en">has beginning</rdfs:label>
<skos:definition xml:lang="en">Beginning of a temporal entity.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#hasDateTimeDescription -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#hasDateTimeDescription">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#DateTimeInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
<rdfs:comment xml:lang="en">Value of DateTimeInterval expressed as a structured value. The beginning and end of the interval coincide with the limits of the shortest element in the description.</rdfs:comment>
<rdfs:label xml:lang="en">has Date-Time description</rdfs:label>
<skos:definition xml:lang="en">Value of DateTimeInterval expressed as a structured value. The beginning and end of the interval coincide with the limits of the shortest element in the description.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#hasDuration -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#hasDuration">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#hasTemporalDuration"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#Duration"/>
<rdfs:comment xml:lang="en">Duration of a temporal entity, expressed as a scaled value or nominal value</rdfs:comment>
<rdfs:label xml:lang="en">has duration</rdfs:label>
<skos:definition xml:lang="en">Duration of a temporal entity, event or activity, or thing, expressed as a scaled value</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#hasDurationDescription -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#hasDurationDescription">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#hasTemporalDuration"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#GeneralDurationDescription"/>
<rdfs:comment xml:lang="en">Duration of a temporal entity, expressed using a structured description</rdfs:comment>
<rdfs:label xml:lang="en">has duration description</rdfs:label>
<skos:definition xml:lang="en">Duration of a temporal entity, expressed using a structured description</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#hasEnd -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#hasEnd">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#hasTime"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:comment xml:lang="en">End of a temporal entity.</rdfs:comment>
<rdfs:label xml:lang="en">has end</rdfs:label>
<skos:definition xml:lang="en">End of a temporal entity.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#hasTRS -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#hasTRS">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#GeneralDurationDescription"/>
<rdf:Description rdf:about="http://www.w3.org/2006/time#TemporalPosition"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#TRS"/>
<rdfs:comment xml:lang="en">The temporal reference system used by a temporal position or extent description. </rdfs:comment>
<rdfs:label xml:lang="en">Temporal reference system used</rdfs:label>
<skos:definition xml:lang="en">The temporal reference system used by a temporal position or extent description. </skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#hasTemporalDuration -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#hasTemporalDuration">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalDuration"/>
<rdfs:comment xml:lang="en">Duration of a temporal entity.</rdfs:comment>
<rdfs:label xml:lang="en">has temporal duration</rdfs:label>
<skos:definition xml:lang="en">Duration of a temporal entity.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#hasTime -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#hasTime">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:comment xml:lang="en">Supports the association of a temporal entity (instant or interval) to any thing</rdfs:comment>
<rdfs:label xml:lang="en">has time</rdfs:label>
<skos:definition xml:lang="en">Supports the association of a temporal entity (instant or interval) to any thing</skos:definition>
<skos:editorialNote xml:lang="en">Feature at risk - added in 2017 revision, and not yet widely used. </skos:editorialNote>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#inDateTime -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#inDateTime">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#inTemporalPosition"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
<rdfs:comment xml:lang="en">Position of an instant, expressed using a structured description</rdfs:comment>
<rdfs:label xml:lang="en">in date-time description</rdfs:label>
<skos:definition xml:lang="en">Position of an instant, expressed using a structured description</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#inTemporalPosition -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#inTemporalPosition">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalPosition"/>
<rdfs:comment xml:lang="en">Position of a time instant</rdfs:comment>
<rdfs:label xml:lang="en">Temporal position</rdfs:label>
<skos:definition xml:lang="en">Position of a time instant</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#inTimePosition -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#inTimePosition">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#inTemporalPosition"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#TimePosition"/>
<rdfs:comment xml:lang="en">Position of an instant, expressed as a temporal coordinate or nominal value</rdfs:comment>
<rdfs:label xml:lang="en">Time position</rdfs:label>
<skos:definition xml:lang="en">Position of a time instant expressed as a TimePosition</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#inside -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#inside">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#Interval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:comment xml:lang="en">An instant that falls inside the interval. It is not intended to include beginnings and ends of intervals.</rdfs:comment>
<rdfs:label xml:lang="en">has time instant inside</rdfs:label>
<skos:definition xml:lang="en">An instant that falls inside the interval. It is not intended to include beginnings and ends of intervals.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalAfter -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalAfter">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#after"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#intervalDisjoint"/>
<owl:inverseOf rdf:resource="http://www.w3.org/2006/time#intervalBefore"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalAfter another proper interval T2, then the beginning of T1 is after the end of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval after</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalAfter another proper interval T2, then the beginning of T1 is after the end of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalBefore -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalBefore">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#before"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#intervalDisjoint"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalBefore another proper interval T2, then the end of T1 is before the beginning of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval before</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalBefore another proper interval T2, then the end of T1 is before the beginning of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalContains -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalContains">
<owl:inverseOf rdf:resource="http://www.w3.org/2006/time#intervalDuring"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalContains another proper interval T2, then the beginning of T1 is before the beginning of T2, and the end of T1 is after the end of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval contains</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalContains another proper interval T2, then the beginning of T1 is before the beginning of T2, and the end of T1 is after the end of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalDisjoint -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalDisjoint">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalDisjoint another proper interval T2, then the beginning of T1 is after the end of T2, or the end of T1 is before the beginning of T2, i.e. the intervals do not overlap in any way, but their ordering relationship is not known.</rdfs:comment>
<rdfs:label xml:lang="en">interval disjoint</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalDisjoint another proper interval T2, then the beginning of T1 is after the end of T2, or the end of T1 is before the beginning of T2, i.e. the intervals do not overlap in any way, but their ordering relationship is not known.</skos:definition>
<skos:note xml:lang="en">This interval relation is not included in the 13 basic relationships defined in Allen (1984), but is defined in (T.3) as the union of :intervalBefore v :intervalAfter . However, that is outside OWL2 expressivity, so is implemented as an explicit property, with :intervalBefore , :intervalAfter as sub-properties</skos:note>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalDuring -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalDuring">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#intervalIn"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalDuring another proper interval T2, then the beginning of T1 is after the beginning of T2, and the end of T1 is before the end of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval during</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalDuring another proper interval T2, then the beginning of T1 is after the beginning of T2, and the end of T1 is before the end of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalEquals -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalEquals">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<owl:propertyDisjointWith rdf:resource="http://www.w3.org/2006/time#intervalIn"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalEquals another proper interval T2, then the beginning of T1 is coincident with the beginning of T2, and the end of T1 is coincident with the end of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval equals</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalEquals another proper interval T2, then the beginning of T1 is coincident with the beginning of T2, and the end of T1 is coincident with the end of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalFinishedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalFinishedBy">
<owl:inverseOf rdf:resource="http://www.w3.org/2006/time#intervalFinishes"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalFinishedBy another proper interval T2, then the beginning of T1 is before the beginning of T2, and the end of T1 is coincident with the end of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval finished by</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalFinishedBy another proper interval T2, then the beginning of T1 is before the beginning of T2, and the end of T1 is coincident with the end of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalFinishes -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalFinishes">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#intervalIn"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalFinishes another proper interval T2, then the beginning of T1 is after the beginning of T2, and the end of T1 is coincident with the end of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval finishes</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalFinishes another proper interval T2, then the beginning of T1 is after the beginning of T2, and the end of T1 is coincident with the end of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalIn -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalIn">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalIn another proper interval T2, then the beginning of T1 is after the beginning of T2 or is coincident with the beginning of T2, and the end of T1 is before the end of T2, or is coincident with the end of T2, except that end of T1 may not be coincident with the end of T2 if the beginning of T1 is coincident with the beginning of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval in</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalIn another proper interval T2, then the beginning of T1 is after the beginning of T2 or is coincident with the beginning of T2, and the end of T1 is before the end of T2, or is coincident with the end of T2, except that end of T1 may not be coincident with the end of T2 if the beginning of T1 is coincident with the beginning of T2.</skos:definition>
<skos:note xml:lang="en">This interval relation is not included in the 13 basic relationships defined in Allen (1984), but is referred to as 'an important relationship' in Allen and Ferguson (1997). It is the disjoint union of :intervalStarts v :intervalDuring v :intervalFinishes . However, that is outside OWL2 expressivity, so is implemented as an explicit property, with :intervalStarts , :intervalDuring , :intervalFinishes as sub-properties</skos:note>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalMeets -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalMeets">
<owl:inverseOf rdf:resource="http://www.w3.org/2006/time#intervalMetBy"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalMeets another proper interval T2, then the end of T1 is coincident with the beginning of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval meets</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalMeets another proper interval T2, then the end of T1 is coincident with the beginning of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalMetBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalMetBy">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalMetBy another proper interval T2, then the beginning of T1 is coincident with the end of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval met by</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalMetBy another proper interval T2, then the beginning of T1 is coincident with the end of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalOverlappedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalOverlappedBy">
<owl:inverseOf rdf:resource="http://www.w3.org/2006/time#intervalOverlaps"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalOverlappedBy another proper interval T2, then the beginning of T1 is after the beginning of T2, the beginning of T1 is before the end of T2, and the end of T1 is after the end of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval overlapped by</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalOverlappedBy another proper interval T2, then the beginning of T1 is after the beginning of T2, the beginning of T1 is before the end of T2, and the end of T1 is after the end of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalOverlaps -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalOverlaps">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalOverlaps another proper interval T2, then the beginning of T1 is before the beginning of T2, the end of T1 is after the beginning of T2, and the end of T1 is before the end of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval overlaps</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalOverlaps another proper interval T2, then the beginning of T1 is before the beginning of T2, the end of T1 is after the beginning of T2, and the end of T1 is before the end of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalStartedBy -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalStartedBy">
<owl:inverseOf rdf:resource="http://www.w3.org/2006/time#intervalStarts"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalStarted another proper interval T2, then the beginning of T1 is coincident with the beginning of T2, and the end of T1 is after the end of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval started by</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalStarted another proper interval T2, then the beginning of T1 is coincident with the beginning of T2, and the end of T1 is after the end of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#intervalStarts -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#intervalStarts">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/time#intervalIn"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#ProperInterval"/>
<rdfs:comment xml:lang="en">If a proper interval T1 is intervalStarts another proper interval T2, then the beginning of T1 is coincident with the beginning of T2, and the end of T1 is before the end of T2.</rdfs:comment>
<rdfs:label xml:lang="en">interval starts</rdfs:label>
<skos:definition xml:lang="en">If a proper interval T1 is intervalStarts another proper interval T2, then the beginning of T1 is coincident with the beginning of T2, and the end of T1 is before the end of T2.</skos:definition>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#monthOfYear -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#monthOfYear">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#MonthOfYear"/>
<rdfs:comment xml:lang="en">The month of the year, whose value is a member of the class time:MonthOfYear</rdfs:comment>
<rdfs:label xml:lang="en">month of year</rdfs:label>
<skos:definition xml:lang="en">The month of the year, whose value is a member of the class time:MonthOfYear</skos:definition>
<skos:editorialNote xml:lang="en">Feature at risk - added in 2017 revision, and not yet widely used. </skos:editorialNote>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#timeZone -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#timeZone">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#TimeZone"/>
<rdfs:comment xml:lang="en">The time zone for clock elements in the temporal position</rdfs:comment>
<rdfs:label xml:lang="en">in time zone</rdfs:label>
<skos:historyNote>In the original 2006 version of OWL-Time, the range of time:timeZone was a TimeZone class in a separate namespace "http://www.w3.org/2006/timezone#".
An alignment axiom
tzont:TimeZone rdfs:subClassOf time:TimeZone .
allows data encoded according to the previous version to be consistent with the updated ontology. </skos:historyNote>
<skos:note>IANA maintains a database of timezones. These are well maintained and generally considered authoritative, but individual items are not available at individual URIs, so cannot be used directly in data expressed using OWL-Time.
DBPedia provides a set of resources corresponding to the IANA timezones, with a URI for each (e.g. http://dbpedia.org/resource/Australia/Eucla). The World Clock service also provides a list of time zones with the description of each available as an individual webpage with a convenient individual URI (e.g. https://www.timeanddate.com/time/zones/acwst). These or other, similar, resources might be used as a value of the time:timeZone property.</skos:note>
</owl:ObjectProperty>
<!-- http://www.w3.org/2006/time#unitType -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2006/time#unitType">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2006/time#Duration"/>
<rdf:Description rdf:about="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalUnit"/>
<rdfs:comment xml:lang="en">The temporal unit which provides the precision of a date-time value or scale of a temporal extent</rdfs:comment>
<rdfs:label xml:lang="en">temporal unit type</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyDataProperty -->
<owl:DatatypeProperty rdf:about="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyDataProperty">
<dc:description>Data property added for organizational purposes, to identify data properties defined in the Time Ontology.</dc:description>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#day -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#day">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
<rdfs:comment xml:lang="en">Day position in a calendar-clock system.
The range of this property is not specified, so can be replaced by any specific representation of a calendar day from any calendar. </rdfs:comment>
<rdfs:label xml:lang="en">day</rdfs:label>
<skos:definition xml:lang="en">Day position in a calendar-clock system.
The range of this property is not specified, so can be replaced by any specific representation of a calendar day from any calendar. </skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#dayOfYear -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#dayOfYear">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<rdfs:comment xml:lang="en">The number of the day within the year</rdfs:comment>
<rdfs:label xml:lang="en">day of year</rdfs:label>
<skos:definition xml:lang="en">The number of the day within the year</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#days -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#days">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDurationDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#decimal"/>
<rdfs:comment xml:lang="en">length of, or element of the length of, a temporal extent expressed in days</rdfs:comment>
<rdfs:label xml:lang="en">days duration</rdfs:label>
<skos:definition xml:lang="en">length of, or element of the length of, a temporal extent expressed in days</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#hasXSDDuration -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#hasXSDDuration">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyDataProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#duration"/>
<rdfs:comment xml:lang="en">Extent of a temporal entity, expressed using xsd:duration</rdfs:comment>
<rdfs:label xml:lang="en">has XSD duration</rdfs:label>
<skos:definition xml:lang="en">Extent of a temporal entity, expressed using xsd:duration</skos:definition>
<skos:editorialNote xml:lang="en">Feature at risk - added in 2017 revision, and not yet widely used. </skos:editorialNote>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#hour -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#hour">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<rdfs:comment xml:lang="en">Hour position in a calendar-clock system.</rdfs:comment>
<rdfs:label xml:lang="en">hour</rdfs:label>
<skos:definition xml:lang="en">Hour position in a calendar-clock system.</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#hours -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#hours">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDurationDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#decimal"/>
<rdfs:comment xml:lang="en">length of, or element of the length of, a temporal extent expressed in hours</rdfs:comment>
<rdfs:label xml:lang="en">hours duration</rdfs:label>
<skos:definition xml:lang="en">length of, or element of the length of, a temporal extent expressed in hours</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#inXSDDate -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#inXSDDate">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyDataProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/>
<rdfs:comment xml:lang="en">Position of an instant, expressed using xsd:date</rdfs:comment>
<rdfs:label xml:lang="en">in XSD date</rdfs:label>
<skos:definition xml:lang="en">Position of an instant, expressed using xsd:date</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#inXSDDateTime -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#inXSDDateTime">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:comment xml:lang="en">Position of an instant, expressed using xsd:dateTime</rdfs:comment>
<rdfs:label xml:lang="en">in XSD Date-Time</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
<skos:definition xml:lang="en">Position of an instant, expressed using xsd:dateTime</skos:definition>
<skos:note xml:lang="en">The property :inXSDDateTime is replaced by :inXSDDateTimeStamp which makes the time-zone field mandatory.</skos:note>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#inXSDDateTimeStamp -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#inXSDDateTimeStamp">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyDataProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTimeStamp"/>
<rdfs:comment xml:lang="en">Position of an instant, expressed using xsd:dateTimeStamp</rdfs:comment>
<rdfs:label xml:lang="en">in XSD Date-Time-Stamp</rdfs:label>
<skos:definition xml:lang="en">Position of an instant, expressed using xsd:dateTimeStamp</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#inXSDgYear -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#inXSDgYear">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyDataProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#gYear"/>
<rdfs:comment xml:lang="en">Position of an instant, expressed using xsd:gYear</rdfs:comment>
<rdfs:label xml:lang="en">in XSD g-Year</rdfs:label>
<skos:definition xml:lang="en">Position of an instant, expressed using xsd:gYear</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#inXSDgYearMonth -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#inXSDgYearMonth">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyDataProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#Instant"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#gYearMonth"/>
<rdfs:comment xml:lang="en">Position of an instant, expressed using xsd:gYearMonth</rdfs:comment>
<rdfs:label xml:lang="en">in XSD g-YearMonth</rdfs:label>
<skos:definition xml:lang="en">Position of an instant, expressed using xsd:gYearMonth</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#minute -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#minute">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<rdfs:comment xml:lang="en">Minute position in a calendar-clock system.</rdfs:comment>
<rdfs:label xml:lang="en">minute</rdfs:label>
<skos:definition xml:lang="en">Minute position in a calendar-clock system.</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#minutes -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#minutes">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDurationDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#decimal"/>
<rdfs:comment xml:lang="en">length, or element of, a temporal extent expressed in minutes</rdfs:comment>
<rdfs:label xml:lang="en">minutes</rdfs:label>
<skos:definition xml:lang="en">length, or element of, a temporal extent expressed in minutes</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#month -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#month">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
<rdfs:comment xml:lang="en">Month position in a calendar-clock system.
The range of this property is not specified, so can be replaced by any specific representation of a calendar month from any calendar. </rdfs:comment>
<rdfs:label xml:lang="en">month</rdfs:label>
<skos:definition xml:lang="en">Month position in a calendar-clock system.
The range of this property is not specified, so can be replaced by any specific representation of a calendar month from any calendar. </skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#months -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#months">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDurationDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#decimal"/>
<rdfs:comment xml:lang="en">length of, or element of the length of, a temporal extent expressed in months</rdfs:comment>
<rdfs:label xml:lang="en">months duration</rdfs:label>
<skos:definition xml:lang="en">length of, or element of the length of, a temporal extent expressed in months</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#nominalPosition -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#nominalPosition">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyDataProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#TimePosition"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">The (nominal) value indicating temporal position in an ordinal reference system </rdfs:comment>
<rdfs:label xml:lang="en">Name of temporal position</rdfs:label>
<skos:definition xml:lang="en">The (nominal) value indicating temporal position in an ordinal reference system </skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#numericDuration -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#numericDuration">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyDataProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#Duration"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#decimal"/>
<rdfs:comment xml:lang="en">Value of a temporal extent expressed as a decimal number scaled by a temporal unit</rdfs:comment>
<rdfs:label xml:lang="en">Numeric value of temporal duration</rdfs:label>
<skos:definition xml:lang="en">Value of a temporal extent expressed as a decimal number scaled by a temporal unit</skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#numericPosition -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#numericPosition">
<rdfs:subPropertyOf rdf:resource="http://ontology.eil.utoronto.ca/icity/Time/TimeOntologyDataProperty"/>
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#TimePosition"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#decimal"/>
<rdfs:comment xml:lang="en">The (numeric) value indicating position within a temporal coordinate system </rdfs:comment>
<rdfs:label xml:lang="en">Numeric value of temporal position</rdfs:label>
<skos:definition xml:lang="en">The (numeric) value indicating position within a temporal coordinate system </skos:definition>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#second -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#second">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#decimal"/>
<rdfs:comment xml:lang="en">Second position in a calendar-clock system.</rdfs:comment>
<rdfs:label xml:lang="en">second</rdfs:label>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#seconds -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#seconds">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDurationDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#decimal"/>
<rdfs:comment xml:lang="en">length of, or element of the length of, a temporal extent expressed in seconds</rdfs:comment>
<rdfs:label xml:lang="en">seconds duration</rdfs:label>
<rdfs:seeAlso rdf:resource="http://www.bipm.org/en/publications/si-brochure/second.html"/>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#week -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#week">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<rdfs:comment xml:lang="en">Week number within the year.</rdfs:comment>
<rdfs:label xml:lang="en">week</rdfs:label>
<skos:note xml:lang="en">Weeks are numbered differently depending on the calendar in use and the local language or cultural conventions (locale). ISO-8601 specifies that the first week of the year includes at least four days, and that Monday is the first day of the week. In that system, week 1 is the week that contains the first Thursday in the year.</skos:note>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#weeks -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#weeks">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDurationDescription"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#decimal"/>
<rdfs:comment xml:lang="en">length of, or element of the length of, a temporal extent expressed in weeks</rdfs:comment>
<rdfs:label xml:lang="en">weeks duration</rdfs:label>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#xsdDateTime -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#xsdDateTime">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#DateTimeInterval"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:comment xml:lang="en">Value of DateTimeInterval expressed as a compact value.</rdfs:comment>
<rdfs:label xml:lang="en">has XSD date-time</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
<skos:note xml:lang="en">Using xsd:dateTime in this place means that the duration of the interval is implicit: it corresponds to the length of the smallest non-zero element of the date-time literal. However, this rule cannot be used for intervals whose duration is more than one rank smaller than the starting time - e.g. the first minute or second of a day, the first hour of a month, or the first day of a year. In these cases the desired interval cannot be distinguished from the interval corresponding to the next rank up. Because of this essential ambiguity, use of this property is not recommended and it is deprecated.</skos:note>
</owl:DatatypeProperty>
<!-- http://www.w3.org/2006/time#year -->
<owl:DatatypeProperty rdf:about="http://www.w3.org/2006/time#year">
<rdfs:domain rdf:resource="http://www.w3.org/2006/time#GeneralDateTimeDescription"/>
<rdfs:comment xml:lang="en">Year position in a calendar-clock system.