Term modifiers leaf node


URI

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

Label

Term modifiers

Description

For Note Nlp: For the modifiers that are there, they would have to have these values:<br><br>
- Negation = false
- Subject = patient
- Conditional = false
- Rule_out = false
- Uncertain = true or high or moderate or even low (could argue about low). Term_modifiers will concatenate all modifiers for different types of entities (conditions, drugs, labs etc) into one string. Lab values will be saved as one of the modifiers.

Usage

DOMAINPROPERTYRANGE
Note nlp Term modifiers string

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:term_modifiers a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Term modifiers"^^xsd:string ;
    rdfs:comment """For Note Nlp: For the modifiers that are there, they would have to have these values:<br><br>
- Negation = false
- Subject = patient
- Conditional = false
- Rule_out = false
- Uncertain = true or high or moderate or even low (could argue about low). Term_modifiers will concatenate all modifiers for different types of entities (conditions, drugs, labs etc) into one string. Lab values will be saved as one of the modifiers."""@en ;
    rdfs:domain omop:NoteNlp ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "note_nlp.term_modifiers#206 AS str"^^xsd:string .