~zeitgeist/zeitgeist/bluebird-no-distinct

« back to all changes in this revision

Viewing changes to extra/ontology/nie.trig

  • Committer: Siegfried-Angel Gevatter Pujals
  • Date: 2011-12-29 14:39:51 UTC
  • Revision ID: siegfried@gevatter.com-20111229143951-huz6kxdjeukby1bp
Updated to shared-desktop-ontologies version 0.8.1. This introduces
WebDataObject and makes MusicPiece a child of Audio.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
2
# Copyright (c) 2007 NEPOMUK Consortium
 
3
# Copyright (c) 2010-2011 Sebastian Trueg <trueg@kde.org>
3
4
# All rights reserved, licensed under either CC-BY or BSD.
4
5
#
5
6
# You are free:
58
59
          rdfs:comment "Characterset in which the content of the InformationElement was created. Example: ISO-8859-1, UTF-8. One of the registered character sets at http://www.iana.org/assignments/character-sets. This characterSet is used to interpret any textual parts of the content. If more than one characterSet is used within one data object, use more specific properties." ;
59
60
          rdfs:domain nie:InformationElement ;
60
61
          rdfs:label "characterSet" ;
61
 
          rdfs:range xsd:string .
 
62
          rdfs:range xsd:string ;
 
63
          nrl:maxCardinality "1" .
62
64
 
63
65
    nie:rootElementOf
64
66
          a       rdf:Property ;
97
99
          rdfs:domain nie:InformationElement ;
98
100
          rdfs:label "language" ;
99
101
          rdfs:range xsd:string ;
100
 
          rdfs:subPropertyOf dc:language .
 
102
          rdfs:subPropertyOf dc:language ;
 
103
          nrl:maxCardinality "1" .
101
104
 
102
105
    nie:copyright
103
106
          a       rdf:Property ;
106
109
          rdfs:range xsd:string ;
107
110
          rdfs:subPropertyOf nie:legal , dcterms:accessRights .
108
111
 
 
112
    nie:modified
 
113
          a       rdf:Property ;
 
114
          rdfs:comment "Date the DataObject was changed in any way.  Note that this date refers to the modification of the DataObject itself (i.e. the physical representation). Compare with nie:contentModified." ;
 
115
          rdfs:domain nie:DataObject ;
 
116
          rdfs:label "modified" ;
 
117
          rdfs:range xsd:dateTime .
 
118
 
109
119
    nie:created
110
120
          a       rdf:Property ;
111
121
          rdfs:comment "Date of creation of the DataObject. Note that this date refers to the creation of the DataObject itself (i.e. the physical representation). Compare with nie:contentCreated." ;
112
122
          rdfs:domain nie:DataObject ;
113
123
          rdfs:label "created" ;
114
124
          rdfs:range xsd:dateTime ;
115
 
          rdfs:subPropertyOf dcterms:created, nao:created .
 
125
          rdfs:subPropertyOf dcterms:created, nao:created, nie:modified ;
 
126
          nrl:maxCardinality "1" .
116
127
 
117
128
    nie:lastModified
118
129
          a       rdf:Property ;
120
131
          rdfs:domain nie:DataObject ;
121
132
          rdfs:label "lastModified" ;
122
133
          rdfs:range xsd:dateTime ;
123
 
          rdfs:subPropertyOf dc:date, nao:lastModified .
 
134
          rdfs:subPropertyOf dc:date, nao:lastModified, nie:modified ;
 
135
          nrl:maxCardinality "1" .
124
136
 
125
137
    nie:mimeType
126
138
          a       rdf:Property ;
127
139
          rdfs:comment "The mime type of the resource, if available. Example: \"text/plain\". See http://www.iana.org/assignments/media-types/. This property applies to data objects that can be described with one mime type. In cases where the object as a whole has one mime type, while it's parts have other mime types, or there is no mime type that can be applied to the object as a whole, but some parts of the content have mime types - use more specific properties." ;
128
140
          rdfs:domain nie:InformationElement ;
129
141
          rdfs:label "mimeType" ;
130
 
          rdfs:range xsd:string .
 
142
          rdfs:range xsd:string ;
 
143
          nrl:maxCardinality "1" .
131
144
 
132
145
    nie:version
133
146
          a       rdf:Property ;
173
186
          rdfs:range xsd:string .
174
187
 
175
188
    nie:isPartOf
176
 
          a       rdf:Property ;
 
189
          a       rdf:Property, nrl:FunctionalProperty ;
177
190
          rdfs:comment "Generic property used to express containment relationships between DataObjects. NIE extensions are encouraged to provide more specific subproperties of this one. It is advisable for actual instances of DataObjects to use those specific subproperties. Note to the developers: Please be aware of the distinction between containment relation and provenance. The isPartOf relation models physical containment, a nie:DataObject (e.g. an nfo:Attachment) is a 'physical' part of an nie:InformationElement (a nmo:Message). Also, please note the difference between physical containment (isPartOf) and logical containment (isLogicalPartOf) the former has more strict meaning. They may occur independently of each other." ;
178
191
          rdfs:domain nie:DataObject ;
179
192
          rdfs:label "isPartOf" ;
208
221
          rdfs:domain nie:InformationElement ;
209
222
          rdfs:label "contentCreated" ;
210
223
          rdfs:range xsd:dateTime ;
211
 
          rdfs:subPropertyOf nie:informationElementDate, nao:created ;
 
224
          rdfs:subPropertyOf nie:informationElementDate, nao:created, nie:contentModified ;
212
225
          nrl:maxCardinality "1" .
213
226
 
214
227
    nie:title
217
230
          rdfs:domain nie:InformationElement ;
218
231
          rdfs:label "title" ;
219
232
          rdfs:range xsd:string ;
220
 
          rdfs:subPropertyOf dc:title, nao:prefLabel .
 
233
          rdfs:subPropertyOf dc:title, nao:prefLabel ;
 
234
          nrl:maxCardinality "1" .
221
235
 
222
236
    nie:lastRefreshed
223
237
          a       rdf:Property ;
250
264
          rdfs:range nie:DataObject ;
251
265
          rdfs:subPropertyOf nie:relatedTo .
252
266
 
 
267
    nie:contentModified
 
268
          a       rdf:Property ;
 
269
          rdfs:comment "The date of a modification of the original content (not its corresponding DataObject or local copy). Compare with nie:modified." ;
 
270
          rdfs:domain nie:InformationElement ;
 
271
          rdfs:label "modified" ;
 
272
          rdfs:range xsd:dateTime .
 
273
 
253
274
    nie:contentLastModified
254
275
          a       rdf:Property ;
255
276
          rdfs:comment "The date of the last modification of the original content (not its corresponding DataObject or local copy). Compare with nie:lastModified." ;
256
277
          rdfs:domain nie:InformationElement ;
257
278
          rdfs:label "contentLastModified" ;
258
279
          rdfs:range xsd:dateTime ;
259
 
          rdfs:subPropertyOf nie:informationElementDate, nao:lastModified ;
 
280
          rdfs:subPropertyOf nie:informationElementDate, nao:lastModified, nie:contentModified ;
260
281
          nrl:maxCardinality "1" .
261
282
 
262
283
    nie:keyword
288
309
          rdfs:comment "Plain-text representation of the content of a InformationElement with all markup removed. The main purpose of this property is full-text indexing and search. Its exact content is considered application-specific. The user can make no assumptions about what is and what is not contained within. Applications should use more specific properties wherever possible." ;
289
310
          rdfs:domain nie:InformationElement ;
290
311
          rdfs:label "plainTextContent" ;
291
 
          rdfs:range xsd:string .
 
312
          rdfs:range xsd:string ;
 
313
          nrl:maxCardinality "1" .
 
314
 
 
315
    nie:htmlContent
 
316
          a       rdf:Property ;
 
317
          rdfs:comment "The HTML content of an information element. This property can be used to store text including formatting in a generic fashion." ;
 
318
          rdfs:domain nie:InformationElement ;
 
319
          rdfs:label "html content" ;
 
320
          rdfs:range xsd:string ;
 
321
          nrl:maxCardinality "1" .
292
322
 
293
323
    nie:comment
294
324
          a       rdf:Property ;
310
340
          rdfs:comment "The size of the content. This property can be used whenever the size of the content of an InformationElement differs from the size of the DataObject. (e.g. because of compression, encoding, encryption or any other representation issues). The contentSize in expressed in bytes." ;
311
341
          rdfs:domain nie:InformationElement ;
312
342
          rdfs:label "contentSize" ;
313
 
          rdfs:range xsd:integer .
 
343
          rdfs:range xsd:integer ;
 
344
          nrl:maxCardinality "1" .
314
345
 
315
346
    nie:license
316
347
          a       rdf:Property ;
329
360
 
330
361
    nie:coreGraph
331
362
          a       rdf:Property ;
332
 
          rdfs:comment "Connects the data object with the graph that contains information about it." ;
 
363
          nao:deprecated true ;
 
364
          rdfs:comment "Connects the data object with the graph that contains information about it. Deprecated in favor of a more generic nao:isDataGraphFor." ;
333
365
          rdfs:domain nie:DataObject ;
334
366
          rdfs:label "coreGraph" ;
335
367
          rdfs:range nrl:InstanceBase .
336
368
 
337
369
    nie:hasPart
338
 
          a       rdf:Property ;
 
370
          a       rdf:Property, nrl:InverseFunctionalProperty ;
339
371
          rdfs:comment "Generic property used to express 'physical' containment relationships between DataObjects. NIE extensions are encouraged to provide more specific subproperties of this one. It is advisable for actual instances of DataObjects to use those specific subproperties. Note to the developers: Please be aware of the distinction between containment relation and provenance. The hasPart relation models physical containment, an InformationElement (a nmo:Message) can have a 'physical' part (an nfo:Attachment).  Also, please note the difference between physical containment (hasPart) and logical containment (hasLogicalPart) the former has more strict meaning. They may occur independently of each other." ;
340
372
          rdfs:domain nie:InformationElement ;
341
373
          rdfs:label "hasPart" ;
372
404
          rdfs:comment "URL of a DataObject. It points to the location of the object. A typial usage is FileDataObject. In cases where creating a simple file:// or http:// URL for a file is difficult (e.g. for files inside compressed archives) the applications are encouraged to use conventions defined by Apache Commons VFS Project at http://jakarta.apache.org/  commons/ vfs/ filesystems.html." ;
373
405
          rdfs:domain nie:DataObject ;
374
406
          rdfs:label "url" ;
375
 
          rdfs:range rdfs:Resource .
 
407
          rdfs:range rdfs:Resource ;
 
408
          nrl:maxCardinality "1" .
376
409
}
377
410
 
378
411
<http://www.semanticdesktop.org/ontologies/2007/01/19/nie_metadata#> {nie:  a       nrl:Ontology ;
381
414
                  "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#" ;
382
415
          nao:hasDefaultNamespaceAbbreviation
383
416
                  "nie" ;
384
 
          nao:lastModified "2009-11-12T07:45:58Z" ;
 
417
          nao:lastModified "2011-06-05T10:36:58Z" ;
385
418
          nao:status "Unstable" ;
386
419
          nao:updatable "0 " ;
387
 
          nao:version "Revision-9" .
 
420
          nao:version "0.8.1" ;
 
421
          nao:prefLabel "Nepomuk Information Element Ontology" ;
 
422
          nao:description "The Nepomuk Information Element Framework provides unified vocabulary for describing native resources available on the desktop. NIE itself contains of classes and properties that comprise the core part of the framework." .
388
423
 
389
424
    <http://www.semanticdesktop.org/ontologies/2007/01/19/nie_metadata#>
390
425
          a       nrl:GraphMetadata ;
391
426
          nrl:coreGraphMetadataFor
392
427
                  nie: .
393
428
}
394