Skip to content

Complete Packaging End of Life Routes

The complete packaging end of life routes relationship list identifies the purposed and intended destination and process of this complete packaging once it has completed its role as packaging. This is only used in complete packaging.

Data

Column
Status
Format Notes
completePackagingEndOfLifeRouteIdentifier mandatory UUID A globally unique identifier. See identifiers section for information on how to construct this identifier
completePackagingEndOfLifeRoute mandatory String What is the intended end of life route for this complete packaging. The entry should be the end of life route controlled list identifier. To be filled in when complete packaging has an intended end of life route AS complete packaging, otherwise only fill out at component level.
orderOfPrecedence optional Integer The order that end of life routes should be used. The preferred route denoted as 1, and the last best option being the biggest number.
completePackagingDisruptors optional List What challenges this end of life route for this complete packaging has. The entry should be the complete packaging end of life route disruptors controlled list identifier.

Diagram

erDiagram

  COMPLETE_PACKAGING }o..o{ COMPLETE_PACKAGING_END_OF_LIFE_ROUTES : within
  COMPLETE_PACKAGING_END_OF_LIFE_ROUTES {
    completePackagingEndOfLifeRouteIdentifier UUID "*"
    completePackagingEndOfLifeRoute String "*"
    orderOfPrecedence Integer
    completePackagingDistruptors List
  }
  COMPLETE_PACKAGING_END_OF_LIFE_ROUTES }o--o{ CONTROLLED_LISTS : attributes
  CONTROLLED_LISTS {
    endOfLifeRoute mandatory
    completePackagingDistruptors mandatory
  }

Template

Complete packaging end of life routes should be provided as a separate csv file. The specification of this csv file is as follows:

Complete Packaging End of Life Routes Template

Example

1
2
3
4
5
6
7
8
9
--A complete packaging end of life route for recycling with food residue and a paper label being a disruptor.
{
  "completePackagingEndOfLifeRouteIdentifier": "1229f395-3065-4236-bc1e-2aa500f58a79",
  "completePackagingEndOfLifeRoute": "end-of-life-route-0001",
  "orderOfPrecedence": 1,
  "completePackagingDistruptors": [
      "cp-disruptors-0029", "cp-disruptors-0022"
  ]
}