HL7 PT FHIR Implementation Guide: Example IG Release 1 | STU1
1.0.0 - STU1
HL7 PT FHIR Implementation Guide: Example IG Release 1 | STU1, published by HL7 Portugal. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/AnaCeciliaCoimbra/community-health-ig/ and changes regularly. See the Directory of published versions
{
"resourceType" : "Practitioner",
"id" : "Practitioner1",
"text" : {
"status" : "generated",
"div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Practitioner Practitioner1</b></p><a name=\"Practitioner1\"> </a><a name=\"hcPractitioner1\"> </a><a name=\"Practitioner1-en-US\"> </a><p><b>identifier</b>: <code>http://example.org/practitioner-ids</code>/12345</p><p><b>name</b>: John Smith </p><p><b>telecom</b>: ph: 555-1234(Work), <a href=\"mailto:john.smith@example.com\">john.smith@example.com</a></p><p><b>gender</b>: Male</p></div>"
},
"identifier" : [
{
"system" : "http://example.org/practitioner-ids",
"value" : "12345"
}
],
"name" : [
{
"family" : "Smith",
"given" : [
"John"
]
}
],
"telecom" : [
{
"system" : "phone",
"value" : "555-1234",
"use" : "work"
},
{
"system" : "email",
"value" : "john.smith@example.com",
"use" : "work"
}
],
"gender" : "male"
}