http://www.w3.org/ns/dcat#startDate
This property contains the start of the period. - This property denotes the starting time of a WorkflowExecution. - This property denotes the starting time of a TaskExecution.
| DOMAIN | PROPERTY | RANGE |
|---|---|---|
| dcterms:PeriodOfTime , klms:WorkflowExecution , klms:TaskExecution | dcat:startDate | xsd:dateTime |
@prefix : <http://stelar-project.eu/klms#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
dcat:startDate a owl:DatatypeProperty ;
rdfs:label "Period Of Time - start date"@en,
"TaskExecution - start date"@en,
"WorkflowExecution - start date"@en ;
dcterms:identifier "dcat:startDate" ;
vann:usageNote "Optional property. This property denotes the starting time of a TaskExecution."@en,
"Optional property. This property denotes the starting time of a WorkflowExecution."@en,
"Recommended property. This property contains the start of the period."@en ;
rdfs:comment "This property contains the start of the period."@en,
"This property denotes the starting time of a TaskExecution."@en,
"This property denotes the starting time of a WorkflowExecution."@en ;
rdfs:domain dcterms:PeriodOfTime,
:TaskExecution,
:WorkflowExecution ;
rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/#Property:period_start_date> ;
rdfs:range xsd:dateTime .