SQL on FHIR
2.1.0-pre - release International flag

SQL on FHIR, published by SQL on FHIR Working Group. This guide is not an authorized publication; it is the continuous build for version 2.1.0-pre built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/FHIR/sql-on-fhir-v2/ and changes regularly. See the Directory of published versions

: ExamplePatient1 - JSON Representation

Raw json | Download

{
  "resourceType" : "Patient",
  "id" : "1",
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Patient 1</b></p><a name=\"1\"> </a><a name=\"hc1\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Mal Vicario  Female, DoB Unknown</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Alternate names (see the one above)\">Alt. Name:</td><td colspan=\"3\">Malvina Gerda Vicario (Official)</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\"><ul><li>123 Main St Apt 1 San Diego 92101 (home)</li><li>456 Maplewood Dve Apt 2 New York 10001 (work)</li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Patient contact\">Contact:</td><td colspan=\"3\"><ul><li>456 Maplewood Dve Apt 2 New York 10001 </li></ul></td></tr></table></div>"
  },
  "name" : [
    {
      "use" : "official",
      "family" : "Vicario",
      "given" : [
        "Malvina",
        "Gerda"
      ]
    },
    {
      "use" : "usual",
      "family" : "Vicario",
      "given" : [
        "Mal"
      ]
    }
  ],
  "gender" : "female",
  "address" : [
    {
      "use" : "home",
      "line" : [
        "123 Main St",
        "Apt 1"
      ],
      "city" : "San Diego",
      "postalCode" : "92101"
    },
    {
      "use" : "work",
      "line" : [
        "456 Maplewood Dve",
        "Apt 2"
      ],
      "city" : "New York",
      "postalCode" : "10001"
    }
  ],
  "contact" : [
    {
      "address" : {
        "line" : [
          "456 Maplewood Dve",
          "Apt 2"
        ],
        "city" : "New York",
        "postalCode" : "10001"
      }
    }
  ]
}