This repository was archived by the owner on Mar 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtbox.ttl
More file actions
109 lines (74 loc) · 2.78 KB
/
tbox.ttl
File metadata and controls
109 lines (74 loc) · 2.78 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
@prefix P: <http://localhost:7200/academia-sdm#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
P:authorName rdfs:domain P:Author ;
rdfs:range xsd:string .
P:cityName rdfs:domain P:City ;
rdfs:range xsd:string .
P:conferenceName rdfs:domain P:Conference ;
rdfs:range xsd:string ;
rdfs:subPropertyOf P:scientificForumName .
P:editionWasHeldIn rdfs:domain P:Proceedings ;
rdfs:range P:City .
P:isCorrespondingAuthor rdfs:domain P:Author ;
rdfs:range P:Paper ;
rdfs:subPropertyOf P:writesPaper .
P:isProceedingsOfConference rdfs:domain P:Proceedings ;
rdfs:range P:Conference ;
rdfs:subPropertyOf P:isProceedingsOf .
P:isProceedingsOfWorkshop rdfs:domain P:Proceedings ;
rdfs:range P:Workshop ;
rdfs:subPropertyOf P:isProceedingsOf .
P:isPublishedInJournalVolume rdfs:domain P:Paper ;
rdfs:range P:JournalVolume ;
rdfs:subPropertyOf P:isPublishedIn .
P:isPublishedInProceedings rdfs:domain P:Paper ;
rdfs:range P:Proceedings ;
rdfs:subPropertyOf P:isPublishedIn .
P:isVolumeOf rdfs:domain P:JournalVolume ;
rdfs:range P:Journal .
P:journalName rdfs:domain P:Journal ;
rdfs:range xsd:string .
P:journalVolumeNumber rdfs:domain P:JournalVolume ;
rdfs:range xsd:unsignedInt .
P:journalVolumeYear rdfs:domain P:JournalVolume ;
rdfs:range xsd:unsignedInt .
P:paperAbstract rdfs:domain P:Paper ;
rdfs:range xsd:string .
P:paperCites rdfs:domain P:Paper ;
rdfs:range P:Paper .
P:paperContent rdfs:domain P:Paper ;
rdfs:range xsd:string .
P:paperIsAbout rdfs:domain P:Paper ;
rdfs:range P:PaperTopic .
P:paperTitle rdfs:domain P:Paper ;
rdfs:range xsd:string .
P:proceedingsYear rdfs:domain P:Proceedings ;
rdfs:range xsd:unsignedInt .
P:reviewContent rdfs:domain P:Review ;
rdfs:range xsd:string .
P:reviewIsAbout rdfs:domain P:Review ;
rdfs:range P:Paper .
P:reviewVerdict rdfs:domain P:Review ;
rdfs:range xsd:boolean .
P:topicKeyword rdfs:domain P:PaperTopic ;
rdfs:range xsd:string .
P:venueName rdfs:domain P:PublicationVenue ;
rdfs:range xsd:string .
P:workshopName rdfs:domain P:Workshop ;
rdfs:range xsd:string ;
rdfs:subPropertyOf P:scientificForumName .
P:writesReview rdfs:domain P:Author ;
rdfs:range P:Review .
P:writesPaper rdfs:domain P:Author ;
rdfs:range P:Paper .
P:Conference rdfs:subClassOf P:ScientificForum .
P:Workshop rdfs:subClassOf P:ScientificForum .
P:isProceedingsOf rdfs:domain P:Proceedings ;
rdfs:range P:ScientificForum .
P:isPublishedIn rdfs:domain P:Paper ;
rdfs:range P:PublicationVenue .
P:scientificForumName rdfs:domain P:ScientificForum ;
rdfs:range xsd:string .
P:JournalVolume rdfs:subClassOf P:PublicationVenue .
P:Proceedings rdfs:subClassOf P:PublicationVenue .