has temporal frame
- CURIE:
gmeow:hasTemporalFrame - IRI: https://blackcatinformatics.ca/gmeow/hasTemporalFrame
- Category: property
- Defined by:
gmeow:slices/temporal - Box roles: CBox role, RBox role (What is this?)
Relates a time interval to the temporal frame in which its bounds are expressed.
Structure
Property shape: object property; gmeow:TimeInterval -> gmeow:TemporalFrame
Sub-property of: gmeow:hasReferenceFrame
Practical Pattern
Use gmeow:hasTemporalFrame from gmeow:TimeInterval to gmeow:TemporalFrame 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
ex:talkInterval a gmeow:TimeInterval ;
gmeow:hasStartInstant ex:talkStart ;
gmeow:hasEndInstant ex:talkEnd ;
gmeow:hasTemporalFrame gmeow:temporalFrameUTCGregorian .
ex:qaInterval a gmeow:TimeInterval ;
gmeow:hasStartInstant ex:qaStart ;
gmeow:hasEndInstant ex:qaEnd ;
gmeow:hasTemporalFrame gmeow:temporalFrameUTCGregorian .
Ai Inference Regime
- Source:
slices/core/awareness/examples/ai-inference-regime.ttl - Examples catalog: open in catalog#example-slices-core-awareness-examples-ai-inference-regime
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/awareness/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
ex:requestInterval a gmeow:TimeInterval ;
rdfs:label "the request window"@en ;
gmeow:hasTemporalFrame gmeow:temporalFrameUTCGregorian ;
gmeow:startedAtTime "2026-06-16T14:00:00Z"^^xsd:dateTime ;
gmeow:endedAtTime "2026-06-16T14:00:03Z"^^xsd:dateTime .
ex:trainingInterval a gmeow:TimeInterval ;
rdfs:label "the training window"@en ;
gmeow:hasTemporalFrame gmeow:temporalFrameUTCGregorian ;
gmeow:startedAtTime "2026-06-14T00:00:00Z"^^xsd:dateTime ;
gmeow:endedAtTime "2026-06-15T00:00:00Z"^^xsd:dateTime .
Common Companion Terms
gmeow:hasReferenceFrame, gmeow:TimeInterval, gmeow:TemporalFrame
Usage Advice
Use when
- Use to declare the
gmeow:TemporalFrameinterpreting agmeow:TimeInterval's bounds — the frame edge that satisfies the interval's frame-relativity requirement (P11).
Avoid when
- Avoid on an instant (use
gmeow:inTemporalFrame, the parallel edge for points) and avoid leaving a crisp interval frameless — a value asserted without its frame is ill-formed (P11).
How to use
- Point the interval at one
gmeow:TemporalFrame; it specializesgmeow:hasReferenceFrameso generic frame consumers read it uniformly across the spatial and temporal frame profiles.
Examples
- ex:tenureInterval
gmeow:hasTemporalFramegmeow:temporalFrameUTCGregorian.