projected standpoint

The doxastic standpoint claim that the deceiver projects to the deceived party — a gmeow:DoxasticStandpointClaim whose optional gmeow:claimOfBelief, when present, observes the projected gmeow:DoxasticState (e.g., a low-credence avowed stance). It is the public or communicated position that diverges from the held standpoint in a deception event. Non-functional: a complex deception may project several standpoints to different audiences.

Structure

Property shape: object property; gmeow:Event -> gmeow:DoxasticStandpointClaim

Practical Pattern

Use gmeow:projectedStandpoint 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

# 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

@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

Avoid when

How to use

Scope notes

Examples