Has definition type leaf node


URI

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

Label

Has definition type

Description

For Cohort Definition: Type defining what kind of Cohort Definition the record represents and how the syntax may be executed.

Usage

DOMAINPROPERTYRANGE
Cohort definition Has definition 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_definition_type a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has definition type"^^xsd:string ;
    owlready:python_name "definition_type"^^xsd:string ;
    rdfs:comment "For Cohort Definition: Type defining what kind of Cohort Definition the record represents and how the syntax may be executed."@en ;
    rdfs:domain omop:CohortDefinition ;
    rdfs:range omop:Concept ;
    omop:omop_cdm_name "cohort_definition.definition_type_concept_id#430 AS Concept"^^xsd:string .