This repository has been archived by the owner on Apr 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.n3
245 lines (206 loc) · 8.97 KB
/
schema.n3
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
@prefix : <http://geoknow.eu/> .
@prefix aiiso: <http://purl.org/vocab/aiiso/schema#> .
@prefix content: <http://purl.org/rss/1.0/modules/content/>.
@prefix data: <http://geoknow.eu/> .
@prefix dbpedia: <http://dbpedia.org/resource/> .
@prefix dcterms: <http://purl.org/dc/terms/>.
@prefix doap: <http://usefulinc.com/ns/doap#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix lod2: <http://lod2.eu/schema/> .
@prefix ov: <http://open.vocab.org/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix people: <http://aksw.org/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sioc: <http://rdfs.org/sioc/ns#>.
@prefix sioct: <http://rdfs.org/sioc/types#>.
@prefix site: <http://ns.ontowiki.net/SysOnt/Site/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix sysont: <http://ns.ontowiki.net/SysOnt/> .
@prefix v: <http://www.w3.org/2006/vcard/ns#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://geoknow.eu/> a void:Dataset;
dcterms:description "This dataset contains information about the GeoKnow project @ Agile Knowledge Management and Semantic Web (AKSW) Research Group @ University of Leipzig.";
foaf:homepage <http://geoknow.eu>;
foaf:page <http://aksw.org/Projects/GeoKnow>;
dcterms:title "geoknow.eu";
dcterms:license <http://creativecommons.org/licenses/by-sa/3.0/>;
dcterms:subject dbpedia:Semantic_Web;
void:feature <http://www.w3.org/ns/formats/RDF_XML>, <http://www.w3.org/ns/formats/Turtle>;
void:sparqlEndpoint :sparql;
void:dataDump <http://geoknow.eu/model/export/?m=http%3A%2F%2Fgeoknow.eu%2F&f=rdfxml>, <http://geoknow.eu/model/export/?m=http%3A%2F%2Fgeoknow.eu%2F&f=turtle>;
void:rootResource <http://geoknow.eu/Navigation/Main>.
# reused classes
foaf:Person a owl:Class;
site:classTemplate "person";
rdfs:label "Person".
foaf:Organization a owl:Class;
site:classTemplate "person";
rdfs:label "Organization".
foaf:Document a owl:Class;
site:classTemplate "document";
rdfs:label "Document".
foaf:Project a owl:Class;
site:classTemplate "project";
rdfs:label "Project".
void:Dataset a owl:Class;
sysont:hidden "true"^^xsd:boolean;
rdfs:label "Dataset".
v:VCard a owl:Class;
sysont:hidden "true"^^xsd:boolean;
rdfs:label "vCard".
v:Work a owl:Class;
sysont:hidden "true"^^xsd:boolean;
rdfs:label "vCard Work part".
aiiso:ResearchGroup a owl:Class;
site:classTemplate "group";
dcterms:issued "2008-05-14" ;
rdfs:comment "A Research Group is a group of people recognised by an organization as forming a cohesive group referred to by the organization as a research group.";
rdfs:isDefinedBy <http://purl.org/vocab/aiiso/schema#> ;
rdfs:subClassOf <http://xmlns.com/foaf/0.1/Organization> ;
rdfs:label "Research Group".
# ontowiki site extension properties and classes
site:Navigation a rdfs:Class;
rdfs:subClassOf rdf:Seq;
rdfs:comment "an RDF sequence resource which is used by the site extensions menu helper";
skos:note "menu items can have a special label with site:menuLabel";
rdfs:label "Navigation".
site:templateOption a owl:DatatypeProperty;
rdfs:comment "this property is used to forward some site specific options to rendering template";
rdfs:label "template option".
site:abbrevation a owl:DatatypeProperty;
rdfs:comment "the abbrevation of a resource is used e.g. as a url naming part as well as can be used for better searching.";
rdfs:subPropertyOf skos:altLabel;
rdfs:label "abbrevation".
site:content a owl:DatatypeProperty;
rdfs:comment "the main content of a resource in an encoded text of a specific encoding datatype, e.g. sysont:Markdown.";
rdfs:subPropertyOf <http://purl.org/rss/1.0/modules/content/encoded>;
rdfs:label "main content".
site:classTemplate a owl:DatatypeProperty, owl:FunctionalProperty;
rdfs:comment "identifies the template which is used to render the HTML representation of the resources of this class";
rdfs:domain owl:Class;
rdfs:range xsd:string;
rdfs:label "class template".
site:template a owl:DatatypeProperty, owl:FunctionalProperty;
rdfs:comment "identifies the template which is used to render the HTML representation of this specific resources";
rdfs:comment "this attribute overwrites the site:classTemplate property";
rdfs:range xsd:string;
rdfs:label "template".
site:menuLabel a owl:DatatypeProperty, owl:FunctionalProperty;
rdfs:comment "if present, the navigation list helper uses this literal for the display name of the menu item";
rdfs:subPropertyOf skos:altLabel;
rdfs:label "menu label".
# LOD2 properties
lod2:contentRaw a owl:DatatypeProperty;
rdfs:label "raw content".
lod2:exhibitData a owl:ObjectProperty;
rdfs:label "exhibit data".
# reused properties
# dc
dcterms:contributor a rdf:Property ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "contributor".
dcterms:creator a rdf:Property ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "creator".
dcterms:subject a rdf:Property ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "subject".
dcterms:license a rdf:Property ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "license".
dcterms:publisher a rdf:Property ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "publisher".
dcterms:title a rdf:Property ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "title".
dcterms:source a rdf:Property ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "source".
dcterms:abstract a rdf:Property ;
rdfs:comment "A summary of the resource.";
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Abstract".
# sioc
sioc:feed a owl:ObjectProperty;
rdfs:comment "A feed (e.g. RSS, Atom, etc.) pertaining to this resource (e.g. for a Forum, Site, UserAccount, etc.).";
rdfs:isDefinedBy <http://rdfs.org/sioc/ns#> ;
rdfs:label "feed".
# doap
doap:maintainer a rdf:Property;
rdfs:isDefinedBy <http://usefulinc.com/ns/doap#>;
rdfs:comment "Maintainer of a project, a project leader.";
rdfs:label "maintainer".
doap:programming-language a rdf:Property;
rdfs:isDefinedBy <http://usefulinc.com/ns/doap#>;
rdfs:comment "Programming language a project is implemented in or intended for use with.";
rdfs:label "programming language".
# foaf
foaf:page a owl:ObjectProperty;
rdfs:label "page".
foaf:homepage a owl:ObjectProperty;
rdfs:label "homepage".
foaf:depiction a owl:ObjectProperty;
rdfs:label "depiction".
foaf:member a owl:ObjectProperty;
rdfs:label "member".
foaf:currentProject a owl:ObjectProperty;
rdfs:label "current project".
foaf:mbox a owl:ObjectProperty;
rdfs:label "email".
foaf:name a owl:ObjectProperty;
rdfs:label "name".
foaf:pastProject a owl:ObjectProperty;
rdfs:label "past project".
foaf:phone a owl:ObjectProperty;
rdfs:label "phone".
# the basics
# rdfs
rdfs:label a owl:DatatypeProperty;
rdfs:label "label".
# rdf
rdf:type a owl:ObjectProperty;
rdfs:label "type".
rdf:_1 a rdfs:ContainerMembershipProperty;
rdfs:label "1.".
rdf:_2 a rdfs:ContainerMembershipProperty;
rdfs:label "2.".
rdf:_3 a rdfs:ContainerMembershipProperty;
rdfs:label "3.".
rdf:_4 a rdfs:ContainerMembershipProperty;
rdfs:label "4.".
rdf:_5 a rdfs:ContainerMembershipProperty;
rdfs:label "5.".
rdf:_6 a rdfs:ContainerMembershipProperty;
rdfs:label "6.".
rdf:_7 a rdfs:ContainerMembershipProperty;
rdfs:label "7.".
rdf:_8 a rdfs:ContainerMembershipProperty;
rdfs:label "8.".
rdf:_9 a rdfs:ContainerMembershipProperty;
rdfs:label "9.".
rdf:_10 a rdfs:ContainerMembershipProperty;
rdfs:label "10.".
# others
ov:businessCard a rdf:Property ;
<http://purl.org/net/vocab/2004/03/label#plural> "Business Cards"@en ;
rdfs:comment "A business card associated with this resource."@en ;
rdfs:isDefinedBy <http://open.vocab.org/terms> ;
rdfs:label "Business Card"@en ;
rdfs:range v:VCard ;
owl:equivalentProperty <http://purl.org/uF/hCard/terms/hasCard> ;
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "unstable" ;
<http://www.w3.org/2003/06/sw-vocab-status/ns#userdocs> <http://open.vocab.org/docs/> ;
skos:note <http://open.vocab.org/changes/0a8d6d27db41d0a297e67d0da3f0c45b>, <http://open.vocab.org/changes/4d316062a929a47b0313fddaa68084b5> .
ov:screenshot a rdf:Property ;
<http://purl.org/net/vocab/2004/03/label#plural> "screenshots"@en ;
rdfs:comment "A screenshot showing the (software) project in action. Since DOAP only has a property to link a \"web page with screenshots of project\", not a specific screenshot, this property is sometimes more useful."@en ;
rdfs:domain foaf:Project;
rdfs:isDefinedBy <http://open.vocab.org/terms> ;
rdfs:label "screenshot"@en ;
rdfs:range foaf:Image;
rdfs:subPropertyOf foaf:depiction;
owl:inverseOf foaf:depicts.