observable:nextRunTime leaf node


URI

https://unifiedcyberontology.org/ontology/uco/observable#nextRunTime

Label

nextRunTime

Description

Specifies the next run date/time of the scheduled task. See also: http://msdn.microsoft.com/en-us/library/windows/desktop/aa381257(v=vs.85).aspx.

Usage

DOMAINPROPERTYRANGE
observable:WindowsTaskFacet observable:nextRunTime xs:dateTime

Implementation

@prefix observable: <https://unifiedcyberontology.org/ontology/uco/observable#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

observable:nextRunTime a owl:DatatypeProperty ;
    rdfs:label "nextRunTime"@en ;
    rdfs:comment "Specifies the next run date/time of the scheduled task. See also: http://msdn.microsoft.com/en-us/library/windows/desktop/aa381257(v=vs.85).aspx."@en ;
    rdfs:domain observable:WindowsTaskFacet ;
    rdfs:range xsd:dateTime .