Has obs event field leaf node


URI

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

Label

Has obs event field

Description

For Observation: If the Observation record is related to another record in the database, this field is the CONCEPT_ID that identifies which table the primary key of the linked record came from.
Put the CONCEPT_ID that identifies which table and field the OBSERVATION_EVENT_ID came from.

Usage

DOMAINPROPERTYRANGE
Observation Has obs event field 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_obs_event_field a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has obs event field"^^xsd:string ;
    owlready:python_name "obs_event_field"^^xsd:string ;
    rdfs:comment """For Observation: If the Observation record is related to another record in the database, this field is the CONCEPT_ID that identifies which table the primary key of the linked record came from.
Put the CONCEPT_ID that identifies which table and field the OBSERVATION_EVENT_ID came from."""@en ;
    rdfs:domain omop:Observation ;
    rdfs:range omop:Concept ;
    omop:omop_cdm_name "observation.obs_event_field_concept_id#168 AS Concept"^^xsd:string .