Stream: Death on FHIR
Topic: ICD Coding
Kellie Broxton (Jan 26 2022 at 17:03):
What identifier in the returned icd_update references the original message? I was using the cert_no and death_year parameters but not always returned. Not sure if an ID references the original submission as I can't find a match. Thanks.
Kellie Broxton (Jan 26 2022 at 17:10):
For more clarification yesterday my returned codes had both cert_no and death_year parameters and I could find the referenced record based on that combined identifier. Today I only see cert_no returned on both race/ethnicity and icd coding.
Pete Krautscheid (Jan 26 2022 at 17:14):
The returned ICD coding message (sometimes known as the TRX file) should always include the three main identifiers in the message header, e.g., the cert_no, death_year, and jurisdiction_id fields in the partial example below. It sounds like you saw that yesterday, but are not seeing it now, is that correct? Can you post a snippit of what you're seeing?
{
"resourceType": "Bundle",
"id": "4e416646-3e97-447d-83c0-68eecf323834",
"type": "message",
"timestamp": "2022-01-25T14:52:16.0350016-05:00",
"entry": [
{
"fullUrl": "urn:uuid:6409f1b3-02a0-48bb-b161-a4d3d125a6a4",
"resource": {
"resourceType": "MessageHeader",
"id": "6409f1b3-02a0-48bb-b161-a4d3d125a6a4",
"eventUri": "http://nchs.cdc.gov/vrdr_coding",
"destination": [
{
"endpoint": "https://example.com/jurisdiction/message/endpoint"
}
],
"source": {
"endpoint": "http://nchs.cdc.gov/vrdr_submission"
},
"focus": [
{
"reference": "urn:uuid:0a688edd-433f-43d8-b702-1c75896b18d2"
}
]
}
},
{
"fullUrl": "urn:uuid:0a688edd-433f-43d8-b702-1c75896b18d2",
"resource": {
"resourceType": "Parameters",
"id": "0a688edd-433f-43d8-b702-1c75896b18d2",
"parameter": [
{
"name": "cert_no",
"valueUnsignedInt": 11
},
{
"name": "death_year",
"valueUnsignedInt": 2022
},
{
"name": "jurisdiction_id",
"valueString": "MA"
},
{
"name": "manner",
"valueString": "Natural"
},
{
"name": "injpl",
"valueString": "SportsAndAthleticsArea"
},
...
Kellie Broxton (Jan 26 2022 at 17:18):
I can email you since I am using my phone
Pete Krautscheid (Jan 26 2022 at 17:57):
Got it! I'll loop in @Veronique on the email. Thanks!
Last updated: Apr 12 2022 at 19:14 UTC