Description leaf node


URI

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

Label

Description

Description

For Cohort Definition: A complete description of the cohort.

Usage

DOMAINPROPERTYRANGE
Cohort definition Description 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:description a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Description"^^xsd:string ;
    rdfs:comment "For Cohort Definition: A complete description of the cohort."@en ;
    rdfs:domain omop:CohortDefinition ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "cohort_definition.cohort_definition_description#429 AS str"^^xsd:string .