Difference between revisions of "Data Consent Status"

From Hiasobi - FHIR
Jump to: navigation, search
 
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Consent information is included in the
 
 
 
Consent information is included in the Patient.meta.security element:
 
Consent information is included in the Patient.meta.security element:
  
Coding system [http://oridashi.com.au/CodeSystem/consent]
+
* ABSTAIN - patient has NOT opted out
ABSTAIN - no indication or positive participation
+
* OPTOUT - consent is withdrawn for data/SMS contact
OPTOUT - consent withdrawn for data/SMS contact
+
  
{| class="wikitable"
+
for BP when patient had NOT opted out it is possible to opt in to appointment, reminders, results and awarenesss leaflets
|+ Caption: example table
+
 
 +
 
 +
{| class="wikitable"  
 +
|+ Caption: Coding system http://oridashi.com.au/CodeSystem/consent
 +
|-
 +
| SMSABSTAIN
 +
| SMS Consent Abstain
 
|-
 
|-
! header1
+
| SMSOPTOUT
! header2
+
| SMS Consent Opt-out
! header3
+
|-
|-
+
| MDPIPQIABSTAIN
| row1cell1
+
| MD PIP QI Abstain
| row1cell2
+
|-  
| row1cell3
+
| MDPIPQIOPTOUT
|-
+
| MD PIP QI Opt-out
| row2cell1
+
|-
| row2cell2
+
| MDDATAABSTAIN
| row2cell3
+
| MD Data Research Abstain
 +
|-  
 +
| MDDATAAOPTOUT
 +
| MD Data Research Opt-out
 +
|-
 +
| SMSMAPPT
 +
| BP SMS Appointment Reminders Opt In
 +
|-
 +
| SMSREMINDER
 +
| BP SMS Clinical Reminders Opt In
 +
|-
 +
| SMSRESULTS
 +
| BP SMS Clinical Results/Messages Opt In
 +
|-
 +
| SMSAWARENESS
 +
| BP SMS Health Awareness Opt In
 
|}
 
|}
 
{| class="wikitable"
 
|-SMSABSTAIN|SMS Consent Abstain-|
 
|-SMSOPTOUT|SMS Consent Opt-out-|
 
|-MDPIPQIABSTAIN|MD PIP QI Abstain-|
 
|-MDPIPQIOPTOUT|MD PIP QI Opt-out-|
 
|-MDDATAABSTAIN|MD Data Research Abstain-|
 
|-MDDATAAOPTOUT|MD Data Research Opt-out-|
 
}
 
  
  
 +
Example
 
<code>
 
<code>
 
     {
 
     {

Latest revision as of 18:31, 4 August 2022

Consent information is included in the Patient.meta.security element:

  • ABSTAIN - patient has NOT opted out
  • OPTOUT - consent is withdrawn for data/SMS contact

for BP when patient had NOT opted out it is possible to opt in to appointment, reminders, results and awarenesss leaflets


Caption: Coding system http://oridashi.com.au/CodeSystem/consent
SMSABSTAIN SMS Consent Abstain
SMSOPTOUT SMS Consent Opt-out
MDPIPQIABSTAIN MD PIP QI Abstain
MDPIPQIOPTOUT MD PIP QI Opt-out
MDDATAABSTAIN MD Data Research Abstain
MDDATAAOPTOUT MD Data Research Opt-out
SMSMAPPT BP SMS Appointment Reminders Opt In
SMSREMINDER BP SMS Clinical Reminders Opt In
SMSRESULTS BP SMS Clinical Results/Messages Opt In
SMSAWARENESS BP SMS Health Awareness Opt In


Example

   {
       "resourceType": "Patient",
       "id": "B4E2EA83C3AD4443A9A0D2DF96E40E03.72", 
       "meta": {
            "versionId": "20210512024623",
            "lastUpdated": "2021-05-12T02:46:23.577+00:00",
            "security": [
                     {
                           "system": "http://oridashi.com.au/CodeSystem/consent",
                           "code": "SMSABSTAIN",
                           "display": "SMS Consent Abstain"
                     },
                     {
                           "system": "http://oridashi.com.au/CodeSystem/consent",
                           "code": "MDPIPQIABSTAIN",
                           "display": "MD PIP QI Abstain"
                     },
                     {
                          "system": "http://oridashi.com.au/CodeSystem/consent",
                          "code": "MDDATAABSTAIN",
                          "display": "MD Data Abstain"
                     }
             ]
        }
    }