PH Core Implementation Guide
0.1.0 - ci-build Philippines flag

PH Core Implementation Guide, published by UP Manila SILab. 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/UP-Manila-SILab/ph-core/ and changes regularly. See the Directory of published versions

: example-patient - JSON Representation

Raw json | Download

{
  "resourceType" : "Patient",
  "id" : "example-patient",
  "meta" : {
    "profile" : [
      🔗 "urn://example.com/ph-core/fhir/StructureDefinition/ph-core-patient"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Juan Dela Cruz is a male patient born on 1 January 1980, residing in Manila, NCR, Philippines.</div>"
  },
  "extension" : [
    {
      "extension" : [
        {
          "url" : "code",
          "valueCodeableConcept" : {
            "coding" : [
              {
                "system" : "urn:iso:std:iso:3166",
                "code" : "PH",
                "display" : "Philippines"
              }
            ]
          }
        },
        {
          "url" : "period",
          "valuePeriod" : {
            "start" : "2020-01-01",
            "end" : "2023-01-01"
          }
        }
      ],
      "url" : "http://hl7.org/fhir/StructureDefinition/patient-nationality"
    },
    {
      "url" : "http://hl7.org/fhir/StructureDefinition/patient-religion",
      "valueCodeableConcept" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation",
            "code" : "1007",
            "display" : "Atheism"
          }
        ]
      }
    },
    {
      "url" : "urn://example.com/ph-core/fhir/StructureDefinition/indigenous-people",
      "valueBoolean" : true
    },
    {
      "url" : "urn://example.com/ph-core/fhir/StructureDefinition/indigenous-group",
      "valueCodeableConcept" : {
        "coding" : [
          {
            "system" : "urn://example.com/ph-core/fhir/CodeSystem/indigenous-groups",
            "code" : "Ilongots",
            "display" : "Ilongots"
          }
        ]
      }
    },
    {
      "url" : "urn://example.com/ph-core/fhir/StructureDefinition/race",
      "valueCodeableConcept" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v3-Race",
            "code" : "2036-2",
            "display" : "Filipino"
          }
        ]
      }
    }
  ],
  "identifier" : [
    {
      "system" : "urn://example.com/ph-core/fhir/NamingSystem/philhealth-id-ns",
      "value" : "63-584789845-5"
    }
  ],
  "active" : true,
  "name" : [
    {
      "family" : "Dela Cruz",
      "given" : [
        "Juan Jane",
        "Dela Fuente"
      ]
    }
  ],
  "gender" : "male",
  "birthDate" : "1985-06-15",
  "address" : [
    {
      "extension" : [
        {
          "url" : "urn://example.com/ph-core/fhir/StructureDefinition/city-municipality",
          "valueCoding" : {
            "system" : "urn://example.com/ph-core/fhir/CodeSystem/PSGC",
            "code" : "1380200000",
            "display" : "City of Las PiƱas"
          }
        },
        {
          "url" : "urn://example.com/ph-core/fhir/StructureDefinition/city-municipality",
          "valueCoding" : {
            "system" : "urn://example.com/ph-core/fhir/CodeSystem/PSGC",
            "code" : "1380100000",
            "display" : "City of Caloocan"
          }
        },
        {
          "url" : "urn://example.com/ph-core/fhir/StructureDefinition/province",
          "valueCoding" : {
            "system" : "urn://example.com/ph-core/fhir/CodeSystem/PSGC",
            "code" : "0402100000",
            "display" : "Cavite"
          }
        },
        {
          "url" : "urn://example.com/ph-core/fhir/StructureDefinition/province",
          "valueCoding" : {
            "system" : "urn://example.com/ph-core/fhir/CodeSystem/PSGC",
            "code" : "0403400000",
            "display" : "Laguna"
          }
        },
        {
          "url" : "urn://example.com/ph-core/fhir/StructureDefinition/province",
          "valueCoding" : {
            "system" : "urn://example.com/ph-core/fhir/CodeSystem/PSGC",
            "code" : "0405800000",
            "display" : "Rizal"
          }
        },
        {
          "url" : "urn://example.com/ph-core/fhir/StructureDefinition/province",
          "valueCoding" : {
            "system" : "urn://example.com/ph-core/fhir/CodeSystem/PSGC",
            "code" : "1704000000",
            "display" : "Marinduque"
          }
        },
        {
          "url" : "urn://example.com/ph-core/fhir/StructureDefinition/province",
          "valueCoding" : {
            "system" : "urn://example.com/ph-core/fhir/CodeSystem/PSGC",
            "code" : "0402100000",
            "display" : "Cavite"
          }
        },
        {
          "url" : "urn://example.com/ph-core/fhir/StructureDefinition/province",
          "valueCoding" : {
            "system" : "urn://example.com/ph-core/fhir/CodeSystem/PSGC",
            "code" : "1705100000",
            "display" : "Occidental Mindoro"
          }
        }
      ],
      "line" : [
        "123 Mabini Street",
        "Barangay Malinis"
      ],
      "city" : "Quezon City",
      "district" : "NCR",
      "postalCode" : "1100",
      "country" : "PH"
    }
  ]
}