at time

The instant at which a point-like event or observation occurred.

Structure

Property shape: datatype property; ? -> xsd:dateTime

Practical Pattern

Use gmeow:atTime from ? 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.

Agent Trajectory

@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex:    <https://blackcatinformatics.ca/gmeow/examples/> .
@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd:   <http://www.w3.org/2001/XMLSchema#> .



# SPDX-FileCopyrightText: 2026 Blackcat Informatics® Inc. <paudley@blackcatinformatics.ca>
# SPDX-License-Identifier: CC-BY-4.0
#
# Worked example: one agent turn as auditable provenance — a model
# invocation requests two tool calls; the entity the second call produced
# links BACK via gmeow:wasGeneratedBy (P5: no forward output property).
# Large payloads ride as content digest literals (the verbatim-or-digest
# doctrine); ordering is temporal (gmeow:atTime), not a TBox link.

ex:invocation-7 a gmeow:ModelInvocation ;
    rdfs:label "turn 7 model invocation"@en ;
    gmeow:usedModel ex:assistant ;
    gmeow:samplingTemperature "0.2"^^xsd:decimal ;
    gmeow:atTime "2026-06-12T17:03:10Z"^^xsd:dateTime ;
    gmeow:eventTemporalFrame gmeow:temporalFrameUTCGregorian .

Grounded Claim

ex:invocation-19 a gmeow:ModelInvocation ;
    gmeow:usedModel ex:assistant ;
    gmeow:hasPrompt ex:prompt-extract ;
    gmeow:samplingTemperature 0.0 ;
    gmeow:atTime "2026-05-15T10:00:00Z"^^xsd:dateTime ;
    gmeow:eventTemporalFrame gmeow:temporalFrameUTCGregorian .

Usage Advice

Use when

Avoid when

How to use

Examples