Timing source value leaf node


URI

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

Label

Timing source value

Description

For Survey Conduct: Text string representing the timing of the survey. Example: Baseline, 6-month follow-up.

Usage

DOMAINPROPERTYRANGE
Survey conduct Timing 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:timing_source_value a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Timing source value"^^xsd:string ;
    rdfs:comment "For Survey Conduct: Text string representing the timing of the survey. Example: Baseline, 6-month follow-up."@en ;
    rdfs:domain omop:SurveyConduct ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "survey_conduct.timing_source_value#241 AS str"^^xsd:string .