realizes moment
- CURIE:
gmeow:realizesMoment - IRI: https://blackcatinformatics.ca/gmeow/realizesMoment
- Category: property
- Defined by:
gmeow:slices/mentation
Relates a mental process to a mental moment it produces or updates — the occurrent-to-endurant bridge across the gUFO endurant/occurrent divide: a reasoning realizes a belief, a perceiving realizes a perceptual claim. NOT functional — one process may settle several moments.
Structure
Property shape: object property; gmeow:MentalProcess -> ?
Practical Pattern
Use gmeow:realizesMoment from gmeow:MentalProcess to ? 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.
Mental Timeline
- Source:
slices/core/mentation/examples/mental-timeline.ttl - Examples catalog: open in catalog#example-slices-core-mentation-examples-mental-timeline
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/mentation/> .
@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 — a small mental timeline for one agent.
#
# Three mental occurrents illustrate the mentation slice's core idioms:
# 1. A gmeow:MentalProcess of type processPerception — Ada notices morning light.
# Carries a temporal frame the same way gmeow:Event takes one (events idiom,
# gmeow:eventTime + gmeow:eventTemporalFrame), and links back to a perceptual
# claim via gmeow:realizesMoment (open-range bridge).
# 2. A gmeow:MentalProcess of type processReasoning — Ada works through a proof.
# gmeow:realizesMoment points at ex:beliefQEDholds, a placeholder node that will
# be typed gmeow:MentalMoment once slice kernel/cognition lands; open-range
# at this tier is deliberate and documented in the slice.
# 3. A gmeow:Experience (the phenomenal subset of MentalProcess) of type
# processDreaming — Ada's dream last night. gmeow:Experience is used because
# there is something it is like to undergo a dream (the qualia-bearing subset).
#
# All three are borne by exactly one experiencer (gmeow:experiencer is functional);
# gmeow:mentalProcessType is non-functional, so a process can carry multiple types.
ex:morningPerception a gmeow:MentalProcess ;
rdfs:label "Ada's morning perception of daylight"@en ;
gmeow:experiencer ex:ada ; # functional: one process, one experiencer
gmeow:mentalProcessType gmeow:processPerception ; # value-vocab slot, not a subclass
gmeow:eventTime "2026-06-15T07:12:00Z"^^xsd:dateTime ; # temporal frame — same idiom as events/wedding.ttl
gmeow:eventTemporalFrame gmeow:temporalFrameUTCGregorian ;
gmeow:realizesMoment ex:perceivedMorningLight . # open-range: the perceptual claim produced
Abduction
- Source:
slices/core/inference/examples/abduction.ttl - Examples catalog: open in catalog#example-slices-core-inference-examples-abduction
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/inference/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# --- The occurrent reasoning episode (perdurant) ---------------------------- #
ex:diagnosticReasoning a gmeow:InferenceProcess ;
rdfs:label "The clinician's diagnostic reasoning episode"@en ;
gmeow:experiencer ex:clinician ; # functional: one episode, one reasoner
gmeow:mentalProcessType gmeow:processReasoning ; # the canonical occurrent marker (no eventTypeInference)
gmeow:eventTime "2026-06-15T10:05:00Z"^^xsd:dateTime ;
gmeow:eventTemporalFrame gmeow:temporalFrameUTCGregorian ;
gmeow:hasInferenceCommitment ex:abductiveCommitment ; # occurrent -> endurant bridge
gmeow:realizesMoment ex:hypInfluenza . # the belief the reasoning produced
Common Companion Terms
Usage Advice
Use when
- Use to link a
gmeow:MentalProcessto the endurant mental moment it produces or updates — the occurrent-to-endurant bridge across the gUFO divide (a reasoning realizes a knowing or belief, a perceiving realizes a perceptual claim).
Avoid when
- Avoid confusing it with the creative-works
gmeow:realizes(ExpressiontoWork— it was renamed precisely to avoid that collision, Principle 4) and avoid expecting it to be functional; one process may settle several moments. Do not use it to type the process kind (that isgmeow:mentalProcessType).
How to use
- Assert
gmeow:realizesMomentfrom the process to thegmeow:MentalMoment(or, at this open tier, any mode/belief-state/claim) it settles; pair it withgmeow:experiencerso the realized moment and the producing episode share a bearer.
Scope notes
- Range is intentionally OPEN at this tier (the doxastic-spine precedent): it will point at a
gmeow:MentalMoment(subClassOf gufo:IntrinsicMode) once the endurant umbrella lands with kernel/cognition; until then it may point at any reified mode, belief-state, or claim the process produces. Renamed from the design's 'realizes' to avoid colliding with the WEMIgmeow:realizes(ExpressiontoWork) in the creative-works slice — Principle 4, one canonical term per concept.
Examples
- ex:morningReasoning
gmeow:realizesMomentex:lillithKnowsPython.