Ethnicity source value leaf node


URI

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

Label

Ethnicity source value

Description

For Person: This field is used to store the ethnicity of the person from the source data. It is not intended for use in standard analytics but for reference only.
If the person has an ethnicity other than the OMB standard of "Hispanic" or "Not Hispanic" store that value from the source data here.

Usage

DOMAINPROPERTYRANGE
Person Ethnicity source value 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:ethnicity_source_value a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Ethnicity source value"^^xsd:string ;
    rdfs:comment """For Person: This field is used to store the ethnicity of the person from the source data. It is not intended for use in standard analytics but for reference only.
If the person has an ethnicity other than the OMB standard of "Hispanic" or "Not Hispanic" store that value from the source data here."""@en ;
    rdfs:domain omop:Person ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "person.ethnicity_source_value#18 AS str"^^xsd:string .