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

: Treatment Attestation Example 1 - TTL Representation

Page standards status: Informative

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://loinc.org/rdf#> .
@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/Consent/treatment-attestation-ex1> a fhir:Consent ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "treatment-attestation-ex1"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>Treatment Attestation by Dr. Susan Smith for Robert Johnson - Treatment relationship since 2024-01-15</p></div>"
  ] ;
  fhir:Consent.status [ fhir:value "active"] ;
  fhir:Consent.scope [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/consentscope" ] ;
       fhir:Coding.code [ fhir:value "patient-privacy" ]
     ]
  ] ;
  fhir:Consent.category [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ] ;
       fhir:Coding.code [ fhir:value "IDSCL" ] ;
       fhir:Coding.display [ fhir:value "Information Disclosure" ]
     ]
  ], [
     fhir:index 1 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a loinc:64292-6 ;
       fhir:Coding.system [ fhir:value "http://loinc.org" ] ;
       fhir:Coding.code [ fhir:value "64292-6" ] ;
       fhir:Coding.display [ fhir:value "Release of information consent" ]
     ]
  ] ;
  fhir:Consent.patient [
     fhir:link <http://hl7.org/fhir/Patient/patient-prov-001> ;
     fhir:Reference.reference [ fhir:value "Patient/patient-prov-001" ]
  ] ;
  fhir:Consent.dateTime [ fhir:value "2024-12-10T14:30:00Z"^^xsd:dateTime] ;
  fhir:Consent.performer [
     fhir:index 0 ;
     fhir:Reference.identifier [
       fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ] ;
       fhir:Identifier.value [ fhir:value "1234567893" ]
     ] ;
     fhir:Reference.display [ fhir:value "Dr. Susan Smith, MD" ]
  ] ;
  fhir:Consent.organization [
     fhir:index 0 ;
     fhir:Reference.identifier [
       fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ] ;
       fhir:Identifier.value [ fhir:value "1982947230" ]
     ] ;
     fhir:Reference.display [ fhir:value "Springfield Medical Center" ]
  ] ;
  fhir:Consent.sourceReference [
     fhir:link <http://hl7.org/fhir/DocumentReference/treatment-attestation-form-001> ;
     fhir:Reference.reference [ fhir:value "DocumentReference/treatment-attestation-form-001" ] ;
     fhir:Reference.display [ fhir:value "Provider Attestation Form" ]
  ] ;
  fhir:Consent.policy [
     fhir:index 0 ;
     fhir:Consent.policy.authority [ fhir:value "https://example.org/compliance" ] ;
     fhir:Consent.policy.uri [ fhir:value "https://example.org/provider-attestation-policy" ]
  ] ;
  fhir:Consent.provision [
     fhir:Consent.provision.type [ fhir:value "permit" ] ;
     fhir:Consent.provision.period [
       fhir:Period.start [ fhir:value "2024-01-15"^^xsd:date ]
     ] ;
     fhir:Consent.provision.actor [
       fhir:index 0 ;
       fhir:Consent.provision.actor.role [
         fhir:CodeableConcept.coding [
           fhir:index 0 ;
           fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ParticipationType" ] ;
           fhir:Coding.code [ fhir:value "IRCP" ] ;
           fhir:Coding.display [ fhir:value "information recipient" ]
         ]
       ] ;
       fhir:Consent.provision.actor.reference [
         fhir:Reference.identifier [
           fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ] ;
           fhir:Identifier.value [ fhir:value "1234567893" ]
         ] ;
         fhir:Reference.display [ fhir:value "Dr. Susan Smith" ]
       ]
     ] ;
     fhir:Consent.provision.purpose [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActReason" ] ;
       fhir:Coding.code [ fhir:value "TREAT" ] ;
       fhir:Coding.display [ fhir:value "treatment" ]
     ]
  ] .

<http://hl7.org/fhir/Patient/patient-prov-001> a fhir:Patient .

<http://hl7.org/fhir/DocumentReference/treatment-attestation-form-001> a fhir:DocumentReference .

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

<http://hl7.org/fhir/Consent/treatment-attestation-ex1.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Consent/treatment-attestation-ex1.ttl> .