Days supply leaf node


URI

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

Label

Days supply

Description

For Drug Exposure: Days supply of the drug. This should be the verbatim days_supply as given on the prescription. If the drug is physician administered use duration end date if given or set to 1 as default if duration is not available.

Usage

DOMAINPROPERTYRANGE
Drug exposure Days supply integer

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:days_supply a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Days supply"^^xsd:string ;
    rdfs:comment "For Drug Exposure: Days supply of the drug. This should be the verbatim days_supply as given on the prescription. If the drug is physician administered use duration end date if given or set to 1 as default if duration is not available."@en ;
    rdfs:domain omop:DrugExposure ;
    rdfs:range xsd:integer ;
    omop:omop_cdm_name "drug_exposure.days_supply#89 AS int"^^xsd:string .