Refills leaf node


URI

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

Label

Refills

Description

For Drug Exposure: This is only filled in when the record is coming from a prescription written this field is meant to represent intended refills at time of the prescription.

Usage

DOMAINPROPERTYRANGE
Drug exposure Refills 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:refills a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Refills"^^xsd:string ;
    rdfs:comment "For Drug Exposure: This is only filled in when the record is coming from a prescription written this field is meant to represent intended refills at time of the prescription."@en ;
    rdfs:domain omop:DrugExposure ;
    rdfs:range xsd:integer ;
    omop:omop_cdm_name "drug_exposure.refills#87 AS int"^^xsd:string .