Max levels of separation leaf node


URI

https://w3id.org/omop/ontology/max_levels_of_separation

Label

Max levels of separation

Description

For Concept Ancestor: The maximum separation in number of
levels of hierarchy between ancestor and
descendant concepts. This is an attribute
that is used to simplify hierarchic analysis.

Usage

DOMAINPROPERTYRANGE
Concept ancestor Max levels of separation integer

Implementation

@prefix omop: <https://w3id.org/omop/ontology/> .
@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#> .

omop:max_levels_of_separation a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Max levels of separation"^^xsd:string ;
    rdfs:comment """For Concept Ancestor: The maximum separation in number of
levels of hierarchy between ancestor and
descendant concepts. This is an attribute
that is used to simplify hierarchic analysis."""@en ;
    rdfs:domain omop:ConceptAncestor ;
    rdfs:range xsd:integer ;
    omop:omop_cdm_name "concept_ancestor.max_levels_of_separation#401 AS int"^^xsd:string .