Code leaf node


URI

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

Label

Code

Description

For Concept: The concept code represents the identifier
of the Concept in the source vocabulary,
such as SNOMED-CT concept IDs,
RxNorm RXCUIs etc. Note that concept
codes are not unique across vocabularies.

Usage

DOMAINPROPERTYRANGE
Concept Code string

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:code a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Code"^^xsd:string ;
    rdfs:comment """For Concept: The concept code represents the identifier
of the Concept in the source vocabulary,
such as SNOMED-CT concept IDs,
RxNorm RXCUIs etc. Note that concept
codes are not unique across vocabularies."""@en ;
    rdfs:domain omop:Concept ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "concept.concept_code#368 AS str"^^xsd:string .