Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

 

 

FHIR resource link

https://www.hl7.org/fhir/consent.html

https://build.fhir.org/consent.html SIGNIFICANT CHANGES

FHIR definition

A record of a healthcare consumer’s choices, which permits or denies identified recipient(s) or recipient role(s) to perform one or more actions within a given policy context, for specific purposes and periods of time.

PSI use case

Consumer’s acceptance to T&C or other documentation

Required properties

(see details below)

  • tags

  • status [fhir]

  • scope [fhir]

  • category [fhir]

  • patient

  • performer

  • dateTime

  • organization

  • language

  • source

  • policy

OR
  • || policyRule

  • provision/dataPeriod

Extensions

Sept 2022 - enforcement of required properties for PSI under consideration

Sample payload

Code Block
{
  "resourceType": "Consent",
  "status": "active", //active | inactive
  "scope": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/consentscope",
        "code": "patient-privacy"
      }
    ]
  },
  "category": [
    {
      "coding": [
        {
          "system": "http://loinc.org",
          "code": "59284-0"
        }
      ]
    }
  ],
  "patient": {
    "reference": "Patient/f001",
  },
  "performer":{
    "reference": "Patient/f001",
  },
  "dateTime": "2016-05-11",
  "organization": {
      "reference": "Organization/f001"
    },
  "language": "en",
  "sourceReference":{
	  // TODO
  },
  // Either a Policy or PolicyRule	policy.exists() or policyRule.exists()
  "policyRule": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
        "code": "OPTIN"
      }
    ]
  }, 
  "provision": {
    "period": {
      "start": "1964-01-01",
      "end": "2016-01-01" //when person opt-outs
    }
  }
}

Resource Dependencies

Patient
Organization
DocumentReference

...