Amount value leaf node


URI

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

Label

Amount value

Description

For Drug Strength: The numeric value or the amount of active ingredient contained within the drug product.

Usage

DOMAINPROPERTYRANGE
Drug strength Amount value decimal

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:amount_value a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Amount value"^^xsd:string ;
    rdfs:comment "For Drug Strength: The numeric value or the amount of active ingredient contained within the drug product."@en ;
    rdfs:domain omop:DrugStrength ;
    rdfs:range xsd:decimal ;
    omop:omop_cdm_name "drug_strength.amount_value#413 AS float"^^xsd:string .