tenure of doxastic state

Relates a DoxasticTenure to the DoxasticState whose holding interval it records. Functional: one tenure scopes one doxastic state; a revised belief gets a new DoxasticState and a new tenure, while the old state and closed tenure remain as audit (Principle 10).

Structure

Property shape: object property; gmeow:DoxasticTenure -> gmeow:DoxasticState; functional

Practical Pattern

Use gmeow:tenureOfDoxasticState from gmeow:DoxasticTenure 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.

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:DoxasticTenure, gmeow:DoxasticState

Usage Advice

Use when

Avoid when

How to use

Examples