-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathowltime.ttl
45 lines (41 loc) · 1.23 KB
/
owltime.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
PREFIX : <https://periodo.github.io/edtf-ontology/cases/level-2/year-subdivision/quadrimester/>
PREFIX edtfo: <https://periodo.github.io/edtf-ontology/edtfo.ttl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX time: <http://www.w3.org/2006/time#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
:when1
a time:Instant ;
rdfs:label "first quadrimester of 2001" ;
time:inDateTime [
a
time:DateTimeDescription ,
edtfo:SubYearDateTimeDescription ;
time:unitType edtfo:unitQuadrimester ;
time:year "2001"^^xsd:gYear ;
edtfo:yearSubdivision edtfo:Quadrimester1
] ;
.
:when2
a time:Instant ;
rdfs:label "second quadrimester of 2001" ;
time:inDateTime [
a
time:DateTimeDescription ,
edtfo:SubYearDateTimeDescription ;
time:unitType edtfo:unitQuadrimester ;
time:year "2001"^^xsd:gYear ;
edtfo:yearSubdivision edtfo:Quadrimester2
] ;
.
:when3
a time:Instant ;
rdfs:label "third quadrimester of 2001." ;
time:inDateTime [
a
time:DateTimeDescription ,
edtfo:SubYearDateTimeDescription ;
time:unitType edtfo:unitQuadrimester ;
time:year "2001"^^xsd:gYear ;
edtfo:yearSubdivision edtfo:Quadrimester3
] ;
.