solveit-observable:timestampOffsetValue leaf node


URI

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

Label

timestamp offset value

Description

The difference between two timestamps in seconds. Positive values indicate the first timestamp is ahead of the second, negative values indicate it is behind.

Usage

DOMAINPROPERTYRANGE
solveit-observable:TimestampOffset solveit-observable:timestampOffsetValue xsd:decimal

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:timestampOffsetValue a owl:DatatypeProperty ;
    rdfs:label "timestamp offset value"@en ;
    rdfs:comment "The difference between two timestamps in seconds. Positive values indicate the first timestamp is ahead of the second, negative values indicate it is behind."@en ;
    rdfs:domain solveit-observable:TimestampOffset ;
    rdfs:range xsd:decimal .