GIIS Implementation Guide
0.1.8 - ci-build International flag

GIIS Implementation Guide, published by CENS. This guide is not an authorized publication; it is the continuous build for version 0.1.8 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/cens-chile/giis_fhir_IG/ and changes regularly. See the Directory of published versions

: Example GIIS Patient - JSON Representation

Raw json | Download


{
  "resourceType" : "Patient",
  "id" : "ExampleGiispatient",
  "meta" : {
    "profile" : [
      🔗 "https://paho.org/fhir/giis/StructureDefinition/GIISPatient"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Patient ExampleGiispatient</b></p><a name=\"ExampleGiispatient\"> </a><a name=\"hcExampleGiispatient\"> </a><a name=\"ExampleGiispatient-en-US\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">George Dylan Denver  Male, DoB: 1996-12-13 ( http://www.giisidentifier.org/ID/SystemID#16399288)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\"><ul><li>ph: 1235413(Home)</li><li>ph: 2341234(Mobile)</li><li><a href=\"mailto:example@email.com\">example@email.com</a></li><li>25405 Gibson Lakes </li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Nominated Contact: Next-of-Kin\">Next-of-Kin:</td><td colspan=\"3\"><ul><li>Miranda Denver</li><li><a href=\"mailto:mirdenver@email.com\">mirdenver@email.com</a></li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Patient Links\">Links:</td><td colspan=\"3\"><ul><li>Managing Organization: <a href=\"Organization-ExampleHealthfacility.html\">Organization Saint's George Hospital</a></li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Extension used to handle the community of a patient\"><a href=\"StructureDefinition-giis-community.html\">Community</a></td><td colspan=\"3\"><span title=\"Codes:{https://paho.org/fhir/giis/CodeSystem/CommunityCS 3}\">Dalton E Tucker</span></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Extension used to handle village related to a patient, mainly used for searching purposes.\"><a href=\"StructureDefinition-giis-village.html\">Village</a></td><td colspan=\"3\"><a href=\"Location-ExampleVillage.html\">Location Saint's George</a></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Extension used to handle the birthplace of a patient, mainly used for searching purposes.\"><a href=\"StructureDefinition-giis-birthplace.html\">Birthplace</a></td><td colspan=\"3\"><span title=\"Codes:{https://paho.org/fhir/giis/CodeSystem/BirthplaceCS 2}\">Hospital</span></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Extension made for being able to add notes to a GIIS patient\"><a href=\"StructureDefinition-giis-patnotes.html\">Patient notes</a></td><td colspan=\"3\">Patient has allergy to ibuprofen</td></tr></table></div>"
  },
  "extension" : [
    {
      "url" : "https://paho.org/fhir/giis/StructureDefinition/giis-village",
      "valueReference" : {
        🔗 "reference" : "Location/ExampleVillage"
      }
    },
    {
      "url" : "https://paho.org/fhir/giis/StructureDefinition/giis-birthplace",
      "valueCodeableConcept" : {
        "coding" : [
          {
            "system" : "https://paho.org/fhir/giis/CodeSystem/BirthplaceCS",
            "code" : "2",
            "display" : "Hospital"
          }
        ]
      }
    },
    {
      "url" : "https://paho.org/fhir/giis/StructureDefinition/giis-community",
      "valueCodeableConcept" : {
        "coding" : [
          {
            "system" : "https://paho.org/fhir/giis/CodeSystem/CommunityCS",
            "code" : "3"
          }
        ]
      }
    },
    {
      "url" : "https://paho.org/fhir/giis/StructureDefinition/giis-patnotes",
      "valueString" : "Patient has allergy to ibuprofen"
    }
  ],
  "identifier" : [
    {
      "system" : "http://www.giisidentifier.org/ID/SystemID",
      "value" : "16399288"
    }
  ],
  "name" : [
    {
      "family" : "Denver",
      "given" : [
        "George",
        "Dylan"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "1235413",
      "use" : "home"
    },
    {
      "system" : "phone",
      "value" : "2341234",
      "use" : "mobile"
    },
    {
      "system" : "email",
      "value" : "example@email.com",
      "use" : "home"
    }
  ],
  "gender" : "male",
  "birthDate" : "1996-12-13",
  "address" : [
    {
      "line" : [
        "25405 Gibson Lakes"
      ]
    }
  ],
  "contact" : [
    {
      "relationship" : [
        {
          "coding" : [
            {
              "system" : "http://terminology.hl7.org/CodeSystem/v2-0131",
              "code" : "N"
            }
          ]
        }
      ],
      "name" : {
        "text" : "Miranda Denver"
      },
      "telecom" : [
        {
          "system" : "email",
          "value" : "mirdenver@email.com"
        }
      ]
    }
  ],
  "managingOrganization" : {
    🔗 "reference" : "Organization/ExampleHealthfacility"
  }
}