Occurrence count leaf node


URI

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

Label

Occurrence count

Description

For Condition Era: The number of individual Condition
Occurrences used to construct the
condition era.

Usage

DOMAINPROPERTYRANGE
Condition era Occurrence count integer

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:occurrence_count a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Occurrence count"^^xsd:string ;
    rdfs:comment """For Condition Era: The number of individual Condition
Occurrences used to construct the
condition era."""@en ;
    rdfs:domain omop:ConditionEra ;
    rdfs:range xsd:integer ;
    omop:omop_cdm_name "condition_era.condition_occurrence_count#344 AS int"^^xsd:string .