https://w3id.org/omop/ontology/has_payer_plan_period
For Cost: A foreign key to the PAYER_PLAN_PERIOD table, where the details of the Payer, Plan and Family are stored. Record the payer_plan_id that relates to the payer who contributed to the paid_by_payer field. - reversed relation, For Payer Plan Period: The Person covered by the Plan.
A single Person can have multiple, overlapping, PAYER_PLAN_PERIOD records
DOMAIN | PROPERTY | RANGE |
---|---|---|
Blank node (see implementation) | Has payer plan period | Payer plan period |
@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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
omop:has_payer_plan_period a owl:FunctionalProperty,
owl:ObjectProperty ;
rdfs:label "Has payer plan period"^^xsd:string ;
owlready:python_name "payer_plan_period"^^xsd:string ;
rdfs:comment "For Cost: A foreign key to the PAYER_PLAN_PERIOD table, where the details of the Payer, Plan and Family are stored. Record the payer_plan_id that relates to the payer who contributed to the paid_by_payer field."@en,
"""reversed relation, For Payer Plan Period: The Person covered by the Plan.
A single Person can have multiple, overlapping, PAYER_PLAN_PERIOD records"""@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( omop:Cost omop:Person ) ] ;
rdfs:range omop:PayerPlanPeriod ;
omop:omop_cdm_name "cost.payer_plan_period_id#324 AS PayerPlanPeriod"^^xsd:string,
"payer_plan_period.person_id#287 AS Person"^^xsd:string .