Term temporal leaf node


URI

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

Label

Term temporal

Description

For Note Nlp: Term_temporal is to indicate if a condition is present or just in the past. The following would be past:<br><br>
- History = true
- Concept_date = anything before the time of the report

Usage

DOMAINPROPERTYRANGE
Note nlp Term temporal 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_temporal a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Term temporal"^^xsd:string ;
    rdfs:comment """For Note Nlp: Term_temporal is to indicate if a condition is present or just in the past. The following would be past:<br><br>
- History = true
- Concept_date = anything before the time of the report"""@en ;
    rdfs:domain omop:NoteNlp ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "note_nlp.term_temporal#205 AS str"^^xsd:string .