summaryrefslogtreecommitdiff
path: root/src/ontologies/nepomuk/31-nao.ontology
blob: 5dc3220a9597b84c2c2b7485b0b83b3dc8c49c4f (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
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix nao: <http://www.semanticdesktop.org/ontologies/2007/08/15/nao#> .
@prefix nrl: <http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tracker: <http://www.tracker-project.org/ontologies/tracker#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

nao: a tracker:Namespace, tracker:Ontology ;
	tracker:prefix "nao" ;
	tracker:lastModified "2010-12-25T16:00:00Z" .

nao:Tag a rdfs:Class ;
	rdfs:comment "Represents a generic tag" ;
	rdfs:subClassOf rdfs:Resource ;
	tracker:notify true .

nao:prefLabel a rdf:Property ;
	rdfs:comment "A preferred label for a resource" ;
	nrl:maxCardinality 1 ;
	rdfs:domain nao:Tag ;
	rdfs:range xsd:string ;
	tracker:writeback true ;
	tracker:fulltextIndexed true ;
	tracker:weight 10 .

nao:description a rdf:Property ;
	nrl:maxCardinality 1 ;
	rdfs:domain nao:Tag ;
	rdfs:range xsd:string ;
	rdfs:subPropertyOf rdfs:comment ;
	rdfs:comment "In the context of the social semantic desktop the textual annotation provided via rdfs:comment is meant for technical users, the textual annotation here is aimed at average users and is meant to be used to define custom descriptions of resources on the desktop" ;
	tracker:fulltextIndexed true ;
	tracker:weight 3 .

nao:hasTag a rdf:Property ;
	rdfs:comment "Defines an existing tag for a resource" ;
	rdfs:domain rdfs:Resource ;
	rdfs:range rdfs:Resource ;
	tracker:writeback true ;
	tracker:indexed true .

nao:identifier a rdf:Property ;
	rdfs:comment "Defines a generic identifier for a resource" ;
	nrl:maxCardinality 1 ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string .

nao:numericRating a rdf:Property ;
	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" ;
	nrl:maxCardinality 1 ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:double .

nao:deprecated a rdf:Property;
	rdfs:domain rdfs:Resource;
	rdfs:range xsd:boolean;
	rdfs:label "deprecated";
	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." .

nao:lastModified a rdf:Property ;
	rdfs:label "lastModified" ;
	rdfs:comment "last modification date" ;
	rdfs:subPropertyOf dc:date ;
	nrl:maxCardinality 1 ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:dateTime .

nao:isRelated a rdf:Property ;
	rdfs:label "Is related" ;
	rdfs:comment "This property defines a symmetric relation between any two resources. In order for this property to be used legally, the relationship must be symmetric." ;
	rdfs:domain rdfs:Resource ;
	rdfs:range rdfs:Resource .