Doxastic Tenure

The reified, time-scoped fact that a DoxasticState was held over an interval — the belief-revision history construct. Opened when the belief is adopted; closed (endedAtTime on the duringInterval) and suppressed with displayable false when the belief is revised or retracted. The old DoxasticState is retained as audit, never deleted (Principle 10). Carries its interval via gmeow:duringInterval (temporal module) and links to the scoped DoxasticState via tenureOfDoxasticState.

Structure

Subclass of: gmeow:TimeScopedRelation

Practical Pattern

Use gmeow:DoxasticTenure as a specialized kind of gmeow:TimeScopedRelation. Add statement metadata or a standpoint when the assertion needs provenance, confidence, or vantage.

Example Snippets

These snippets are generated from canonical slice examples and trimmed to the Turtle blocks where this term appears.

Belief Revision

@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:originalTenure a gmeow:DoxasticTenure ;
    rdfs:label "Original tenure of the 'printer is broken' belief"@en ;
    gmeow:tenureOfDoxasticState ex:originalBelief ;
    gmeow:duringInterval ex:originalInterval .

ex:revisedTenure a gmeow:DoxasticTenure ;
    rdfs:label "Revised tenure of the 'printer may be broken' belief"@en ;
    gmeow:tenureOfDoxasticState ex:revisedBelief ;
    gmeow:duringInterval ex:revisedInterval .

Flagship Epistemic Ledger

@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex:    <https://blackcatinformatics.ca/gmeow/examples/epistemics/flagship/> .
@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd:   <http://www.w3.org/2001/XMLSchema#> .



# --- Original open-ended tenure --------------------------------------------------
ex:opTenureOriginal a gmeow:DoxasticTenure ;
    rdfs:label "original tenure of the operator's belief"@en ;
    gmeow:tenureOfDoxasticState ex:opBeliefOriginal ;
    gmeow:duringInterval ex:originalInterval .

ex:opTenureRevised a gmeow:DoxasticTenure ;
    rdfs:label "revised tenure of the operator's belief"@en ;
    gmeow:tenureOfDoxasticState ex:opBeliefRevised ;
    gmeow:duringInterval ex:revisedInterval .

Common Companion Terms

gmeow:TimeScopedRelation

Usage Advice

Use when

Avoid when

How to use

Examples