projected standpoint

The standpoint claim that the deceiver projects to the deceived party — 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:StandpointClaim

Practical Pattern

Use gmeow:projectedStandpoint from gmeow:Event to gmeow:StandpointClaim 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 StandpointClaims: 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.
@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 .

Common Companion Terms

gmeow:Event, gmeow:StandpointClaim

Usage Advice

Use when

Avoid when

How to use

Examples