@prefix workspacecontext: . @prefix nie: . @prefix nao: . @prefix nrl: . @prefix rdf: . @prefix rdfs: . @prefix xsd: . semn: { semn:Context a rdfs:Context ; rdfs:comment "Represents a workspace context, such as a user project or activity." ; rdfs:label "Context" ; rdfs:subClassOf nie:InformationElement . semn:name a rdf:Property ; rdfs:comment "A workspace context name."; rdfs:label "name" ; rdfs:domain workspacecontext:Context ; rdfs:range xsd:string . semn:name a rdf:Property ; rdfs:comment "Is this context the active one?"; rdfs:label "isActive" ; rdfs:domain workspacecontext:Context ; rdfs:range xsd:boolean . } { workspacecontext: a ; nao:creator "http://www.dfki.uni-kl.de/~mylka" ; nao:hasDefaultNamespace "http://plasma.kde.org/ontologies/workspacecontext#" ; nao:hasDefaultNamespaceAbbreviation "workspacecontext" ; nao:status "Unstable" ; nao:updatable "0 " ; nao:version "0.1" . a nrl:GraphMetadata ; nrl:coreGraphMetadataFor workspacecontext: . }