Term exists leaf node


URI

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

Label

Term exists

Description

For Note Nlp: Term_exists is defined as a flag that indicates if the patient actually has or had the condition. Any of the following modifiers would make Term_exists false:
Negation = true
Subject = [anything other than the patient]
Conditional = true/li>
Rule_out = true
Uncertain = very low certainty or any lower certainties
A complete lack of modifiers would make Term_exists true.

Usage

DOMAINPROPERTYRANGE
Note nlp Term exists 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_exists a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Term exists"^^xsd:string ;
    rdfs:comment """For Note Nlp: Term_exists is defined as a flag that indicates if the patient actually has or had the condition. Any of the following modifiers would make Term_exists false:
Negation = true
Subject = [anything other than the patient]
Conditional = true/li>
Rule_out = true
Uncertain = very low certainty or any lower certainties
A complete lack of modifiers would make Term_exists true.
"""@en ;
    rdfs:domain omop:NoteNlp ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "note_nlp.term_exists#204 AS str"^^xsd:string .