Source code description leaf node


URI

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

Label

Source code description

Description

For Source To Concept Map: An optional description for the
source code. This is included as a
convenience to compare the
description of the source code to
the name of the concept.

Usage

DOMAINPROPERTYRANGE
Source to concept map Source code description 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:source_code_description a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Source code description"^^xsd:string ;
    rdfs:comment """For Source To Concept Map: An optional description for the
source code. This is included as a
convenience to compare the
description of the source code to
the name of the concept."""@en ;
    rdfs:domain omop:SourceToConceptMap ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "source_to_concept_map.source_code_description#405 AS str"^^xsd:string .