FHIR CI-Build

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

Example Group/Household (JSON)

FHIR Infrastructure Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Device, Patient, Practitioner

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

Example of a Household

{
  "resourceType" : "Group",
  "id" : "Household",
  "type" : "person",
  "membership" : "enumerated",
  "code" : {
    "coding" : [{
      "system" : "http://hl7.org/fhir/ValueSet/group-code",
      "code" : "household"
    }]
  },
  "member" : [{
    "entity" : {
      "reference" : "Patient/xcda"
    },
    "involvement" : [{
      "coding" : [{
        "system" : "http://hl7.org/fhir/group-involvement",
        "code" : "owner"
      }]
    }]
  },
  {
    "entity" : {
      "reference" : "Patient/pat4"
    },
    "involvement" : [{
      "coding" : [{
        "system" : "http://hl7.org/fhir/group-involvement",
        "code" : "resident"
      }]
    }]
  },
  {
    "entity" : {
      "reference" : "Patient/pat3"
    },
    "involvement" : [{
      "coding" : [{
        "system" : "http://hl7.org/fhir/group-involvement",
        "code" : "resident"
      }]
    }]
  },
  {
    "entity" : {
      "reference" : "Patient/pat1"
    },
    "involvement" : [{
      "coding" : [{
        "system" : "http://hl7.org/fhir/group-involvement",
        "code" : "pet"
      }]
    }]
  }]
}

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.