FHIR CI-Build

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

Example DeviceAssociation/example (JSON)

Responsible Owner: Orders and Observations Work GroupStandards Status: InformativeCompartments: Device, Group, Patient, Practitioner, RelatedPerson

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

General DeviceAssociation Example

{
  "resourceType" : "DeviceAssociation",
  "id" : "example",
  "device" : {
    "reference" : "Device/prod1"
  },
  "status" : "active",
  "identifier" : [{
    "system" : "http://acme.com/deviceassociations/id",
    "value" : "DA12345"
  }],
  "relationship" : [{
    "coding" : [{
      "system" : "http://hl7.org/fhir/CodeSystem/deviceassociation-relationship",
      "code" : "patient",
      "display" : "Patient"
    }]
  }],
  "period" : {
    "start" : "2023-01-01T08:00:00Z",
    "end" : "2023-12-31T17:00:00Z"
  },
  "associationStatus" : {
    "coding" : [{
      "system" : "http://hl7.org/fhir/CodeSystem/deviceassociation-association-status",
      "code" : "implanted",
      "display" : "Implanted"
    }]
  },
  "subject" : {
    "reference" : "Patient/pat1",
    "display" : "Donald Duck"
  }
}

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.