Has respondent type leaf node


URI

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

Label

Has respondent type

Description

For Survey Conduct: This is a Concept that represents who actually recorded the answers to the survey. For example, this could be the patient or a research associate.
There is no specific domain or class for this field, just choose the one that best represents the value given in the source.

Usage

DOMAINPROPERTYRANGE
Survey conduct Has respondent type Concept

Implementation

@prefix omop: <https://w3id.org/omop/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix owlready: <http://www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

omop:has_respondent_type a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has respondent type"^^xsd:string ;
    owlready:python_name "respondent_type"^^xsd:string ;
    rdfs:comment """For Survey Conduct: This is a Concept that represents who actually recorded the answers to the survey. For example, this could be the patient or a research associate.
There is no specific domain or class for this field, just choose the one that best represents the value given in the source."""@en ;
    rdfs:domain omop:SurveyConduct ;
    rdfs:range omop:Concept ;
    omop:omop_cdm_name "survey_conduct.respondent_type_concept_id#236 AS Concept"^^xsd:string .