https://ontology.solveit-df.org/solveit/analysis/hypothesisedDateTime
The date and time at which the hypothesised event is believed to have occurred - either an absolute timestamp (DateTimeStamp) or a time interval (DateTimeRange).
| DOMAIN | PROPERTY | RANGE |
|---|---|---|
| solveit-analysis:HypothesisedEvent , Blank node (see implementation) | solveit-analysis:hypothesisedDateTime | owl:Thing (inferred) |
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix solveit-analysis: <https://ontology.solveit-df.org/solveit/analysis/> .
@prefix solveit-observable: <https://ontology.solveit-df.org/solveit/observable/> .
solveit-analysis:hypothesisedDateTime a owl:ObjectProperty ;
rdfs:label "hypothesised date time"@en ;
rdfs:comment "The date and time at which the hypothesised event is believed to have occurred - either an absolute timestamp (DateTimeStamp) or a time interval (DateTimeRange)."@en ;
rdfs:domain solveit-analysis:HypothesisedEvent ;
rdfs:range [ a owl:Class ;
owl:unionOf ( solveit-observable:DateTimeStamp solveit-observable:DateTimeRange ) ] .