-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathedtf.ttl
37 lines (26 loc) · 1.58 KB
/
edtf.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
@base <https://periodo.github.io/edtf-ontology/> .
@prefix : <cases/level-2/qualification/individual/> .
@prefix edtfo: <edtfo.ttl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
:when1 edtfo:inEDTFDateTime "2004-06-?11" ;
rdfs:label "June 2004, possibly but not certainly the 11th" .
:when2 edtfo:inEDTFDateTime "2004-~06-11" ;
rdfs:label "2004, approximately June, on the 11th day of the month" .
:when3 edtfo:inEDTFDateTime "%2004-06-11" ;
rdfs:label "possibly but not certainly approximately 2004, on the 11th day of June" .
:when4 edtfo:inEDTFDateTime "2004-?06-~11" ;
rdfs:label "2004, possibly but not certainly June, approximately the 11th day of the month" .
:when5 edtfo:inEDTFDateTime "?2004-%06-11" ;
rdfs:label "possibly but not certainly 2004, possibly but not certainly approximately June, on the 11th day of the month" .
:when6 edtfo:inEDTFDateTime "~2004-06-%11" ;
rdfs:label "approximately 2004, in June, possibly but not certainly approximately the 11th" .
:when7 edtfo:inEDTFDateTime "?2004-%06-%11" ;
rdfs:label "possibly but not certainly 2004, possibly but not certainly approximately June, possibly but not certainly approximately the 11th day of the month" .
:when8 edtfo:inEDTFDateTime "2004-?06" ;
rdfs:label "2004, possibly but not certainly June" .
:when9 edtfo:inEDTFDateTime "~2004-06" ;
rdfs:label "approximately 2004, in June" .
:whenA edtfo:inEDTFDateTime "%2004-~06" ;
rdfs:label "possibly but not certainly approximately 2004, approximately June" .
:whenB edtfo:inEDTFDateTime "?2004" ;
rdfs:label "possibly but not certainly 2004" .