claim veridicality
- CURIE:
gmeow:claimVeridicality - IRI: https://blackcatinformatics.ca/gmeow/claimVeridicality
- Category: property
- Defined by:
gmeow:slices/deception
The veridicality status of a claim — whether it is untrue, licensed-false (fiction, satire, sarcasm), or true. Non-functional: a claim may carry multiple veridicality assessments from different standpoints (Principle 9).
Structure
Property shape: object property; gmeow:StandpointClaim -> gmeow:ClaimVeridicality
Practical Pattern
Use gmeow:claimVeridicality from gmeow:StandpointClaim to gmeow:ClaimVeridicality 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 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#> .
# --- What the spokesperson publicly PROJECTS: the vendor caused it. Asserted
# unequivocally, but UNTRUE — the falsehood is a veridicality value on the
# claim, never an isFalse flag.
ex:projectedClaim a gmeow:StandpointClaim ;
gmeow:vantage ex:spokesperson ;
gmeow:observedFeature ex:outage ;
gmeow:observationResult ex:vendor ;
gmeow:observationMethod gmeow:methodExpertJudgement ;
gmeow:claimModality gmeow:unequivocal ;
gmeow:claimVeridicality gmeow:veridicalityUntrue .
Grounded Claim
- Source:
slices/core/ai/examples/grounded-claim.ttl - Examples catalog: open in catalog#example-slices-core-ai-examples-grounded-claim
ex:verdict-2300 a gmeow:StandpointClaim ;
gmeow:vantage ex:auditor ;
gmeow:observedFeature ex:stmt-2300-is-claimed ;
gmeow:observationMethod gmeow:methodNliDerivation ;
gmeow:claimModality gmeow:bullshit ;
gmeow:claimVeridicality gmeow:veridicalityUntrue .
Common Companion Terms
gmeow:StandpointClaim, gmeow:ClaimVeridicality
Usage Advice
Use when
- Use to mark a
gmeow:StandpointClaim's veridicality — especially to flag licensed falsehood (gmeow:veridicalityLicensedFalsehood) so fiction, satire, and sarcasm are kept distinct from deception (the audience understands the non-truth-asserting frame).
Avoid when
- Avoid using it as a global isFalse flag (it is a frame-relative, non-functional assessment) — to settle a claim false, refute its
StandpointClaimmodality; multiple standpoint-indexed veridicality assessments coexist rather than collapse (Principle 9).
How to use
- Point the
StandpointClaimat agmeow:ClaimVeridicalityindividual (gmeow:veridicalityUntrue/gmeow:veridicalityLicensedFalsehood); attach assessments from each standpoint as separate non-functional values rather than forcing one verdict.
Examples
- ex:satiricalClaim
gmeow:claimVeridicalitygmeow:veridicalityLicensedFalsehood.