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/ob (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)

Example of an order for an obstetric procedure

{
  "resourceType" : "ServiceRequest",
  "id" : "ob",
  "status" : "completed",
  "intent" : "order",
  "category" : [{
    "coding" : [{
      "system" : "http://snomed.info/sct",
      "code" : "386637004",
      "display" : "Obstetric procedure (procedure)"
    }],
    "text" : "OB"
  }],
  "code" : {
    "concept" : {
      "coding" : [{
        "system" : "http://snomed.info/sct",
        "code" : "22633006",
        "display" : "Vaginal delivery, medical personnel present (procedure)"
      }],
      "text" : "Vaginal delivery"
    }
  },
  "subject" : {
    "display" : "Jane Doe"
  },
  "occurrenceDateTime" : "2012-06-02",
  "requester" : {
    "display" : "Women’s Hospital"
  },
  "performer" : [{
    "display" : "Martha Midwife, RNP"
  }],
  "reason" : [{
    "concept" : {
      "text" : "term pregnancy, active labor"
    }
  }]
}

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.