Has target leaf node


URI

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

Label

Has target

Description

For Source To Concept Map: The target Concept
to which the source code is being
mapped.

Usage

DOMAINPROPERTYRANGE
Source to concept map Has target 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_target a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has target"^^xsd:string ;
    owlready:python_name "target"^^xsd:string ;
    rdfs:comment """For Source To Concept Map: The target Concept
to which the source code is being
mapped."""@en ;
    rdfs:domain omop:SourceToConceptMap ;
    rdfs:range omop:Concept ;
    omop:omop_cdm_name "source_to_concept_map.target_concept_id#406 AS Concept"^^xsd:string .