Verbatim end date leaf node


URI

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

Label

Verbatim end date

Description

For Drug Exposure: This is the end date of the drug exposure as it appears in the source data, if it is given
Put the end date or discontinuation date as it appears from the source data or leave blank if unavailable.

Usage

DOMAINPROPERTYRANGE
Drug exposure Verbatim end date date

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:verbatim_end_date a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Verbatim end date"^^xsd:string ;
    rdfs:comment """For Drug Exposure: This is the end date of the drug exposure as it appears in the source data, if it is given
Put the end date or discontinuation date as it appears from the source data or leave blank if unavailable."""@en ;
    rdfs:domain omop:DrugExposure ;
    rdfs:range xsd:date ;
    omop:omop_cdm_name "drug_exposure.verbatim_end_date#84 AS date"^^xsd:string .