-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.ttl
282 lines (246 loc) · 9.09 KB
/
schema.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
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
@prefix exv: <http://example.org/vocab/#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
exv:Publication rdf:type rdf:Class .
exv:Author rdf:type rdf:Class .
exv:Venue rdf:type rdf:Class .
exv:Category rdf:type rdf:Class .
exv:FieldsOfStudy rdf:type rdf:Class .
exv:Section rdf:type rdf:Class .
exv:Institution rdf:type rdf:Class .
exv:Topic rdf:type rdf:Class .
# Publication properties
exv:belongsToVenue rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range exv:Venue .
exv:hasCitationCount rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:unsignedInt .
exv:hasPublicationDate rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:dateTime .
exv:hasSemanticId rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:string .
exv:references rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range exv:Publication .
exv:hasTitle rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:string .
exv:updatedOn rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:dateTime .
exv:hasSections rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range exv:Section .
exv:hasReferenceCount rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:unsignedInt .
exv:hasPdfPath rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:string .
exv:belongsToCategory rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range exv:Category .
exv:hasAbstract rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:string .
exv:cites rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range exv:Publication .
exv:belongsToFieldsOfStudy rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range exv:FieldsOfStudy .
exv:isOpenAccess rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:boolean .
exv:hasInfluentialCitationCount rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:unsignedInt .
exv:publishedOnYear rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:integer .
exv:authoredBy rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range exv:Author .
exv:wrote rdf:type rdf:Property;
rdfs:domain exv:Author;
rdfs:range exv:Publication .
exv:hasCorpusId rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:string .
exv:hasArxivId rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:string .
exv:hasPdfUrl rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range xsd:string .
exv:belongToTopic rdf:type rdf:Property;
rdfs:domain exv:Publication;
rdfs:range exv:Topic .
# topic properties
exv:hasPublication rdf:type rdf:Property;
rdfs:domain exv:Topic;
rdfs:range exv:Publication .
# section properties
exv:hasSectionTitle rdf:type rdf:Property;
rdfs:domain exv:Section;
rdfs:range xsd:string .
exv:hasSectionBody rdf:type rdf:Property;
rdfs:domain exv:Section;
rdfs:range xsd:string .
# author properties
exv:hasAuthorId rdf:type rdf:Property;
rdfs:domain exv:Author;
rdfs:range xsd:string .
exv:hasExternalId rdf:type rdf:Property;
rdfs:domain exv:Author;
rdfs:range xsd:string .
exv:hasUrl rdf:type rdf:Property;
rdfs:domain exv:Author;
rdfs:range xsd:string .
exv:hasName rdf:type rdf:Property;
rdfs:domain exv:Author;
rdfs:range xsd:string .
exv:hasAlias rdf:type rdf:Property;
rdfs:domain exv:Author;
rdfs:range xsd:string .
exv:affiliatedWith rdf:type rdf:Property;
rdfs:domain exv:Author;
rdfs:range exv:Institution .
exv:hasHomepage rdf:type rdf:Property;
rdfs:domain exv:Author;
rdfs:range xsd:string .
exv:hasPaperCount rdf:type rdf:Property;
rdfs:domain exv:Author;
rdfs:range xsd:unsignedInt .
exv:hasCitationCount rdf:type rdf:Property;
rdfs:domain exv:Author;
rdfs:range xsd:unsignedInt .
exv:hasHIndex rdf:type rdf:Property;
rdfs:domain exv:Author;
rdfs:range xsd:float .
exv:cites owl:inverseOf exv:references .
exv:authoredBy owl:inverseOf exv:wrote .
exv:belongToTopic owl:inverseOf exv:hasPublication .
exv:hasCitationCount rdf:type owl:FunctionalProperty .
exv:hasPublicationDate rdf:type owl:FunctionalProperty .
exv:hasSemanticId rdf:type owl:FunctionalProperty .
exv:hasTitle rdf:type owl:FunctionalProperty .
exv:updatedOn rdf:type owl:FunctionalProperty .
exv:hasReferenceCount rdf:type owl:FunctionalProperty .
exv:hasPdfPath rdf:type owl:FunctionalProperty .
exv:hasAbstract rdf:type owl:FunctionalProperty .
exv:isOpenAccess rdf:type owl:FunctionalProperty .
exv:hasInfluentialCitationCount rdf:type owl:FunctionalProperty .
exv:publishedOnYear rdf:type owl:FunctionalProperty .
exv:authoredBy rdf:type owl:FunctionalProperty .
exv:hasCorpusId rdf:type owl:FunctionalProperty .
exv:hasArxivId rdf:type owl:FunctionalProperty .
exv:hasPdfUrl rdf:type owl:FunctionalProperty .
exv:hasPublication rdf:type owl:FunctionalProperty .
exv:hasSectionTitle rdf:type owl:FunctionalProperty .
exv:hasSectionBody rdf:type owl:FunctionalProperty .
exv:hasAuthorId rdf:type owl:FunctionalProperty .
exv:hasExternalId rdf:type owl:FunctionalProperty .
exv:hasUrl rdf:type owl:FunctionalProperty .
exv:hasName rdf:type owl:FunctionalProperty .
exv:hasAlias rdf:type owl:FunctionalProperty .
exv:hasHomepage rdf:type owl:FunctionalProperty .
exv:hasPaperCount rdf:type owl:FunctionalProperty .
exv:hasCitationCount rdf:type owl:FunctionalProperty .
exv:hasHIndex rdf:type owl:FunctionalProperty .
exv:hasSemanticId rdf:type owl:InverseFunctionalProperty .
exv:hasCorpusId rdf:type owl:InverseFunctionalProperty .
exv:hasArxivId rdf:type owl:InverseFunctionalProperty .
exv:hasAuthorId rdf:type owl:InverseFunctionalProperty .
exv:hasExternalId rdf:type owl:InverseFunctionalProperty .
# although all properties defined here are irreflexive the owl:AllDisjointClasses constraint implies it for all
# those that have different domain and range
exv:references rdf:type owl:IrreflexiveProperty .
exv:cites rdf:type owl:IrreflexiveProperty .
# properties that must have some value related to it
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:onProperty exv:publishedOnYear;
owl:someValuesFrom xsd:integer] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:onProperty exv:references;
owl:someValuesFrom exv:Publication] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:onProperty exv:cites;
owl:someValuesFrom exv:Publication] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:onProperty exv:hasSemanticId;
owl:someValuesFrom xsd:string] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:onProperty exv:hasTitle;
owl:someValuesFrom xsd:string] .
exv:Author rdfs:subClassOf [a owl:Restriction;
owl:onProperty exv:hasAuthorId;
owl:someValuesFrom xsd:string] .
# Max cardinalities
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:belongsToVenue] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:hasPublicationDate] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:hasSemanticId] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:belongsToVenue] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:hasTitle] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:updatedOn] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:hasPdfPath] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:hasAbstract] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:isOpenAccess] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:hasCorpusId] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:hasArxivId] .
exv:Publication rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:hasPdfUrl] .
exv:Section rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:hasSectionTitle] .
exv:Section rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:hasSectionBody] .
exv:Author rdfs:subClassOf [a owl:Restriction;
owl:maxCardinality 1;
owl:onProperty exv:hasAuthorId] .
# disjoint classes
[] a owl:AllDisjointClasses ;
owl:members (
exv:Publication
exv:Author
exv:Venue
exv:Category
exv:FieldsOfStudy
exv:Section
exv:Institution
exv:Topic
xsd:unsignedInt
xsd:dateTime
xsd:string
xsd:boolean
xsd:integer
) .