Family source value leaf node


URI

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

Label

Family source value

Description

For Payer Plan Period: The common identifier for all people (often a family) that covered by the same policy.
Often these are the common digits of the enrollment id of the policy members.

Usage

DOMAINPROPERTYRANGE
Payer plan period Family source value string

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:family_source_value a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Family source value"^^xsd:string ;
    rdfs:comment """For Payer Plan Period: The common identifier for all people (often a family) that covered by the same policy.
Often these are the common digits of the enrollment id of the policy members."""@en ;
    rdfs:domain omop:PayerPlanPeriod ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "payer_plan_period.family_source_value#303 AS str"^^xsd:string .