@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ts: <https://test.uncefact.org/vocabulary/term-status/> .
@prefix unece: <https://test.uncefact.org/vocabulary/> .

ts:active a skos:Concept ;
    skos:closeMatch <http://www.w3.org/2003/06/sw-vocab-status/ns#stable> ;
    skos:definition "Ratified and in normative use."@en ;
    skos:inScheme unece:term-status ;
    skos:notation "active" ;
    skos:prefLabel "active"@en .

ts:deprecated a skos:Concept ;
    skos:closeMatch <http://www.w3.org/2003/06/sw-vocab-status/ns#archaic> ;
    skos:definition "Superseded; still resolves, carries owl:deprecated + dcterms:isReplacedBy. Do not use in new work."@en ;
    skos:inScheme unece:term-status ;
    skos:notation "deprecated" ;
    skos:prefLabel "deprecated"@en .

ts:proposed a skos:Concept ;
    skos:closeMatch <http://www.w3.org/2003/06/sw-vocab-status/ns#unstable> ;
    skos:definition "Introduced via a DMR/MR; under review, not ratified."@en ;
    skos:inScheme unece:term-status ;
    skos:notation "proposed" ;
    skos:prefLabel "proposed"@en .

ts:retired a skos:Concept ;
    skos:definition "Withdrawn from use but never deleted — the URI resolves forever so historic credentials stay verifiable."@en ;
    skos:inScheme unece:term-status ;
    skos:notation "retired" ;
    skos:prefLabel "retired"@en .

unece:term-status a skos:ConceptScheme ;
    rdfs:label "Vocab term status"@en ;
    skos:definition "Governance lifecycle states for a vocabulary term (class, property, or code value)."@en ;
    unece:codeListScope <https://test.uncefact.org/vocabulary/code-list-scope/governance> .

