NHDR Implementation Guide Release 1.0
0.1.0 - ci-build

NHDR Implementation Guide Release 1.0, published by NHDR. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/PROJ-PHILHEALTH-EA-NHDR/PhilHealth-NHDR-IG-Review/ and changes regularly. See the Directory of published versions

CF1 Sample JSON Bundle - Member is the Patient

    {
        "resourceType": "Bundle",
        "id": "ClaimsForm1-2",
        "type": "transaction",
        "identifier": {
            "system": "http://nhdr.gov.ph/fhir/ValueSet-form-type",
            "value": "CF1"
        },
        "entry": [
            {
                "fullUrl": "urn:uuid:patient-2",
                "resource": {
                    "resourceType": "Patient",
                    "id": "Patient-2",
                    "meta": {
                        "profile": [
                            "https://nhdr.gov.ph/fhir/StructureDefinition/PH-Patient"
                        ]
                    },
                    "link": [
                        {
                            "other": {
                                "reference": "RelatedPerson/RelatedPerson-2"
                            },
                            "type": "refer"
                        }
                    ]
                },
                "request": {
                    "method": "POST",
                    "url": "Patient"
                }
            },
            {
                "fullUrl": "urn:uuid:relatedperson-2",
                "resource": {
                    "resourceType": "RelatedPerson",
                    "id": "RelatedPerson-2",
                    "meta": {
                        "profile": [
                            "https://nhdr.gov.ph/fhir/StructureDefinition/PH-RelatedPerson"
                        ]
                    },
                    "identifier": [
                        {
                            "type": {
                                "coding": [
                                    {
                                        "code": "NIIP"
                                    }
                                ],
                                "text": "PhilHealth Identification Number"
                            },
                            "value": "PH54321"
                        }
                    ],
                    "patient": {
                        "reference": "Patient/Patient-2"
                    },
                    "name": [
                        {
                            "family": "Razal",
                            "given": [
                                "Emily Frances Lourdes",
                                "Aberin"
                            ],
                            "suffix": [
                                "Mrs."
                            ]
                        }
                    ],
                    "birthDate": "1971-02-11",
                    "address": [
                        {
                            "line": [
                                "Fordham Road"
                            ],
                            "extension": [
                                {
                                    "url": "https://nhdr.gov.ph/fhir/StructureDefinition/Barangay",
                                    "valueCoding": {
                                        "code": "0123456789",
                                        "display": "Blue Ridge"
                                    }
                                },
                                {
                                    "url": "https://nhdr.gov.ph/fhir/StructureDefinition/CityMunicipality",
                                    "valueCoding": {
                                        "code": "0123456",
                                        "display": "Quezon City"
                                    }
                                },
                                {
                                    "url": "https://nhdr.gov.ph/fhir/StructureDefinition/Province",
                                    "valueCoding": {
                                        "code": "01234",
                                        "display": "Metro Manila"
                                    }
                                }
                            ],
                            "country": "PH",
                            "postalCode": "1110"
                        }
                    ],
                    "extension": [
                        {
                            "url": "https://nhdr.gov.ph/fhir/StructureDefinition/Sex",
                            "valueCode": "M"
                        }
                    ],
                    "telecom": [
                        {
                            "value": "912-00-00"
                        },
                        {
                            "value": "0927-000-0000"
                        },
                        {
                            "value": "earazal@email.com"
                        }
                    ]
                },
                "request": {
                    "method": "POST",
                    "url": "RelatedPerson"
                }
            },
            {
                "fullUrl": "urn:uuid:organization-2",
                "resource": {
                    "resourceType": "Organization",
                    "id": "Org-2",
                    "meta": {
                        "profile": [
                            "https://nhdr.gov.ph/fhir/StructureDefinition/PH-Organization"
                        ]
                    },
                    "identifier": [
                        {
                            "type": {
                                "coding": [
                                    {
                                        "code": "EN"
                                    }
                                ],
                                "text": "PhilHealth Employer Number (PEN)"
                            },
                            "value": "EN15243"
                        }
                    ],
                    "telecom": [
                        {
                            "value": "080-00-00"
                        }
                    ],
                    "name": "PhilHealth"
                },
                "request": {
                    "method": "POST",
                    "url": "Organization"
                }
            },
            {
                "fullUrl": "urn:uuid:questionnaire-2",
                "resource": {
                    "resourceType": "Questionnaire",
                    "id": "Questionnaire-2",
                    "meta": {
                        "profile": [
                            "https://nhdr.gov.ph/fhir/StructureDefinition/PH-Questionnaire"
                        ]
                    },
                    "item": [
                        {
                            "linkId": "1",
                            "text": "Patient is the member?",
                            "type": "boolean"
                        }
                    ],
                    "status": "active"
                },
                "request": {
                    "method": "POST",
                    "url": "Questionnaire"
                }
            },
            {
                "fullUrl": "urn:uuid:questionnaireresponse-2",
                "resource": {
                    "resourceType": "QuestionnaireResponse",
                    "id": "QuestionnaireResponse-2",
                    "meta": {
                        "profile": [
                            "https://nhdr.gov.ph/fhir/StructureDefinition/PH-QuestionnaireResponse"
                        ]
                    },
                    "questionnaire": "Questionnaire/Questionnaire-2",
                    "item": [
                        {
                            "linkId": "1",
                            "text": "Patient is the member?",
                            "answer": [
                                {
                                    "valueBoolean": true
                                }
                            ]
                        }
                    ],
                    "status": "in-progress"
                },
                "request": {
                    "method": "POST",
                    "url": "QuestionnaireResponse"
                }
            }
        ]
    }