held standpoint
- CURIE:
gmeow:heldStandpoint - IRI: https://blackcatinformatics.ca/gmeow/heldStandpoint
- Category: property
- Defined by:
gmeow:slices/deception - Box roles: CBox role, RBox role (What is this?)
The doxastic standpoint claim that the deceiver actually holds to be true — a gmeow:DoxasticStandpointClaim whose gmeow:claimOfBelief observes the held gmeow:DoxasticState. It is the private belief or position that contrasts with the projected standpoint in a deception event. Non-functional: a complex deception may involve multiple held standpoints.
Structure
Property shape: object property; gmeow:Event -> gmeow:DoxasticStandpointClaim
Practical Pattern
Use gmeow:heldStandpoint from gmeow:Event to gmeow:DoxasticStandpointClaim 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.
Blame Deflection
- Source:
slices/core/deception/examples/blame-deflection.ttl - Examples catalog: open in catalog#example-slices-core-deception-examples-blame-deflection
# SPDX-FileCopyrightText: 2026 Blackcat Informatics® Inc. <paudley@blackcatinformatics.ca>
# SPDX-License-Identifier: CC-BY-4.0
#
# Worked example: deception is held ≠ projected. A spokesperson
# privately BELIEVES an internal misconfiguration caused an outage, but publicly
# PROJECTS that a third-party vendor did. The lie is a gmeow:Event linking the
# two DoxasticStandpointClaims: gmeow:heldStandpoint (the believed claim) and
# gmeow:projectedStandpoint (the asserted-but-disbelieved one). Falsehood is not
# an isFalse boolean — it is the projected claim carrying gmeow:claimVeridicality
# gmeow:veridicalityUntrue. Nothing here needs a "deception class": ordinary
# claims, an event type, and the held/projected gap do all the work.
#
# Re-grounded for both standpoints are reified as gmeow:DoxasticState
# instances and reported by gmeow:DoxasticStandpointClaim instances via
# gmeow:claimOfBelief. The held belief has high credence; the projected belief has
# low credence — the spokesperson publicly avows the vendor-caused proposition
# while actually disbelieving it. The deception is the divergence between the
# high-credence held state and the low-credence projected state.
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/deception/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# --- The lie: an Event whose held and projected standpoints diverge. That gap
# IS the deception; the spokesperson is its participant in the deceiver role.
ex:coverStory a gmeow:Event ;
rdfs:label "the public attribution to the vendor"@en ;
gmeow:eventType gmeow:eventTypeLie ;
gmeow:eventTime "2026-03-05T09:00:00Z"^^xsd:dateTime ;
gmeow:eventTemporalFrame gmeow:temporalFrameUTCGregorian ;
gmeow:heldStandpoint ex:heldClaim ;
gmeow:projectedStandpoint ex:projectedClaim ;
gmeow:hasParticipant ex:spokesperson .
Justification And Defeat
- Source:
slices/core/epistemics/examples/justification-and-defeat.ttl - Examples catalog: open in catalog#example-slices-core-epistemics-examples-justification-and-defeat
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/epistemics/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
ex:lieEvent a gmeow:Event ;
rdfs:label "Bob's lie about the time"@en ;
gmeow:eventType gmeow:eventTypeLie ;
gmeow:heldStandpoint ex:liarHeldClaim ;
gmeow:projectedStandpoint ex:liarProjectedClaim .
Common Companion Terms
gmeow:Event, gmeow:DoxasticStandpointClaim
Usage Advice
Use when
- Use to name the private belief a deceiver actually holds in a deception event — the inner half of the held≠projected divergence that IS the deceptive act, modelled as a
gmeow:DoxasticStandpointClaim.
Avoid when
- Avoid for the communicated position the deceiver presents to the victim (that is
gmeow:projectedStandpoint) and avoid using it to flag a proposition false — a falsehood is a refutedStandpointClaim(claimModalitygmeow:refuted), never an isFalse flag.
How to use
- Mint a
gmeow:DoxasticStandpointClaimwith the deceiver asgmeow:vantage, link it viagmeow:claimOfBeliefto the heldgmeow:DoxasticState, attach it viagmeow:heldStandpoint, and pair it with a divergentgmeow:projectedStandpoint; the gap between the two is the deception, asserted without any global truth verdict (Principle 9).
Scope notes
- Range is
gmeow:DoxasticStandpointClaim— aStandpointClaimthat observes a heldgmeow:DoxasticStateviagmeow:claimOfBelief.
Examples
- ex:lie
gmeow:heldStandpointex:heldClaim.