FHIR CI-Build

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

Example ServiceRequest/do-not-turn (JSON)

Orders and Observations Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Device, Encounter, Patient, Practitioner, RelatedPerson

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

An example of an order to not turn a patient

{
  "resourceType" : "ServiceRequest",
  "id" : "do-not-turn",
  "identifier" : [{
    "system" : "http://goodhealth.org/placer-ids",
    "value" : "20170201-0002"
  }],
  "status" : "active",
  "intent" : "order",
  "priority" : "stat",
  "doNotPerform" : true,
  "code" : {
    "concept" : {
      "coding" : [{
        "system" : "http://snomed.info/sct",
        "code" : "359962006",
        "display" : "Turning patient in bed (procedure)"
      }]
    }
  },
  "subject" : {
    "reference" : "Patient/example"
  },
  "authoredOn" : "2017-02-01T17:23:07Z",
  "requester" : {
    "reference" : "Practitioner/example",
    "display" : "Dr Adam Careful"
  },
  "reason" : [{
    "reference" : {
      "display" : "Patient has a spinal fracture"
    }
  }]
}

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.