PH Core Implementation Guide
0.1.0 - ci-build
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
{
"resourceType" : "Practitioner",
"id" : "practitioner-single-ex",
"meta" : {
"profile" : [
🔗 "urn://example.com/ph-core/fhir/StructureDefinition/ph-core-practitioner"
]
},
"text" : {
"status" : "generated",
"div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Dr. Maria Clara Santos is a female practitioner born on May 15, 1985. She resides at 1234 Mabini Street, Manila, NCR, 1000, Philippines. She can be contacted via mobile at +63-912-345-6789 or by email at maria.santos@example.ph.</div>"
},
"name" : [
{
"family" : "Santos",
"given" : [
"Maria",
"Clara"
]
}
],
"telecom" : [
{
"system" : "phone",
"value" : "+63-912-345-6789",
"use" : "mobile"
},
{
"system" : "email",
"value" : "maria.santos@example.ph",
"use" : "work"
}
],
"address" : [
{
"use" : "home",
"line" : [
"1234 Mabini Street"
],
"city" : "Manila",
"state" : "NCR",
"postalCode" : "1000",
"country" : "PH"
}
],
"gender" : "female",
"birthDate" : "1985-05-15"
}