Has survey leaf node


URI

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

Label

Has survey

Description

For Survey Conduct: This is the Concept that represents the survey that was completed.
Put the CONCEPT_ID that identifies the survey that the Person completed. There is no specified domain for this table but the concept class 'staging/scales' contains many common surveys. [Accepted Concepts](https://athena.ohdsi.org/search-terms/terms?standardConcept=Standard&conceptClass=Staging+%2F+Scales&page=5&pageSize=15&query=).

Usage

DOMAINPROPERTYRANGE
Survey conduct Has survey 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_survey a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has survey"^^xsd:string ;
    owlready:python_name "survey"^^xsd:string ;
    rdfs:comment """For Survey Conduct: This is the Concept that represents the survey that was completed.
Put the CONCEPT_ID that identifies the survey that the Person completed. There is no specified domain for this table but the concept class 'staging/scales' contains many common surveys. [Accepted Concepts](https://athena.ohdsi.org/search-terms/terms?standardConcept=Standard&conceptClass=Staging+%2F+Scales&page=5&pageSize=15&query=)."""@en ;
    rdfs:domain omop:SurveyConduct ;
    rdfs:range omop:Concept ;
    omop:omop_cdm_name "survey_conduct.survey_concept_id#229 AS Concept"^^xsd:string .