FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example Consent/consent-example-CDA (Turtle)

Community Based Collaborative Care Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Patient

Raw Turtle (+ also see Turtle/RDF Format Specification)

Share CDA documents from a specific author to a specific recipient

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

[a fhir:Consent ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "consent-example-CDA"] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "urn:oid:2.16.840.1.113883.3.72.5.9.1"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "494e0c7a-a69e-4fb4-9d02-6aae747790d7" ]
  ] ) ; #   The patient opts in to sharing CDA documents from a specific author to a specific recipient for a limited period  ,   consent GUID generated by application  
  fhir:status [ fhir:v "active"] ; # 
  fhir:category ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/consentcategorycodes"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "npp" ]
     ] )
  ] ) ; # 
  fhir:subject [
     fhir:reference [ fhir:v "Patient/pat2" ]
  ] ; #   one of the stock examples  
  fhir:date [ fhir:v "2018-12-28"^^xsd:date] ; # 
  fhir:grantee ( [
     fhir:reference [ fhir:v "Patient/pat2" ]
  ] ) ; #   author is patient themselves, and they sign  
  fhir:controller ( [
     fhir:reference [ fhir:v "Organization/f001" ]
  ] ) ; #   this consent relates to sharing data with a specific recipient  
  fhir:sourceReference ( [
     fhir:reference [ fhir:v "Contract/pcd-example-notAuthor" ] #   This Consent would be the machine usable version of a Contract resource where the original language and signatures are located  
  ] ) ; # 
  fhir:regulatoryBasis ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ActCode"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "INFA" ]
     ] )
  ] ) ; # 
  fhir:decision [ fhir:v "permit"] ; #   A base denial of access to Dr. F001 but allows for sharing CDA documents of type Discharge Summary + Summarization of Episode Note from a specific author for a limited period  
  fhir:provision ( [
     fhir:period [
       fhir:start [ fhir:v "2018-10-10"^^xsd:date ] ;
       fhir:end [ fhir:v "2019-10-10"^^xsd:date ]
     ] ;
     fhir:actor ( [
       fhir:role [
         fhir:coding ( [
           fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ParticipationType"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "PRCP" ]
         ] )
       ] ;
       fhir:reference [
         fhir:reference [ fhir:v "Practitioner/f001" ]
       ] #   Stock practitioner  
     ] ) ;
     fhir:provision ( [
       fhir:actor ( [
         fhir:role [
           fhir:coding ( [
             fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ParticipationType"^^xsd:anyURI ] ;
             fhir:code [ fhir:v "AUT" ]
           ] )
         ] ;
         fhir:reference [
           fhir:reference [ fhir:v "Practitioner/xcda-author" ]
         ]
       ] ) ;
       fhir:documentType ( [
         fhir:system [ fhir:v "urn:ietf:bcp:13"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "application/hl7-cda+xml" ]
       ] ) ; #   CDA documents  
       fhir:code ( [
         fhir:coding ( [
           a loinc:34133-9 ;
           fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "34133-9" ]
         ] )
       ] [
         fhir:coding ( [
           a loinc:18842-5 ;
           fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "18842-5" ]
         ] )
       ] ) #   code rules  
     ] )
  ] )] . # 

# -------------------------------------------------------------------------------------


Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.