instant value
- CURIE:
gmeow:instantValue - IRI: https://blackcatinformatics.ca/gmeow/instantValue
- Category: property
- Defined by:
gmeow:slices/temporal - Box roles: RBox role (What is this?)
The crisp instant as an xsd:dateTime literal in the associated temporal frame.
Structure
Property shape: datatype property; gmeow:Instant -> xsd:dateTime; functional
Practical Pattern
Use gmeow:instantValue from gmeow:Instant to xsd:dateTime when the relationship itself belongs in the native GMEOW graph.
Example Snippets
These snippets are generated from canonical slice examples and trimmed to the Turtle blocks where this term appears.
Intervals And Frames
- Source:
slices/core/temporal/examples/intervals-and-frames.ttl - Examples catalog: open in catalog#example-slices-core-temporal-examples-intervals-and-frames
# --- The talk interval: begin and end Instants, each in the UTC/Gregorian frame.
ex:talkStart a gmeow:Instant ;
gmeow:instantValue "2026-09-14T13:00:00Z"^^xsd:dateTime ;
gmeow:inTemporalFrame gmeow:temporalFrameUTCGregorian .
ex:talkEnd a gmeow:Instant ;
gmeow:instantValue "2026-09-14T13:45:00Z"^^xsd:dateTime ;
gmeow:inTemporalFrame gmeow:temporalFrameUTCGregorian .
Knowledge Proficiency
- Source:
slices/core/cognition/examples/knowledge-proficiency.ttl - Examples catalog: open in catalog#example-slices-core-cognition-examples-knowledge-proficiency
ex:y2014 a gmeow:Instant ; gmeow:instantValue "2014-01-01T00:00:00Z"^^xsd:dateTime ;
gmeow:inTemporalFrame gmeow:temporalFrameUTCGregorian .
ex:y2018 a gmeow:Instant ; gmeow:instantValue "2018-01-01T00:00:00Z"^^xsd:dateTime ;
gmeow:inTemporalFrame gmeow:temporalFrameUTCGregorian .
Common Companion Terms
External Equivalences
Equivalent or closely aligned targets: time
Linkages
Generated from the canonical mapping DSL. SSSOM files are the generated public interchange form for term equivalences.
Term Equivalences
| Source | Kind | Profile | Predicate/Relation | Target | Evidence |
|---|---|---|---|---|---|
gmeow:instantValue |
equivalence | - |
skos:closeMatch | time:inXSDDateTimeStamp | gmeow-temporal.sssom.tsv; gmeow:eqTemporal009; confidence 0.85 |
Usage Advice
Use when
- Use to carry the crisp, machine-computable value of a
gmeow:Instant— the single xsd:dateTime the solver and renderers read.
Avoid when
- Avoid for approximate, uncertain, or open-ended points (use
gmeow:edtfValue) and avoid an xsd:date literal — base-triple time is xsd:dateTime (P3); functional, so an instant has at most one crisp value.
How to use
- Write a full xsd:dateTime interpreted in the instant's
gmeow:inTemporalFrame; when the point is only known to a coarser resolution, set it to the canonical start of the period and record the real resolution withgmeow:hasGranularity.
Examples
- ex:birthInstant
gmeow:instantValue"1804-07-12T00:00:00Z"^^xsd:dateTime.