Date leaf node


URI

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

Label

Date

Description

For Procedure Occurrence: Use this date to determine the date the procedure occurred.
If a procedure lasts more than a day, then it should be recorded as a separate record for each day the procedure occurred, this logic is in lieu of the procedure_end_date, which will be added in a future version of the CDM. - For Note Nlp: The date of the note processing. - For Observation: The date of the Observation. Depending on what the Observation represents this could be the date of a lab test, the date of a survey, or the date a patient's family history was taken.
For some observations the ETL may need to make a choice as to which date to choose. - For Note: The date the note was recorded. - For Specimen: The date the specimen was collected. - For Measurement: Use this date to determine the date of the measurement.
If there are multiple dates in the source data associated with a record such as order_date, draw_date, and result_date, choose the one that is closest to the date the sample was drawn from the patient.

Usage

DOMAINPROPERTYRANGE
Event Date date

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:date a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Date"^^xsd:string ;
    rdfs:comment """For Measurement: Use this date to determine the date of the measurement.
If there are multiple dates in the source data associated with a record such as order_date, draw_date, and result_date, choose the one that is closest to the date the sample was drawn from the patient."""@en,
        "For Note Nlp: The date of the note processing."@en,
        "For Note: The date the note was recorded."@en,
        """For Observation: The date of the Observation. Depending on what the Observation represents this could be the date of a lab test, the date of a survey, or the date a patient's family history was taken.
For some observations the ETL may need to make a choice as to which date to choose."""@en,
        """For Procedure Occurrence: Use this date to determine the date the procedure occurred.
If a procedure lasts more than a day, then it should be recorded as a separate record for each day the procedure occurred, this logic is in lieu of the procedure_end_date, which will be added in a future version of the CDM."""@en,
        "For Specimen: The date the specimen was collected."@en ;
    rdfs:domain omop:Event ;
    rdfs:range xsd:date ;
    omop:omop_cdm_name "death.death_date#171 AS date"^^xsd:string,
        "measurement.measurement_date#132 AS date"^^xsd:string,
        "metadata.metadata_date#350 AS date"^^xsd:string,
        "note.note_date#181 AS date"^^xsd:string,
        "note_nlp.nlp_date#202 AS date"^^xsd:string,
        "observation.observation_date#152 AS date"^^xsd:string,
        "procedure_occurrence.procedure_date#103 AS date"^^xsd:string,
        "specimen.specimen_date#211 AS date"^^xsd:string .