Skip to content

Instantly share code, notes, and snippets.

@sh0umik
Created October 8, 2017 04:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sh0umik/17f6a5e8511f49e7f845050357b3db00 to your computer and use it in GitHub Desktop.
Save sh0umik/17f6a5e8511f49e7f845050357b3db00 to your computer and use it in GitHub Desktop.
Sample FHIR Patient Data
{
"resourceType": "Patient",
"gender": "male",
"birthDate": "1942-01-14",
"id": "3abaceca-6fdd-4735-bff3-6b4830c0dab4"
"identifier": [
{
"type": {
"coding": [
{
"system": "http://hl7.org/fhir/identifier-type",
"code": "SB"
}
]
},
"system": "http://hl7.org/fhir/sid/us-ssn",
"value": "999383955"
},
{
"type": {
"coding": [
{
"system": "http://hl7.org/fhir/v2/0203",
"code": "DL"
}
]
},
"system": "urn:oid:2.16.840.1.113883.4.3.25",
"value": "S99944313"
},
{
"type": {
"coding": [
{
"system": "http://hl7.org/fhir/v2/0203",
"code": "MR"
}
]
},
"system": "http://hospital.smarthealthit.org",
"value": "89e67b18-d167-4eec-bcc4-f2249ee21c95"
}
],
"name": [
{
"use": "official",
"family": "Bauch453",
"given": [
"Stanley527"
],
"prefix": [
"Mr."
]
}
],
"telecom": [
{
"system": "phone",
"value": "(168) 007-5982",
"use": "home"
}
],
"address": [
{
"extension": [
{
"extension": [
{
"url": "latitude",
"valueDecimal": 42.59437957318591
},
{
"url": "longitude",
"valueDecimal": -72.09361425668885
}
],
"url": "http://hl7.org/fhir/StructureDefinition/geolocation"
}
],
"line": [
"75918 Mann Landing",
"Suite 587"
],
"city": "Templeton",
"state": "MA",
"postalCode": "01468",
"country": "US"
}
],
"maritalStatus": {
"coding": [
{
"system": "http://hl7.org/fhir/v3/MaritalStatus",
"code": "M"
}
],
"text": "M"
},
"multipleBirthBoolean": false,
"communication": [
{
"language": {
"coding": [
{
"system": "http://hl7.org/fhir/ValueSet/languages",
"code": "en-US",
"display": "English (United States)"
}
]
}
}
],
"generalPractitioner": [
{
"reference": "urn:uuid:dbf5b6ef-6951-449b-be3a-0f0abccad36c"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment