Month of birth leaf node


URI

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

Label

Month of birth

Description

For Person: For data sources that provide the precise date of birth, the month should be extracted and stored in this field.

Usage

DOMAINPROPERTYRANGE
Person Month of birth integer

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:month_of_birth a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Month of birth"^^xsd:string ;
    rdfs:comment "For Person: For data sources that provide the precise date of birth, the month should be extracted and stored in this field."@en ;
    rdfs:domain omop:Person ;
    rdfs:range xsd:integer ;
    omop:omop_cdm_name "person.month_of_birth#4 AS int"^^xsd:string .