Has entity leaf node


URI

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

Label

Has entity

Description

For Location History: The unique identifier for the entity. References either person_id, provider_id, or care_site_id, depending on domain_id.

Usage

DOMAINPROPERTYRANGE
Location history Has entity owl:Thing (inferred)

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_entity a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has entity"^^xsd:string ;
    owlready:python_name "entity"^^xsd:string ;
    rdfs:comment "For Location History: The unique identifier for the entity. References either person_id, provider_id, or care_site_id, depending on domain_id."@en ;
    rdfs:domain omop:LocationHistory ;
    omop:omop_cdm_name "location_history.entity_id#264 AS Thing"^^xsd:string .