https://w3id.org/omop/ontology/valid_end_date
For Concept Relationship: The date when the relationship is invalidated. - For Source To Concept Map: The date when the mapping
instance became invalid because it
was deleted or superseded
(updated) by a new relationship.
Default value is 31-Dec-2099. - For Drug Strength: The date when then Concept became invalid. - For Concept: The date when the Concept became
invalid because it was deleted or
superseded (updated) by a new concept.
The default value is 31-Dec-2099,
meaning, the Concept is valid until it
becomes deprecated.
DOMAIN | PROPERTY | RANGE |
---|---|---|
Blank node (see implementation) | Valid end date | date |
@prefix omop: <https://w3id.org/omop/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
omop:valid_end_date a owl:DatatypeProperty,
owl:FunctionalProperty ;
rdfs:label "Valid end date"^^xsd:string ;
rdfs:comment "For Concept Relationship: The date when the relationship is invalidated."@en,
"""For Concept: The date when the Concept became
invalid because it was deleted or
superseded (updated) by a new concept.
The default value is 31-Dec-2099,
meaning, the Concept is valid until it
becomes deprecated."""@en,
"For Drug Strength: The date when then Concept became invalid."@en,
"""For Source To Concept Map: The date when the mapping
instance became invalid because it
was deleted or superseded
(updated) by a new relationship.
Default value is 31-Dec-2099."""@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( omop:SourceToConceptMap omop:DrugStrength omop:Concept omop:ConceptRelationship ) ] ;
rdfs:range xsd:date ;
omop:omop_cdm_name "concept.valid_end_date#370 AS date"^^xsd:string,
"concept_relationship.valid_end_date#387 AS date"^^xsd:string,
"drug_strength.valid_end_date#421 AS date"^^xsd:string,
"source_to_concept_map.valid_end_date#409 AS date"^^xsd:string .