Environmental Sustainability Policy

Template Overview

  • Template ID: environmental-sustainability-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.)
businessDescriptionstringNoWhat the organisation does
scopestringNoWho and what this policy applies to
ownerRolestringNoRole responsible for this policy
commitmentStatementstringNoCommitment statement (optional) In your own words. Leave blank for a standard statement.
commitsLegalCompliancebooleanNoDo you commit to comply with all applicable environmental laws and permits?
commitsBeyondCompliancebooleanNoDo you commit to go beyond minimum legal compliance where you can?
focusAreasarray of stringsYesEnvironmental areas we actively manage Options: "Greenhouse gas emissions and climate", "Energy use and efficiency", "Renewable energy", "Water use and quality", "Waste and recycling", "Materials and resource use", "Pollution prevention (air, land, water)", "Biodiversity and ecosystems", "Transport and logistics emissions"
practicesarray of stringsYesPractices we adopt Options: "Measure and monitor our environmental impact", "Set reduction targets and track progress", "Improve energy and resource efficiency", "Reduce, reuse and recycle", "Choose lower-impact materials and suppliers", "Cut travel and transport emissions", "Raise staff awareness and involvement", "Work with suppliers to reduce impact"
hasTargetsbooleanNoDo you have specific environmental targets?
targetsNotestringConditionalYour environmental targets Ex: net zero by 2040; halve waste to landfill by 2028. Required if hasTargets is true.
trainsStaffbooleanNoDo you make staff aware of and train them on this policy?
reportsbooleanNoDo you report on environmental performance?
reviewFrequencyMonthsnumberNoReview frequency (months)
contactEmailstringYesContact email

Example JSON Payload

Here is an example of a properly formatted data object for the Environmental Sustainability Policy template.

{
  "templateId": "environmental-sustainability-policy",
  "data": {
    "companyName": "Acme Corp",
    "effectiveDate": "2026-06-01",
    "businessDescription": "Sample Business Description",
    "scope": "Sample Scope",
    "ownerRole": "Sample Owner Role",
    "commitmentStatement": "Sample Commitment Statement",
    "commitsLegalCompliance": true,
    "commitsBeyondCompliance": true,
    "focusAreas": [
      "Greenhouse gas emissions and climate",
      "Energy use and efficiency"
    ],
    "practices": [
      "Measure and monitor our environmental impact",
      "Set reduction targets and track progress"
    ],
    "hasTargets": false,
    "trainsStaff": true,
    "reports": false,
    "reviewFrequencyMonths": 1,
    "contactEmail": "legal@acmecorp.com"
  },
  "format": "pdf"
}