Versions Compared

Key

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

...

FHIR R4 field

OpenIMIS field

notes

mapping status

identifier

tblICDCodes.ICDID / tblICDCodes.ICDUUID / tblICDCodes.ICDCode

tblICDCodes doesn’t contains UUID identifier. This should be added in the next release.

mapped

code.coding

tblICDCodes.ICDCode

Condition resource has a different field for code and is not part of the identifier.

mapped

code.text

tblICDCodes.ICDName

The name of the diagnosis.

mapped

recordedDate

tblICDCodes.ValidityFrom

date from when the diagnosis is valid.

mapped

subject

reference to Patient resource

currently mapped to any InsureeUUID, because it is used for the db

only mapped to be able to create a database

Endpoint specification:

Example of endpoint URL:

...

Code Block
languagejson
{
    "resourceType": "Condition",
    "code": {
        "coding": [
            {
                "code": "A00"
            }
        ],
        "text": "Cholera"
    },
    "id": "2",
    "identifier": [
        {
            "type": {
                "coding": [
                    {
                        "code": "ACSN",
                        "system": "https://hl7.org/fhir/valueset-identifier-type.html"
                    }
                ]
            },
            "use": "usual",
            "value": "2"
        },
        {
            "type": {
                "coding": [
                    {
                        "code": "DC",
                        "system": "https://hl7.org/fhir/valueset-identifier-type.html"
                    }
                ]
            },
            "use": "usual",
            "value": "A00"
        }
    ],
    "recordedDate": "2018-03-19T06:59:00.533000",
    "subject": {
        "reference": "Patient/1c91f840-eda0-421c-bf93-cf95bd7899f4"
    }
}