Birth datetime leaf node


URI

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

Label

Birth datetime

Description

For Person: This field is not required but highly encouraged. For data sources that provide the precise datetime of birth, that value should be stored in this field. If birth_datetime is not provided in the source, use the following logic to infer the date: If day_of_birth is null and month_of_birth is not null then use the first of the month in that year. If month_of_birth is null or if day_of_birth AND month_of_birth are both null and the person has records during their year of birth then use the date of the earliest record, otherwise use the 15th of June of that year. If time of birth is not given use midnight (00:00:0000).

Usage

DOMAINPROPERTYRANGE
Person Birth datetime dateTime

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:birth_datetime a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Birth datetime"^^xsd:string ;
    rdfs:comment "For Person: This field is not required but highly encouraged. For data sources that provide the precise datetime of birth, that value should be stored in this field. If birth_datetime is not provided in the source, use the following logic to infer the date: If day_of_birth is null and month_of_birth is not null then use the first of the month in that year. If month_of_birth is null or if day_of_birth AND month_of_birth are both null and the person has records during their year of birth then use the date of the earliest record, otherwise use the 15th of June of that year. If time of birth is not given use midnight (00:00:0000)."@en ;
    rdfs:domain omop:Person ;
    rdfs:range xsd:dateTime ;
    omop:omop_cdm_name "person.birth_datetime#6 AS datetime"^^xsd:string .