solveit-observable:startTimeInclusive leaf node


URI

https://ontology.solveit-df.org/solveit/observable/startTimeInclusive

Label

start time inclusive

Description

The interval starts at this time (inclusive, i.e., >= this value).

Usage

DOMAINPROPERTYRANGE
solveit-observable:DateTimeRange solveit-observable:startTimeInclusive xsd:dateTime

Implementation

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

solveit-observable:startTimeInclusive a owl:DatatypeProperty ;
    rdfs:label "start time inclusive"@en ;
    rdfs:comment "The interval starts at this time (inclusive, i.e., >= this value)."@en ;
    rdfs:domain solveit-observable:DateTimeRange ;
    rdfs:range xsd:dateTime .