Starter FHIR Implementation Guide
1.0.1 - ci-build International flag

Starter FHIR Implementation Guide, published by Jembi Health Systems. This guide is not an authorized publication; it is the continuous build for version 1.0.1 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/jembi/Starter-FHIR-IG/ and changes regularly. See the Directory of published versions

Example Binary: Logical Model: Patient - Example 1 (Marital Status Captured)

This content is an example of the Patient Logical Model Logical Model and is not a FHIR Resource

    
{
  "resourceType": "http://jembi.org/fhir/StructureDefinition/PatientLogicalModel",
  "id": "LogicalModelPatientExample1",
  "name": [
    {
      "firstName": "John",
      "middleName": "Doe"
    }
  ],
  "maritalStatus": {
    "status": {
      "coding": [
        {
          "code": "M",
          "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus"
        }
      ]
    },
    "_effectiveDate": {
      "extension": [
        {
          "valueDate": "1999-01-01",
          "url": "http://jembi.org/fhir/StructureDefinition/marital-status-date"
        }
      ]
    }
  }
}