FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example Patient/merge-survivor (JSON)

Responsible Owner: Patient Administration Work GroupStandards Status: InformativeCompartments: Patient, Practitioner, RelatedPerson

Raw JSON (canonical form + also see JSON Format Specification)

Patient that survived a merge, taking on elements of subsumed patient and the data of the subsumed patient. To show Provenance of a Merge.

{
  "resourceType" : "Patient",
  "id" : "merge-survivor",
  "identifier" : [{
    "system" : "http://example.org/mrn",
    "value" : "MRN-001"
  },
  {
    "system" : "http://example.org/mrn",
    "value" : "MRN-002"
  },
  {
    "system" : "http://example.org/ssn",
    "value" : "666-99-9999"
  }],
  "name" : [{
    "use" : "usual",
    "family" : "Smith",
    "given" : ["Jane"]
  }],
  "gender" : "female",
  "address" : [{
    "line" : ["123 Main St"],
    "city" : "Anytown",
    "state" : "NY",
    "postalCode" : "12345"
  }],
  "link" : [{
    "other" : {
      "reference" : "Patient/example-merge-subsumed"
    },
    "type" : "replaces"
  }]
}

Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.