claim of belief
- CURIE:
gmeow:claimOfBelief - IRI: https://blackcatinformatics.ca/gmeow/claimOfBelief
- Category: property
- Defined by:
gmeow:slices/epistemics - Box roles: RBox role (What is this?)
Relates a DoxasticStandpointClaim to the DoxasticState it reports — the held believing mode that the claim is about. Functional: one such claim reports exactly one held doxastic state.
Structure
Property shape: object property; gmeow:DoxasticStandpointClaim -> gmeow:DoxasticState; functional
Practical Pattern
Use gmeow:claimOfBelief from gmeow:DoxasticStandpointClaim to gmeow:DoxasticState 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.
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:adaJustifiedClaim a gmeow:DoxasticStandpointClaim ;
rdfs:label "Ada's justified standpoint claim that it is noon"@en ;
gmeow:vantage ex:ada ;
gmeow:observedFeature ex:timeNoon ;
gmeow:claimModality gmeow:unequivocal ;
gmeow:observationMethod gmeow:methodInstrumentalReading ;
gmeow:claimOfBelief ex:adaJustifiedBelief .
ex:adaGettierClaim a gmeow:DoxasticStandpointClaim ;
rdfs:label "Ada's Gettier-defeated standpoint claim that it is noon"@en ;
gmeow:vantage ex:ada ;
gmeow:observedFeature ex:timeNoon ;
gmeow:claimModality gmeow:unequivocal ;
gmeow:observationMethod gmeow:methodInstrumentalReading ;
gmeow:claimOfBelief ex:adaGettierBelief .
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#> .
# --- What the spokesperson privately HOLDS: the internal engineer caused it.
ex:heldClaim a gmeow:DoxasticStandpointClaim ;
gmeow:vantage ex:spokesperson ;
gmeow:observedFeature ex:internalCauseProposition ;
gmeow:claimOfBelief ex:spokespersonHeldBelief ;
gmeow:claimModality gmeow:unequivocal ;
gmeow:observationMethod gmeow:methodExpertJudgement .
Common Companion Terms
gmeow:DoxasticStandpointClaim, gmeow:DoxasticState
Usage Advice
Use when
- Use to bind a
DoxasticStandpointClaimto the reifiedDoxasticStatewhose belief it reports.
Avoid when
- Avoid using it outside a
DoxasticStandpointClaim; for the flat spine, link the agent directly to the proposition withgmeow:believesorgmeow:knowsThat.
How to use
- Set exactly once per
DoxasticStandpointClaim, pointing to theDoxasticStatewhose agent, proposition, andclaimModalitymatch the claim's vantage,observedFeature, and modality.
Examples
- ex:aliceRoundClaim
gmeow:claimOfBeliefex:aliceBelievesRound.