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 Provider 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-provider-nomatch-group> a fhir:Group ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example-provider-nomatch-group"] ;
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "2024-12-16T10:00:00Z"^^xsd:dateTime ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h2>Provider No Match Group</h2><p>Members submitted by the provider that were not found in the payer system.</p></div>"
  ] ;
  fhir:DomainResource.contained [
     a fhir:Patient ;
     fhir:index 0 ;
     fhir:Resource.id [ fhir:value "prov-patient-2" ] ;
     fhir:Patient.name [
       fhir:index 0 ;
       fhir:HumanName.use [ fhir:value "official" ] ;
       fhir:HumanName.family [ fhir:value "Smith" ] ;
       fhir:HumanName.given [
         fhir:value "Jane" ;
         fhir:index 0
       ]
     ] ;
     fhir:Patient.gender [ fhir:value "female" ] ;
     fhir:Patient.birthDate [ fhir:value "1978-06-22"^^xsd:date ]
  ] ;
  fhir:Group.identifier [
     fhir:index 0 ;
     fhir:Identifier.system [ fhir:value "http://example.org/payer/match-groups" ] ;
     fhir:Identifier.value [ fhir:value "NMG-2024-12-16-001" ] ;
     fhir:Identifier.assigner [
       fhir:Reference.display [ fhir:value "Example Payer" ]
     ]
  ] ;
  fhir:Group.active [ fhir:value "true"^^xsd:boolean] ;
  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:link <http://hl7.org/fhir/Organization/Payer1> ;
     fhir:Reference.reference [ fhir:value "Organization/Payer1" ] ;
     fhir:Reference.identifier [
       fhir:Identifier.type [
         fhir:CodeableConcept.coding [
           fhir:index 0 ;
           fhir:Coding.system [ fhir:value "http://hl7.org/fhir/us/davinci-pdex/CodeSystem/PDexIdentifierType" ] ;
           fhir:Coding.code [ fhir:value "naiccode" ] ;
           fhir:Coding.display [ fhir:value "NAIC Code" ]
         ]
       ] ;
       fhir:Identifier.system [ fhir:value "urn:oid:2.16.840.1.113883.6.300" ] ;
       fhir:Identifier.value [ fhir:value "12345" ]
     ] ;
     fhir:Reference.display [ fhir:value "Example Payer Organization" ]
  ] ;
  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 "#prov-patient-2" ]
         ]
       ] ;
       fhir:Reference.reference [ fhir:value "#prov-patient-2" ]
     ]
  ] .

<http://hl7.org/fhir/Organization/Payer1> a fhir:Organization .

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

<http://hl7.org/fhir/Group/example-provider-nomatch-group.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Group/example-provider-nomatch-group.ttl> .