Versions Compared

Key

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

...

FHIR R4 field

OpenIMIS field

notes

mapping status

identifier

feedbackId

mapped

reasonCode

CareRendered / PaymentAsked / DrugPrescribed / DrugReceived / Assessment

reasonCode field contains all the information mapped to all listed fields

mapped

occurrenceDateTime

feedBackDate

mapped

status

“active”

mapped

Description:

The FHIR R4 CommunicationRequest endpoint can be used to fetch information about claim feedback. The resource used by the ComunicationResponse to provide information about feedback.

...

Code Block
languagejson
{
    "resourceType": "CommunicationRequest",
    "id": "41CBD94D-6994-460B-B8FA-23DE36ACBDF3",
    "identifier": [
        {
            "type": {
                "coding": [
                    {
                        "code": "UUID",
                        "system": "https://hl7.org/fhir/valueset-identifier-type.html"
                    }
                ]
            },
            "use": "usual",
            "value": "41CBD94D-6994-460B-B8FA-23DE36ACBDF3"
        }
    ],
    "occurrenceDateTime": "2020-07-02T00:00:00",
    "reasonCode": [
        {
            "coding": [
                {
                    "code": "care_rendered"
                }
            ],
            "text": "True"
        },
        {
            "coding": [
                {
                    "code": "payment_asked"
                }
            ],
            "text": "False"
        },
        {
            "coding": [
                {
                    "code": "drug_prescribed"
                }
            ],
            "text": "True"
        },
        {
            "coding": [
                {
                    "code": "drug_received"
                }
            ],
            "text": "False"
        },
        {
            "coding": [
                {
                    "code": "asessment"
                }
            ],
            "text": "3"
        }
    ],
    "status": "unknownactive"
}