Box size leaf node


URI

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

Label

Box size

Description

For Drug Strength: The number of units of Clinical Branded Drug or Quantified Clinical or Branded Drug contained in a box as dispensed to the patient.

Usage

DOMAINPROPERTYRANGE
Drug strength Box size 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:box_size a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Box size"^^xsd:string ;
    rdfs:comment "For Drug Strength: The number of units of Clinical Branded Drug or Quantified Clinical or Branded Drug contained in a box as dispensed to the patient."@en ;
    rdfs:domain omop:DrugStrength ;
    rdfs:range xsd:integer ;
    omop:omop_cdm_name "drug_strength.box_size#419 AS int"^^xsd:string .