FHIR Chat · Australian Patient Profile · implementers

Stream: implementers

Topic: Australian Patient Profile


view this post on Zulip Emilien Perico (Apr 11 2019 at 04:21):

I need to save information in the Australian patient extension about the DVA card (Department of Veterans' Affairs). I've used the example from the hl7 website here: http://hl7.org.au/fhir/base2018Mar/Patient-example1.json.html

I also need to save the patient's condition or disability that is sometimes attached to the DVA card. I've used an extension to end up with the following format:

{
"type": {
"coding": [{
"system": "http://hl7.org/fhir/v2/0203",
"code": "DVG",
"display": "DVA Gold Card Number"
}],
"text": "Department of Veterans' Affairs Number"
},
"system": "http://ns.electronichealth.net.au/id/dva",
"value": "NBUR9080",
"extension": [ {
"url": "<my_domain_base_url>/patient-dva-disability",
"valueCodeableConcept": { "text": "A certain condition or disability" }
}]
}

I just want to have some feedback about this way of storing the disability value. Do you see a better way to store that information related to the DVA card?

view this post on Zulip Jim Steel (Apr 11 2019 at 04:23):

Would certainly try to use a code rather than text. Also it would be tempting to try and link to a Condition resource for the condition

view this post on Zulip Richard Townley-O'Neill (Apr 11 2019 at 04:23):

Why is it not a condition of the patient?

view this post on Zulip Lloyd McKenzie (Apr 11 2019 at 04:24):

The disability isn't really related to the identifier, so I wouldn't put it there. Is it something that's handled as part of the patient's demographics? It seems like actually capturing a Condition or perhaps something tied to a Coverage (if the purpose is to grant special insurance coverate).

view this post on Zulip Jim Steel (Apr 11 2019 at 04:24):

Unless the identifier's use is somehow contingent on the condition

view this post on Zulip Emilien Perico (Apr 11 2019 at 04:27):

A few additional information: the condition can be a long text, not just limited to a code. And the condition is closely tight to the DVA card, you're only entitled to treatment related to this condition with the card

view this post on Zulip Emilien Perico (Apr 11 2019 at 04:28):

Yes @Lloyd McKenzie , it is related to the patient's demographics

view this post on Zulip Richard Townley-O'Neill (Apr 11 2019 at 04:30):

So, the card contains a summary of what conditions are covered by the DVA.

view this post on Zulip Emilien Perico (Apr 11 2019 at 04:33):

Yes, the DVA has different colours (gold, orange, white). White is the specific colour that only gives you coverage for the conditions you applied for.

view this post on Zulip Lloyd McKenzie (Apr 11 2019 at 04:37):

That sounds more like Coverage than demographics. It's not an innate characteristic of the patient, it's used to govern what's going to get paid for by whom - and that's what Coverage is for.

view this post on Zulip Brett Esler (Apr 11 2019 at 04:37):

Think this would be better served as a separate Coverage resource like Lloyd suggests - Patient.identifier is only there as common identifying information and is not recording specific coverage details. Using Coverage makes it explicit and can hold the details of conditions of coverage much more fully.

view this post on Zulip Lloyd McKenzie (Apr 11 2019 at 04:38):

Putting the identifier on the Patient is fine if it's a common way to look up the patient. But it would also be the identifier on a Coverage resource.

view this post on Zulip Brett Esler (Apr 11 2019 at 04:41):

The stuff in the AU patient profile is equivalent to the PID.3 content you would have as per a master patient index - pretty typical set of identifiers; when you start asking eligibility questions then an explicit Coverage entry is better. This would be something good to talk about in the AU PA working group as DVA coverage with conditions is a common case.

view this post on Zulip Emilien Perico (Apr 11 2019 at 04:41):

I understand, I'm not really across the Coverage concept (looking at it now) Is there any way to store the disability/condition then? I cannot find a proper way to do this

view this post on Zulip Lloyd McKenzie (Apr 11 2019 at 04:46):

@Paul Knapp ? Presumably this would be relevant for workers compensation-related coverage and other coverage types as well.

view this post on Zulip Emilien Perico (Apr 11 2019 at 05:25):

Thanks for the feedback guys. I'm starting to look at private insurance information as well. I guess I'll have a better knowledge about the coverage concept after this. The way I see it at the moment is that the condition would be stored as an extension of the class or something like that

view this post on Zulip Lloyd McKenzie (Apr 11 2019 at 05:38):

Perhaps, though this seems like something that ought to be part of core.


Last updated: Apr 12 2022 at 19:14 UTC