Value leaf node


URI

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

Label

Value

Description

For Dose Era: The numeric value of the dosage of the drug_ingredient.

Usage

DOMAINPROPERTYRANGE
Dose era 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:value a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Value"^^xsd:string ;
    rdfs:comment "For Dose Era: The numeric value of the dosage of the drug_ingredient."@en ;
    rdfs:domain omop:DoseEra ;
    rdfs:range xsd:decimal ;
    omop:omop_cdm_name "dose_era.dose_value#336 AS float"^^xsd:string .