fhirflame / official_fhir_tests /patient_r5.json
leksval
initial commit
a963d65
raw
history blame contribute delete
735 Bytes
{
"resourceType": "Patient",
"id": "example-r5",
"meta": {
"versionId": "1",
"lastUpdated": "2023-01-01T00:00:00Z",
"profile": [
"http://hl7.org/fhir/StructureDefinition/Patient"
]
},
"identifier": [
{
"system": "http://example.org/patient-ids",
"value": "67890"
}
],
"name": [
{
"family": "Smith",
"given": [
"Jane",
"R."
],
"period": {
"start": "2020-01-01"
}
}
],
"gender": "female",
"birthDate": "1990-05-15",
"address": [
{
"use": "home",
"line": [
"123 Main St"
],
"city": "Anytown",
"state": "CA",
"postalCode": "12345",
"country": "US"
}
]
}