http://scigraph.springernature.com/ontologies/core/treeDepth
The :treeDepth property specifies the depth of a term within a taxonomy tree. This property is generally computed by a build-time rule
DOMAIN | PROPERTY | RANGE |
---|---|---|
ns1:Concept | ns1:treeDepth | xsd:integer |
@prefix ns1: <http://scigraph.springernature.com/ontologies/core/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
ns1:treeDepth a owl:DatatypeProperty ;
rdfs:label "Property: tree depth"@en ;
rdfs:comment "The :treeDepth property specifies the depth of a term within a taxonomy tree. This property is generally computed by a build-time rule"@en ;
rdfs:domain ns1:Concept ;
rdfs:isDefinedBy ns1: ;
rdfs:range xsd:integer .