summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-05-08 23:41:25 +0000
committerEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-05-08 23:41:25 +0000
commit76d208f9529610154a87ed195c109f9910fc7c38 (patch)
treefe662ca820a2b64b6867fc5146c3c74012b4262c
parent7606c1bd0dd0cfbd927f940fec1b590102e2726d (diff)
Added nco:start and nco:end according to #69
-rw-r--r--nco/nco.trig17
1 files changed, 17 insertions, 0 deletions
diff --git a/nco/nco.trig b/nco/nco.trig
index d8ddfee..5370d38 100644
--- a/nco/nco.trig
+++ b/nco/nco.trig
@@ -661,6 +661,23 @@ nco: {nco:region
rdfs:domain nco:IMAccount ;
rdfs:label "imStatusMessage" ;
rdfs:range xsd:string .
+
+ nco:start
+ a rdf:Property ;
+ rdfs:comment "Start datetime for the role, such as: the datetime of joining a project or organization, datetime of starting employment, datetime of marriage" ;
+ rdfs:label "start" ;
+ rdfs:domain nco:Role ;
+ rdfs:range xsd:dateTime ;
+ nrl:maxCardinality 1 .
+
+ nco:end
+ a rdf:Property;
+ rdfs:comment "End datetime for the role, such as: the datetime of leaving a project or organization, datetime of ending employment, datetime of divorce. If absent or set to a date in the future, the role is currently active." ;
+ rdfs:label "end" ;
+ rdfs:domain nco:Role ;
+ rdfs:range xsd:dateTime ;
+ nrl:maxCardinality 1 .
+
}
<http://www.semanticdesktop.org/ontologies/2007/03/22/nco_metadata#> {nco: a nrl:Ontology ;