Has language leaf node


URI

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

Label

Has language

Description

For Note: The language of the note.
Use Concepts that are descendants of the concept [4182347](https://athena.ohdsi.org/search-terms/terms/4182347) (World Languages).

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) Has language 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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

omop:has_language a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has language"^^xsd:string ;
    owlready:python_name "language"^^xsd:string ;
    rdfs:comment """For Note: The language of the note.
Use Concepts that are descendants of the concept [4182347](https://athena.ohdsi.org/search-terms/terms/4182347) (World Languages)."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( omop:ConceptSynonym omop:Note ) ] ;
    rdfs:range omop:Concept ;
    omop:omop_cdm_name "concept_synonym.language_concept_id#397 AS Concept"^^xsd:string,
        "note.language_concept_id#188 AS Concept"^^xsd:string .