http://www.w3.org/ns/dcat#endDate
This property contains the end of the period. - This property denotes the end time of a WorkflowExecution. - This property denotes the end time of a TaskExecution.
| DOMAIN | PROPERTY | RANGE |
|---|---|---|
| klms:WorkflowExecution , klms:TaskExecution , dcterms:PeriodOfTime | dcat:endDate | 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:endDate a owl:DatatypeProperty ;
rdfs:label "Period Of Time - end date"@en,
"TaskExecution - end date"@en,
"WorkflowExecution - end date"@en ;
dcterms:identifier "dcat:endDate" ;
vann:usageNote "Optional property. This property contains the end time of a TaskExecution."@en,
"Optional property. This property contains the end time of a WorkflowExecution."@en,
"Recommended property. This property contains the end of the period."@en ;
rdfs:comment "This property contains the end of the period."@en,
"This property denotes the end time of a TaskExecution."@en,
"This property denotes the end time of a WorkflowExecution."@en ;
rdfs:domain dcterms:PeriodOfTime,
:TaskExecution,
:WorkflowExecution ;
rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/#Property:period_end_date> ;
rdfs:range xsd:dateTime .