Has contract person leaf node


URI

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

Label

Has contract person

Description

For Payer Plan Period: The Person who is the primary subscriber/contract owner for Plan.
This may or may not be the same as the PERSON_ID. For example, if a mother has her son on her plan and the PAYER_PLAN_PERIOD record is the for son, the sons's PERSON_ID would go in PAYER_PLAN_PERIOD.PERSON_ID and the mother's PERSON_ID would go in PAYER_PLAN_PERIOD.CONTRACT_PERSON_ID.

Usage

DOMAINPROPERTYRANGE
Payer plan period Has contract person Person

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_contract_person a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has contract person"^^xsd:string ;
    owlready:python_name "contract_person"^^xsd:string ;
    rdfs:comment """For Payer Plan Period: The Person who is the primary subscriber/contract owner for Plan.
This may or may not be the same as the PERSON_ID. For example, if a mother has her son on her plan and the PAYER_PLAN_PERIOD record is the for son, the sons's PERSON_ID would go in PAYER_PLAN_PERIOD.PERSON_ID and the mother's PERSON_ID would go in PAYER_PLAN_PERIOD.CONTRACT_PERSON_ID."""@en ;
    rdfs:domain omop:PayerPlanPeriod ;
    rdfs:range omop:Person ;
    omop:omop_cdm_name "payer_plan_period.contract_person_id#288 AS Person"^^xsd:string .