Modifier source value leaf node


URI

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

Label

Modifier source value

Description

For Procedure Occurrence: The original modifier code from the source is stored here for reference.

Usage

DOMAINPROPERTYRANGE
Procedure occurrence Modifier source value string

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:modifier_source_value a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Modifier source value"^^xsd:string ;
    rdfs:comment "For Procedure Occurrence: The original modifier code from the source is stored here for reference."@en ;
    rdfs:domain omop:ProcedureOccurrence ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "procedure_occurrence.modifier_source_value#113 AS str"^^xsd:string .