Has vocabulary leaf node


URI

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

Label

Has vocabulary

Description

For Concept: A foreign key to the [VOCABULARY](https://ohdsi.github.io/CommonDataModel/cdm531.html#vocabulary)
table indicating from which source the
Concept has been adapted.

Usage

DOMAINPROPERTYRANGE
Concept Has vocabulary Vocabulary

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_vocabulary a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has vocabulary"^^xsd:string ;
    owlready:python_name "vocabulary"^^xsd:string ;
    rdfs:comment """For Concept: A foreign key to the [VOCABULARY](https://ohdsi.github.io/CommonDataModel/cdm531.html#vocabulary)
table indicating from which source the
Concept has been adapted."""@en ;
    rdfs:domain omop:Concept ;
    rdfs:range omop:Vocabulary ;
    omop:omop_cdm_name "concept.vocabulary_id#365 AS Vocabulary"^^xsd:string .