Example: Example Instances
Example Patient: EveAnyperson
This is an example instance for Resource Profile: MyPatient.
Three rendering
Patient |
id : NotJustEveAnyperson |
meta |
profile : http://example.org/StructureDefinition/MyPatient |
identifier |
system : https://fake-acme.org/fhir/NamingSystem/Patient-Identifier |
use : usual |
value : 1032702 |
name |
given : Eve |
family : NotJustAnyperson |
gender : female |
XML
<Patient xmlns="http://hl7.org/fhir"> <id value="NotJustEveAnyperson" /> <meta> <profile value="http://example.org/StructureDefinition/MyPatient" /> </meta> <identifier> <use value="usual" /> <system value="https://fake-acme.org/fhir/NamingSystem/Patient-Identifier" /> <value value="1032702" /> </identifier> <name> <family value="NotJustAnyperson" /> <given value="Eve" /> </name> <gender value="female" /> </Patient>
JSON
{ "resourceType": "Patient", "id": "NotJustEveAnyperson", "meta": { "profile": [ "http://example.org/StructureDefinition/MyPatient" ] }, "identifier": [ { "system": "https://fake-acme.org/fhir/NamingSystem/Patient-Identifier", "use": "usual", "value": "1032702" } ], "name": [ { "given": [ "Eve" ], "family": "NotJustAnyperson" } ], "gender": "female" }