-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathowltime.ttl
32 lines (29 loc) · 921 Bytes
/
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
PREFIX : <https://periodo.github.io/edtf-ontology/cases/level-2/year-subdivision/semestral/>
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 semestral of 2001" ;
time:inDateTime [
a
time:DateTimeDescription ,
edtfo:SubYearDateTimeDescription ;
time:unitType edtfo:unitSemestral ;
time:year "2001"^^xsd:gYear ;
edtfo:yearSubdivision edtfo:Semestral1
] ;
.
:when2
a time:Instant ;
rdfs:label "second semestral of 2001" ;
time:inDateTime [
a
time:DateTimeDescription ,
edtfo:SubYearDateTimeDescription ;
time:unitType edtfo:unitSemestral ;
time:year "2001"^^xsd:gYear ;
edtfo:yearSubdivision edtfo:Semestral2
] ;
.