@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix ns0: <https://w3id.org/dio#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix dc: <http://purl.org/dc/elements/1.1/> . @prefix metadata_def: <http://data.bioontology.org/metadata/def/> . ns0:Active a ns0:Status . ns0:OnHold a ns0:Status . ns0:Resolved a ns0:Status . ns0:Status metadata_def:mappingLoom "status" ; metadata_def:mappingSameURI ns0:Status ; metadata_def:prefLabel "Status" ; dc:description "An entity representing the status of a design issue." ; a owl:Class ; rdfs:label "Status" ; rdfs:subClassOf owl:Thing . ns0:Terminated a ns0:Status . ns0:hasStatus rdfs:range ns0:Status .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns0: <https://w3id.org/dio#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix metadata_def: <http://data.bioontology.org/metadata/def/> .

ns0:Active
    a ns0:Status .

ns0:OnHold
    a ns0:Status .

ns0:Resolved
    a ns0:Status .

ns0:Status
    metadata_def:mappingLoom "status" ;
    metadata_def:mappingSameURI ns0:Status ;
    metadata_def:prefLabel "Status" ;
    dc:description "An entity representing the status of a design issue." ;
    a owl:Class ;
    rdfs:label "Status" ;
    rdfs:subClassOf owl:Thing .

ns0:Terminated
    a ns0:Status .

ns0:hasStatus
    rdfs:range ns0:Status .