Da Vinci Payer Data Exchange
2.2.0 - STU 2.2 United States of America flag

Da Vinci Payer Data Exchange, published by HL7 International / Financial Management. This guide is not an authorized publication; it is the continuous build for version 2.2.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/davinci-epdx/ and changes regularly. See the Directory of published versions

: example-pdex-member-no-match-group - TTL Representation

Page standards status: Informative

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@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#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Group/example-pdex-member-no-match-group> a fhir:Group ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-pdex-member-no-match-group"] ;
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "2024-03-20T09:00:00.000Z"^^xsd:dateTime ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Default Generated text for resource.</div>"
  ] ;
  fhir:DomainResource.contained [
     a fhir:Patient ;
     fhir:index 0 ;
     fhir:Resource.id [ fhir:value "3" ] ;
     fhir:Patient.identifier [
       fhir:index 0 ;
       fhir:Identifier.type [
         fhir:CodeableConcept.coding [
           fhir:index 0 ;
           fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ] ;
           fhir:Coding.code [ fhir:value "MB" ]
         ]
       ] ;
       fhir:Identifier.system [ fhir:value "http://example.org/new-payer/identifiers/member" ] ;
       fhir:Identifier.value [ fhir:value "45567" ] ;
       fhir:Identifier.assigner [
         fhir:Reference.display [ fhir:value "New Payer" ]
       ]
     ] ;
     fhir:Patient.name [
       fhir:index 0 ;
       fhir:HumanName.use [ fhir:value "official" ] ;
       fhir:HumanName.family [ fhir:value "Jones" ] ;
       fhir:HumanName.given [
         fhir:value "Adam" ;
         fhir:index 0
       ], [
         fhir:value "Jacob" ;
         fhir:index 1
       ]
     ] ;
     fhir:Patient.gender [ fhir:value "male" ] ;
     fhir:Patient.birthDate [ fhir:value "1957-12-25"^^xsd:date ]
  ] ;
  fhir:Group.identifier [
     fhir:index 0 ;
     fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ] ;
     fhir:Identifier.value [ fhir:value "0123456789" ]
  ] ;
  fhir:Group.type [ fhir:value "person"] ;
  fhir:Group.actual [ fhir:value "true"^^xsd:boolean] ;
  fhir:Group.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://hl7.org/fhir/us/davinci-pdex/CodeSystem/PdexMultiMemberMatchResultCS" ] ;
       fhir:Coding.code [ fhir:value "nomatch" ] ;
       fhir:Coding.display [ fhir:value "Not Matched" ]
     ]
  ] ;
  fhir:Group.managingEntity [
     fhir:Reference.identifier [
       fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ] ;
       fhir:Identifier.value [ fhir:value "9876543210" ]
     ] ;
     fhir:Reference.display [ fhir:value "Old Health Plan" ]
  ] ;
  fhir:Group.member [
     fhir:index 0 ;
     fhir:Group.member.entity [
       fhir:Element.extension [
         fhir:index 0 ;
         fhir:Extension.url [ fhir:value "http://hl7.org/fhir/us/davinci-pdex/StructureDefinition/base-ext-match-parameters" ] ;
         fhir:Extension.valueReference [
           fhir:Reference.reference [ fhir:value "#3" ]
         ]
       ] ;
       fhir:Reference.reference [ fhir:value "#3" ]
     ]
  ] .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Group/example-pdex-member-no-match-group.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Group/example-pdex-member-no-match-group.ttl> .