R6 Ballot (2nd Draft)

Publish-box (todo)

Example PackagedProductDefinition/package-with-liquid-and-syringe (JSON)

Biomedical Research and Regulation Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: No defined compartments

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

Basic example of a co-packaged liquid and a syringe, contents only, no packaging described

{
  "resourceType" : "PackagedProductDefinition",
  "id" : "package-with-liquid-and-syringe",
  "contained" : [{
    "resourceType" : "DeviceDefinition",
    "id" : "syringeDevice",
    "classification" : [{
      "type" : {
        "text" : "syringe"
      }
    }]
  },
  {
    "resourceType" : "ManufacturedItemDefinition",
    "id" : "liquidItem",
    "status" : "active",
    "manufacturedDoseForm" : {
      "coding" : [{
        "system" : "http://example.org.uk/fhir/doseform",
        "code" : "solution for injection"
      }]
    }
  }],
  "packageFor" : [{
    "reference" : "MedicinalProductDefinition/ProductThatHasThisPackType"
  }],
  "packaging" : {
    "containedItem" : [{
      "item" : {
        "reference" : {
          "reference" : "#liquidItem"
        }
      },
      "amount" : {
        "value" : 20,
        "unit" : "ml",
        "system" : "http://unitsofmeasure.org",
        "code" : "mL"
      }
    },
    {
      "item" : {
        "reference" : {
          "reference" : "#syringeDevice"
        }
      }
    }]
  }
}

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.