summaryrefslogtreecommitdiff
path: root/nao/nao.trig
blob: 2c977d30133b163f2fa44d6db7036960435d4c76 (plain)
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
#
# Copyright (c) 2007 NEPOMUK Consortium
# All rights reserved, licensed under either CC-BY or BSD.
#
# You are free:
#  * to Share - to copy, distribute and transmit the work
#  * to Remix - to adapt the work
# Under the following conditions:
#  * Attribution - You must attribute the work in the manner specified by the author
#    or licensor (but not in any way that suggests that they endorse you or your use 
#    of the work).
#
# Redistribution and use in source and binary forms, with or without modification, 
# are permitted provided that the following conditions are met:
#  * Redistributions of source code must retain the above copyright notice, this 
#    list of conditions and the following disclaimer.
#  * Redistributions in binary form must reproduce the above copyright notice, this 
#    list of conditions and the following disclaimer in the documentation and/or 
#    other materials provided with the distribution.
#  * Neither the names of the authors nor the names of contributors may
#    be used to endorse or promote products derived from this ontology without 
#    specific prior written permission.
#
# THIS ONTOLOGY IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS ONTOLOGY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

@prefix dc:      <http://purl.org/dc/elements/1.1/> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix nao:     <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#> .
@prefix nrl:     <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#> .
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dcterms:  <http://purl.org/dc/terms/> .

<http://www.semanticdesktop.org/ontologies/2007/08/15/nao> {
    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#hasDefaultNamespaceAbbreviation>
          a       rdf:Property ;
          rdfs:comment "Defines the default static namespace abbreviation for a graph" ;
          rdfs:domain nrl:Data ;
          rdfs:label "has default namespace abbreviation" ;
          rdfs:range rdfs:Literal ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> ;
          nrl:maxCardinality "1"^^xsd:nonNegativeInteger .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#Symbol>
          a       rdfs:Class ;
          rdfs:comment "Represents a symbol" ;
          rdfs:label "symbol" ;
          rdfs:subClassOf rdfs:Resource .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#FreeDesktopIcon>
          a       rdfs:Class ;
          rdfs:comment "Represents a desktop icon as defined in the FreeDesktop Icon Naming Standard" ;
          rdfs:label "freedesktopicon" ;
          rdfs:subClassOf nao:Symbol .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#iconName>
          a       rdf:Property ;
          rdfs:comment "Defines a name for a FreeDesktop Icon as defined in the FreeDesktop Icon Naming Standard" ;
          rdfs:domain nao:FreeDesktopIcon ;
          rdfs:label "iconname" ;
          rdfs:range rdfs:Literal ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#identifier> ;
          nrl:minCardinality "1"^^xsd:nonNegativeInteger .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#score>
          a       rdf:Property ;
          rdfs:comment "An authoritative score for an item valued between 0 and 1" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "score" ;
          rdfs:range xsd:float ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#scoreParameter>
          a       rdf:Property ;
          rdfs:comment "A marker property to mark selected properties which are input to a mathematical algorithm to generate scores for resources. Properties are marked by being defined as subproperties of this property" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "scoreparameter" ;
          rdfs:range xsd:float ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> .


    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#isTopicOf>
          a       rdf:Property ;
          rdfs:comment "Defines a relationship between two resources, where the subject is a topic of the object" ;
          rdfs:label "is topic of" ;
          rdfs:range rdfs:Resource ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#isRelated> ;
          nrl:inverseProperty nao:hasTopic .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#hasSubResource>
          a       rdf:Property ;
          rdfs:comment "Defines a relationship between a resource and one or more sub resources" ;
          rdfs:label "has Subresource" ;
          rdfs:range rdfs:Resource ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#isRelated> ;
          nrl:inverseProperty nao:hasSuperResource .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#hasSuperResource>
          a       rdf:Property ;
          rdfs:comment "Defines a relationship between a resource and one or more super resources" ;
          rdfs:label "has Superresource" ;
          rdfs:range rdfs:Resource ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#isRelated> ;
          nrl:inverseProperty nao:hasSubResource .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#isTagFor>
          a       rdf:Property ;
          rdfs:comment "States which resources a tag is associated with" ;
          rdfs:domain <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#Tag> ;
          rdfs:label "is tag for" ;
          rdfs:range rdfs:Resource ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> ;
          nrl:inverseProperty nao:hasTag .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#isDataGraphFor>
          a       rdf:Property ;
          rdfs:label "is data graph for" ;
          rdfs:comment "Links a named graph to the resource for which it contains metadata. Its typical usage would be to link the graph containing extracted file metadata to the file resource. This allows for easy maintenance later on." ;
          rdfs:domain nrl:InstanceBase ;
          rdfs:range rdfs:Resource .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#version>
          a       rdf:Property ;
          rdfs:comment "Specifies the version of a graph, in numeric format" ;
          rdfs:domain nrl:Data ;
          rdfs:label "version" ;
          rdfs:range xsd:float ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> ;
          nrl:maxCardinality "1"^^xsd:nonNegativeInteger .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#altLabel>
          a       rdf:Property ;
          rdfs:comment "An alternative label alongside the preferred label for a resource" ;
          rdfs:label "alternative label" ;
          rdfs:range rdfs:Literal ;
          rdfs:subPropertyOf rdfs:label .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#hasSymbol>
          a       rdf:Property ;
          rdfs:comment "Annotation for a resource in the form of a symbol representation" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "has symbol" ;
          rdfs:range <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#Symbol> .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#prefSymbol>
          a       rdf:Property ;
          rdfs:comment "A unique preferred symbol representation for a resource" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "preferred symbol" ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#hasSymbol> ;
          rdfs:range <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#Symbol> .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#altSymbol>
          a       rdf:Property ;
          rdfs:comment "An alternative symbol representation for a resource" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "alternative symbol" ;
     	    rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#hasSymbol> ;
          rdfs:range <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#Symbol> .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#hasTopic>
          a       rdf:Property ;
          rdfs:comment "Defines a relationship between two resources, where the object is a topic of the subject" ;
          rdfs:label "has topic" ;
          rdfs:range rdfs:Resource ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#isRelated> ;
          nrl:inverseProperty nao:isTopicOf .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#serializationLanguage>
          a       rdf:Property ;
          rdfs:comment "States the serialization language for a named graph that is represented within a document" ;
          rdfs:domain nrl:DocumentGraph ;
          rdfs:label "serialization language" ;
          rdfs:range rdfs:Literal ;
          nrl:maxCardinality "1"^^xsd:nonNegativeInteger .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#creator>
          a       rdf:Property ;
          rdfs:comment "Refers to the single or group of individuals that created the resource" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "creator" ;
          rdfs:range <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#Party> ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> , dc:creator .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation>
          a       rdf:Property ;
          rdfs:comment "Generic annotation for a resource" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "annotation" .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#rating>
          a       rdf:Property ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> ;
          rdfs:comment "Annotation for a resource in the form of an unrestricted rating" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "rating" .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#numericRating>
          a       rdf:Property ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#rating> ,
 				     <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#scoreParameter> ;
          rdfs:comment " Annotation for a resource in the form of a numeric rating (float value), allowed values are between 1 and 10 whereas 0 is interpreted as not set" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "numeric rating" ;
          rdfs:range xsd:integer ;
	    nrl:maxCardinality "1"^^xsd:nonNegativeInteger .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#Tag>
          a       rdfs:Class ;
          rdfs:comment "Represents a generic tag" ;
          rdfs:label "tag" ;
          rdfs:subClassOf rdfs:Resource .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#contributor>
          a       rdf:Property ;
          rdfs:comment "Refers to a single or a group of individuals that contributed to a resource" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "contributor" ;
          rdfs:range <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#Party> ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> , dc:contributor .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#hasDefaultNamespace>
          a       rdf:Property ;
          rdfs:comment "Defines the default static namespace for a graph" ;
          rdfs:domain nrl:Data ;
          rdfs:label "has default namespace" ;
          rdfs:range rdfs:Literal ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> ;
          nrl:maxCardinality "1"^^xsd:nonNegativeInteger .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#modified>
          a       rdf:Property ;
          rdfs:comment "States the modification time for a resource" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "modified at" ;
          rdfs:range xsd:dateTime ;
          rdfs:subPropertyOf dcterms:modified , <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#created>
          a       rdf:Property ;
          rdfs:comment "States the creation, or first modification time for a resource" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "created at" ;
          rdfs:range xsd:dateTime ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#modified> ;
          nrl:maxCardinality "1"^^xsd:nonNegativeInteger .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#lastModified>
          a       rdf:Property ;
          rdfs:comment "States the last modification time for a resource" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "last modified at" ;
          rdfs:range xsd:dateTime ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#modified> ;
          nrl:maxCardinality "1"^^xsd:nonNegativeInteger .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#identifier>
          a       rdf:Property ;
          rdfs:comment "Defines a generic identifier for a resource" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "identifier" .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#status>
          a       rdf:Property ;
          rdfs:comment "Specifies the status of a graph, stable, unstable or testing" ;
          rdfs:domain nrl:Data ;
          rdfs:label "status" ;
          rdfs:range rdfs:Literal ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> ;
          nrl:maxCardinality "1"^^xsd:nonNegativeInteger .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#description>
          a       rdf:Property ;
          rdfs:comment "A non-technical textual annotation for a resource" ;
          rdfs:label "description" ;
          rdfs:range rdfs:Literal ;
          rdfs:subPropertyOf rdfs:comment , <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> .
          

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#prefLabel>
          a       rdf:Property ;
          rdfs:comment "A preferred label for a resource" ;
          rdfs:label "preferred label" ;
          rdfs:range rdfs:Literal ;
          rdfs:subPropertyOf rdfs:label .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#pluralPrefLabel>
          a       rdf:Property ;
          rdfs:comment "The plural form of the preferred label for a resource" ;
          rdfs:label "preferred label plural form" ;
          rdfs:range rdfs:Literal ;
          rdfs:subPropertyOf rdfs:label .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#engineeringTool>
          a       rdf:Property ;
          rdfs:comment "Specifies the engineering tool used to generate the graph" ;
          rdfs:domain nrl:Data ;
          rdfs:label "engineering tool" ;
          rdfs:range rdfs:Literal ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#hasTag>
          a       rdf:Property ;
          rdfs:comment "Defines an existing tag for a resource" ;
          rdfs:domain rdfs:Resource ;
          rdfs:label "has tag" ;
          rdfs:range <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#Tag> ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> ;
          nrl:inverseProperty nao:isTagFor .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#isRelated>
          a       rdf:Property , nrl:SymmetricProperty ;
          rdfs:comment "Defines an annotation for a resource in the form of a relationship between the subject resource and another resource" ;
          rdfs:label "is related to" ;
          rdfs:range rdfs:Resource ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#annotation> .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#personalIdentifier>
          a       rdf:Property , nrl:InverseFunctionalProperty ;
          rdfs:comment "Defines a personal string identifier for a resource" ;
          rdfs:label "personal identifier" ;
          rdfs:range rdfs:Literal ;
          rdfs:subPropertyOf <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#identifier> .

    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#Party>
          a       rdfs:Class ;
          rdfs:comment "Represents a single or a group of individuals" ;
          rdfs:label "party" ;
          rdfs:subClassOf rdfs:Resource .

    nao:deprecated
	  a	  	rdf:Property ;
	  rdfs:comment	"If this property is assigned, the subject class, property, or resource, is deprecated and should not be used in production systems any longer. It may be removed without further notice." ;
	  rdfs:label	"deprecated" ;
	  rdfs:domain	rdfs:Resource ;
	  rdfs:range	rdfs:Resource .

    nao:userVisible
          a rdf:Property ;
          rdfs:range xsd:boolean ;
          rdfs:label "user visible" ;
          rdfs:comment "Mark a property, class, or even resource as user visible or not. Non-user-visible entities should never be presented to the user. By default everything is user-visible." ;
          nao:userVisible false ;
          nrl:maxCardinality 1 .
}

<http://www.semanticdesktop.org/ontologies/2007/08/15/nao/metadata> {
    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao/metadata>
          a       nrl:GraphMetadata ;
          nrl:coreGraphMetadataFor <http://www.semanticdesktop.org/ontologies/2007/08/15/nao> .


    <http://www.semanticdesktop.org/ontologies/2007/08/15/nao>
          a       nrl:Ontology , nrl:DocumentGraph ;
          nao:hasDefaultNamespace "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#" ;
          nao:hasDefaultNamespaceAbbreviation "nao" ;
          nao:lastModified "2010-03-19T12:31:43Z" ;
          nao:serializationLanguage "TriG" ;
          nao:status "Unstable" ;
          nrl:updatable "0" ;
          nao:version "3" .
}