Waste Management & Circularity Policy

Template Overview

  • Template ID: waste-management-circularity-policy
  • Version: 1.0.0

To generate this document, pass the structured data described below into the data property of the /api/v1/documents/generate endpoint.


Data Payload Schema

FieldTypeRequirementDescription & Details
companyNamestringYesOrganisation legal name
effectiveDatestringNoEffective date (Format: YYYY-MM-DD.)
scopestringNoWho and what this policy applies to
ownerRolestringNoRole responsible for this policy
followsHierarchybooleanNoDo you follow the waste hierarchy (prevent > reuse > recycle > recover > dispose)?
hierarchyActionsarray of stringsYesHow we apply the waste hierarchy Options: "Prevent and reduce waste at source", "Reuse materials and products", "Repair and refurbish", "Recycle what cannot be reused", "Recover energy or value where recycling isn't possible", "Dispose responsibly only as a last resort"
circularityCommitmentsarray of stringsYesCircular-economy commitments Options: "Design products for durability, repair and recyclability", "Use recycled and renewable inputs", "Keep products and materials in use longer", "Offer take-back, reuse or refill schemes", "Reduce and improve packaging", "Support Extended Producer Responsibility (EPR) obligations", "Track material flows and recovery rates"
hasCircularTargetsbooleanNoDo you have circularity / waste targets?
circularTargetsNotestringConditionalYour targets Ex: 100% recyclable packaging by 2027; zero waste to landfill by 2030. Required if hasCircularTargets is true.
segregatesWastebooleanNoDo you separate waste streams for correct handling?
handlesHazardousbooleanNoDo you generate hazardous or special waste?
usesLicensedContractorsbooleanNoDo you use licensed / authorised waste contractors?
keepsRecordsbooleanNoDo you keep records of waste and disposal (e.g. for compliance/audits)?
trainsStaffbooleanNoDo you train staff on waste handling and this policy?
reviewFrequencyMonthsnumberNoReview frequency (months)
contactEmailstringYesContact email

Example JSON Payload

Here is an example of a properly formatted data object for the Waste Management & Circularity Policy template.

{
  "templateId": "waste-management-circularity-policy",
  "data": {
    "companyName": "Acme Corp",
    "effectiveDate": "2026-06-01",
    "scope": "Sample Scope",
    "ownerRole": "Sample Owner Role",
    "followsHierarchy": true,
    "hierarchyActions": [
      "Prevent and reduce waste at source",
      "Reuse materials and products"
    ],
    "circularityCommitments": [
      "Design products for durability, repair and recyclability",
      "Use recycled and renewable inputs"
    ],
    "hasCircularTargets": false,
    "segregatesWaste": true,
    "handlesHazardous": false,
    "usesLicensedContractors": true,
    "keepsRecords": true,
    "trainsStaff": true,
    "reviewFrequencyMonths": 1,
    "contactEmail": "legal@acmecorp.com"
  },
  "format": "pdf"
}