Visiba Care Fhir Implementation Guide
0.2.0 - CI Build International flag

Visiba Care Fhir Implementation Guide - Local Development build (v0.2.0). See the Directory of published versions

: Example Patient - 1 - JSON Representation

Raw json | Download


{
  "resourceType" : "Patient",
  "id" : "1",
  "meta" : {
    "profile" : [
      "https://schema.visibacare.com/fhir/visibacare.fhir.ig/StructureDefinition/patient-profile"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>GivenName Surname</b> (no stated gender), DoB Unknown ( id: 121212121212)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Details:</td><td colspan=\"3\"><ul><li><a href=\"mailto:someguestuser@visibacare.com\">someguestuser@visibacare.com</a></li><li><a href=\"tel:+46700000000\">+46700000000</a></li><li>SE </li></ul></td></tr></table></div>"
  },
  "identifier" : [
    {
      "system" : "http://schema.visibacare.com/identifier/patient/nationalidentificationnumber",
      "value" : "121212121212"
    }
  ],
  "name" : [
    {
      "text" : "GivenName Surname",
      "family" : "Surname",
      "given" : [
        "GivenName"
      ]
    }
  ],
  "telecom" : [
    {
      "extension" : [
        {
          "url" : "https://schema.visibacare.com/fhir/visibacare.fhir.ig/StructureDefinition/patient-consent-extension",
          "valueBoolean" : true
        }
      ],
      "system" : "email",
      "value" : "someguestuser@visibacare.com"
    },
    {
      "extension" : [
        {
          "url" : "https://schema.visibacare.com/fhir/visibacare.fhir.ig/StructureDefinition/patient-consent-extension",
          "valueBoolean" : true
        }
      ],
      "system" : "phone",
      "value" : "+46700000000"
    }
  ],
  "address" : [
    {
      "country" : "SE"
    }
  ]
}