Has race leaf node


URI

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

Label

Has race

Description

For Person: This field captures race or ethnic background of the person.
Only use this field if you have information about race or ethnic background. The Vocabulary contains Concepts about the main races and ethnic backgrounds in a hierarchical system. Due to the imprecise nature of human races and ethnic backgrounds, this is not a perfect system. Mixed races are not supported. If a clear race or ethnic background cannot be established, use Concept_Id 0. [Accepted Race Concepts](http://athena.ohdsi.org/search-terms/terms?domain=Race&standardConcept=Standard&page=1&pageSize=15&query=).

Usage

DOMAINPROPERTYRANGE
Person Has race 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_race a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has race"^^xsd:string ;
    owlready:python_name "race"^^xsd:string ;
    rdfs:comment """For Person: This field captures race or ethnic background of the person.
Only use this field if you have information about race or ethnic background. The Vocabulary contains Concepts about the main races and ethnic backgrounds in a hierarchical system. Due to the imprecise nature of human races and ethnic backgrounds, this is not a perfect system. Mixed races are not supported. If a clear race or ethnic background cannot be established, use Concept_Id 0. [Accepted Race Concepts](http://athena.ohdsi.org/search-terms/terms?domain=Race&standardConcept=Standard&page=1&pageSize=15&query=)."""@en ;
    rdfs:domain omop:Person ;
    rdfs:range omop:Concept ;
    omop:omop_cdm_name "person.race_concept_id#8 AS Concept"^^xsd:string .