Has encoding leaf node


URI

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

Label

Has encoding

Description

For Note: This is the Concept representing the character encoding type.
Put the Concept Id that represents the encoding character type here. Currently the only option is UTF-8 ([32678](https://athena.ohdsi.org/search-terms/terms/32678)). It the note is encoded in any other type, like ASCII then put 0.

Usage

DOMAINPROPERTYRANGE
Note Has encoding 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_encoding a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has encoding"^^xsd:string ;
    owlready:python_name "encoding"^^xsd:string ;
    rdfs:comment """For Note: This is the Concept representing the character encoding type.
Put the Concept Id that represents the encoding character type here. Currently the only option is UTF-8 ([32678](https://athena.ohdsi.org/search-terms/terms/32678)). It the note is encoded in any other type, like ASCII then put 0."""@en ;
    rdfs:domain omop:Note ;
    rdfs:range omop:Concept ;
    omop:omop_cdm_name "note.encoding_concept_id#187 AS Concept"^^xsd:string .