Stream: smart/health-cards
Topic: Exemption for FHIR Condition in SHC?
David Charron (Aug 23 2021 at 19:24):
Hi,
Akinox is the producer of SHC for the province of Quebec in Canada. We have been ask to include information in the SHC that would indicate a patient is exempt from the covid-19 vaccination due to his conditions. Has there been talk to include the FHIR Condition object in the SHC standard? If so could you point out where I can read about this.
https://www.hl7.org/fhir/condition.html
Thank you
David Charron
Akinox
Max Masnick (Aug 23 2021 at 19:29):
Hi David! This is not currently supported in the SHC FHIR IG for Vaccination & Testing.
Max Masnick (Aug 23 2021 at 19:32):
I'd love to hear more about the use cases for this enhancement though, especially from the Verifier's perspective.
David Charron (Aug 23 2021 at 19:37):
Hi Max,
One example is for pregnant women that are not eligible for vaccination. This condition has an end (as you can guess it's about 9 months) . So the verifier Akinox is also providing must be able to to show "green" even thought the patient is not fully vaccinated.
Another example is for immunosuppress patient.
David.
Max Masnick (Aug 24 2021 at 01:33):
Ok, thanks for the information. We will consider this enhancement for a future release.
If you can share more information about how Verifiers will change how they handle an unvaccinated person based on the reason they are unvaccinated, that would be helpful for us to understand this use case.
Also, it sounds like there may be different contraindications in your jurisdiction than in the US where I believe the only contraindication is an allergic reaction to the vaccine. If you can share links to the official list of contraindications, that would also be helpful. Thanks!
John Moehrke (Aug 24 2021 at 12:30):
I expect these special cases will continue to appear. How do we continue to support the non-healthcare treatment use-case of this credential? Adding in the ability to carry these special cases is not hard, but each one adds complexity for the intended consumer to interpret; Meaning, the airline ticketing desk, etc. Would seem a re-usable indicator for 'authorized special case' would be needed. right?
John Moehrke (Aug 24 2021 at 12:34):
thus the logic to determine a regional special case is actually legitimate is in the hands of the credential issuer, not all those trying to keep events safe. We already trust the credential issuer to confirm that the vaccine was properly given, so they already have the interpretation of legitimacy responsibility. This kind of a solution could then be used for any new special case that comes up. The compact credential stays stable format.
Josh Mandel (Aug 25 2021 at 19:04):
I'm not 100% clear on what you're suggesting @John Moehrke; https://spec.smarthealth.cards/#how-can-we-share-conclusions-like-a-safe-to-fly-pass-instead-of-sharing-clinical-results captures a bit of the design philosophy for SMART Health Cards (as I like to say, we're focused on conveying immutable clinical facts).
David Charron (Sep 01 2021 at 18:52):
Hi,
Here is a sample of the implementation we have put in place
{
"@context":[
"https://www.w3.org/2018/credentials/v1"
],
"type":[
"VerifiableCredential",
"https://smarthealth.cards#health-card",
"https://smarthealth.cards#covid19",
"https://smarthealth.cards#condition",
"https://smarthealth.cards#laboratory",
"https://smarthealth.cards#immunization"
],
"credentialSubject":{
"fhirVersion":"1.0.2",
"fhirBundle":{
"resourceType":"Bundle",
"type":"Collection",
"entry":[
{
"resource":{
"resourceType":"Patient",
"name":[
{
"family":"Test",
"given":[
"Sunny"
]
}
],
"birthDate":"1970-01-01"
}
},
{
"resource":{
"resourceType":"Condition",
"subject":{
"reference":"resource:0"
},
"code":{
"coding":[
{
"system":"https://mc.covid19.quebec.ca/",
"code":"MC002"
}
]
},
"onsetDateTime":"2021-08-26"
}
}
]
}
}
}
Igor Sirkovich (Sep 02 2021 at 17:01):
We've got a similar requirement in Ontario - we need to support exemptions for our "vaccine certificate". Some fields we consider: Exemption Type (e.g. Medical, Religious), Comments, Start Date, End Date, Status (Active, Inactive, Duplicate/Merged, Entered in Error). I'm wondering if an Observation resource would be a better match to this (rather than a Condition).
I assume more and more jurisdictions will need to support exemptions. It would be great to have a common approach to accommodate this use case rather than have each jurisdiction implement this on their own.
Josh Mandel (Sep 02 2021 at 18:39):
It's important to keep in mind that these "exempt from public health requirements" use cases go a bit beyond what SMART Health Cards is focused on conveying (which is: verifiable clinical information) and tips into the space of vaccine passports. https://spec.smarthealth.cards/#how-can-we-share-conclusions-like-a-safe-to-fly-pass-instead-of-sharing-clinical-results gets at the designing thinking here.
That said, if you wanted to build on existing FHIR bundles for this use case, you could consider adding resources like:
ImmunizationRecommendation
where.recommendation.forecastStatus
iscontraindicated
Basic
as a wrapper for your own custom semantics, like:
{
"resourceType": "Basic",
"subject": {"reference": "resource:0"},
"code": {
"coding": [{
"system": "https://yourdomain.example.org",
"value": "exempt-from-vaccine-requirements"}]}
}
Josh Mandel (Sep 02 2021 at 18:40):
You'd probably want to bake in time periods, so you knew how long the exemption lasts.
I'd strongly recommend against even considering baking "reasons" into these assertions (like, you would certainly not want to say "reason: pregnancy" or "reason: religious exception")
Igor Sirkovich (Sep 03 2021 at 06:15):
Thank you so much Josh! We've just started discussing this new requirement today, so your feedback is invaluable.
Deftdawg (Sep 06 2021 at 04:59):
In Ontario (one province over), the Ministry of Health policy says that an mRNA vaccine is safe for a pregnant woman to receive at any stage of pregnancy. Local public policy that a verifier has on what is acceptable risk for individuals based on vaccination level varies by region and time and current conditions such as medical capacity.
How to deal with valid medical conditions that make persons unable to be vaccinated or more susceptible to infection even having been vaxed while still protecting privacy and preventing abuse from folks claiming that they should be exempt for religious or other non-sensical reasons is a tough problem to solve... I like that the current spec is a clear statement of this is what you got, and when you got it. For folks who don't have vaccinations, they should probably present a doctor's letter that explains why they cannot be vaccinated rather than look to this credential.
It's a terrible idea that health policy would treat any unvaccinated (or more susceptible to infection) individual the same as a vaccinated person; these folks are at much higher risk for much more severe negative health outcomes. Where possible we should try to accommodate the medically vulnerable with additional safety measures, however sadly once the 4th wave gets close to exhausting hospital capacity we'll probably need to exclude them from many settings for their own safety.
Max Masnick (Sep 08 2021 at 16:53):
Note that a Basic
resource can't be added into any of the Bundles defined in http://hl7.org/fhir/uv/shc-vaccination/2021Sep/profiles.html. These bundles are (intentionally) closed, and can only accept specific resources.
The reason for this is so implementers know what to expect inside a SHC so they can properly assess/display everything.
So from a FHIR conformance standpoint, the approach Josh suggests above would have to be in a separate SHC -- it couldn't be bundled in with the vaccine info without breaking conformance to the FHIR IG.
Last updated: Apr 12 2022 at 19:14 UTC