Skip to content

Instantly share code, notes, and snippets.

@angshu
Created December 3, 2019 15:47
Show Gist options
  • Save angshu/b6db98c97da9050c0aefcb7c3b908892 to your computer and use it in GitHub Desktop.
Save angshu/b6db98c97da9050c0aefcb7c3b908892 to your computer and use it in GitHub Desktop.
FHIR org example
{
"resourceType": "Organization",
"identifier": [
{
"system": "https://tmc.gov.in/ncg/",
"type": "12345"
}
],
"name": "Tata Memorial Hospital"
"active": true,
"type": [
{
"coding": [
{
"system": "http://hl7.org/fhir/ValueSet/organization-type",
"code": "prov",
"display": "Healthcare Provider"
}
]
}
],
"alias": [
"TMH"
],
"telecom": [
{
"use": "work",
"value": "08080887879",
"system": "phone"
}
],
"address": [
{
"use": "work",
"type": "both",
"city": "Bangalore",
"state": "Karnataka"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment