Has ethnicity leaf node


URI

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

Label

Has ethnicity

Description

For Person: This field captures Ethnicity as defined by the Office of Management and Budget (OMB) of the US Government: it distinguishes only between "Hispanic" and "Not Hispanic". Races and ethnic backgrounds are not stored here.
Only use this field if you have US-based data and a source of this information. Do not attempt to infer Ethnicity from the race or ethnic background of the Person. [Accepted ethnicity concepts](http://athena.ohdsi.org/search-terms/terms?domain=Ethnicity&standardConcept=Standard&page=1&pageSize=15&query=)

Usage

DOMAINPROPERTYRANGE
Person Has ethnicity 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_ethnicity a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has ethnicity"^^xsd:string ;
    owlready:python_name "ethnicity"^^xsd:string ;
    rdfs:comment """For Person: This field captures Ethnicity as defined by the Office of Management and Budget (OMB) of the US Government: it distinguishes only between "Hispanic" and "Not Hispanic". Races and ethnic backgrounds are not stored here.
Only use this field if you have US-based data and a source of this information. Do not attempt to infer Ethnicity from the race or ethnic background of the Person. [Accepted ethnicity concepts](http://athena.ohdsi.org/search-terms/terms?domain=Ethnicity&standardConcept=Standard&page=1&pageSize=15&query=)"""@en ;
    rdfs:domain omop:Person ;
    rdfs:range omop:Concept ;
    omop:omop_cdm_name "person.ethnicity_concept_id#9 AS Concept"^^xsd:string .