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-practitioner - XML Representation

Raw xml | Download


<Practitioner xmlns="http://hl7.org/fhir">
  <id value="example-practitioner"/>
  <meta>
    <profile
             value="urn://example.com/ph-core/fhir/StructureDefinition/ph-core-practitioner"/>
  </meta>
  <text>
    <status value="generated"/>
    <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>
  </text>
  <name>
    <family value="Santos"/>
    <given value="Maria"/>
    <given value="Clara"/>
  </name>
  <telecom>
    <system value="phone"/>
    <value value="+63-912-345-6789"/>
    <use value="mobile"/>
  </telecom>
  <telecom>
    <system value="email"/>
    <value value="maria.santos@example.ph"/>
    <use value="work"/>
  </telecom>
  <address>
    <use value="home"/>
    <line value="1234 Mabini Street"/>
    <city value="Manila"/>
    <state value="NCR"/>
    <postalCode value="1000"/>
    <country value="PH"/>
  </address>
  <gender value="female"/>
  <birthDate value="1985-05-15"/>
</Practitioner>