defeated by

A doxastic state or standpoint-claim is marked with a justification-defeat status — a solver-set flag such as Gettier-case or defeated. Non-functional: a state or claim may carry several defeat markers over time, and old markers are suppressed rather than erased (Principle 10). This is a solver annotation only; the reasoner never promotes or retracts it (Principle 12).

Structure

Property shape: object property; gmeow:JustificationSubject -> gmeow:JustificationStatus

Practical Pattern

Use gmeow:defeatedBy from gmeow:JustificationSubject to gmeow:JustificationStatus 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

@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#> .



# --- Case 2: Gettier-defeated belief (stopped clock) -------------------------
# Same evidential kind as Case 1, but the basis is misleading: the clock is
# stopped and only happens to show the correct time. The solver marks the state
# as a Gettier case; the reasoner never infers this.
ex:adaGettierBelief a gmeow:DoxasticState ;
    rdfs:label "Ada's Gettier-defeated belief that it is noon"@en ;
    gmeow:epistemicAgent ex:ada ;
    gmeow:doxasticContent ex:timeNoon ;
    gmeow:credence "0.95"^^xsd:decimal ;
    gmeow:doxasticClaim ex:adaGettierClaim ;
    gmeow:justifiedBy ex:stoppedClockReading ;
    gmeow:defeatedBy gmeow:justificationStatusGettier .

Common Companion Terms

gmeow:JustificationSubject, gmeow:JustificationStatus

Usage Advice

Use when

Avoid when

How to use

Examples