Has currency leaf node


URI

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

Label

Has currency

Description

For Cost: A foreign key identifier to the concept representing the 3-letter code used to delineate international currencies, such as USD for US Dollar. These belong to the 'Currency' vocabulary

Usage

DOMAINPROPERTYRANGE
Cost Has currency Concept

Implementation

@prefix omop: <https://w3id.org/omop/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix owlready: <http://www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

omop:has_currency a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has currency"^^xsd:string ;
    owlready:python_name "currency"^^xsd:string ;
    rdfs:comment "For Cost: A foreign key identifier to the concept representing the 3-letter code used to delineate international currencies, such as USD for US Dollar. These belong to the 'Currency' vocabulary"@en ;
    rdfs:domain omop:Cost ;
    rdfs:range omop:Concept ;
    omop:omop_cdm_name "cost.currency_concept_id#315 AS Concept"^^xsd:string .