Has qualifier leaf node


URI

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

Label

Has qualifier

Description

For Observation: This field contains all attributes specifying the clinical fact further, such as as degrees, severities, drug-drug interaction alerts etc.
Use your best judgement as to what Concepts to use here and if they are necessary to accurately represent the clinical record. There is no restriction on the domain of these Concepts, they just need to be Standard.

Usage

DOMAINPROPERTYRANGE
Observation Has qualifier Concept

Implementation

@prefix omop: <https://w3id.org/omop/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix owlready: <http://www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

omop:has_qualifier a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has qualifier"^^xsd:string ;
    owlready:python_name "qualifier"^^xsd:string ;
    rdfs:comment """For Observation: This field contains all attributes specifying the clinical fact further, such as as degrees, severities, drug-drug interaction alerts etc.
Use your best judgement as to what Concepts to use here and if they are necessary to accurately represent the clinical record. There is no restriction on the domain of these Concepts, they just need to be Standard."""@en ;
    rdfs:domain omop:Observation ;
    rdfs:range omop:Concept ;
    omop:omop_cdm_name "observation.qualifier_concept_id#158 AS Concept"^^xsd:string .