ESG & Sustainability Policy

Template Overview

  • Template ID: esg-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 Ex: a technology platform supporting sustainable supply chains.
scopestringNoWho and what this policy applies to
ownerRolestringNoRole responsible for this policy Ex: Head of Sustainability, or the Board
commitmentStatementstringNoOverall ESG commitment statement (optional) A sentence or two in your own words. Leave blank for a standard statement.
driversarray of stringsYesWhat drives our ESG approach Options: "It is the right thing to do", "Meeting legal and regulatory requirements", "Customer and market expectations", "Investor and stakeholder expectations", "Managing risk and resilience", "Preparing for emerging regulation (e.g. DPP, CSRD)"
alignsToFrameworkbooleanNoDo you align to any recognised ESG framework or goals?
frameworksarray of stringsConditionalFrameworks / goals you align to Options: "UN Sustainable Development Goals (SDGs)", "UN Global Compact", "GRI Standards", "ISO 26000 (social responsibility)", "Science Based Targets initiative (SBTi)", "Task Force on Climate-related Financial Disclosures (TCFD)", "Other / not specified" Required if alignsToFramework is true.
environmentalCommitmentsarray of stringsYesEnvironmental commitments Options: "Reduce greenhouse gas emissions and energy use", "Improve energy efficiency / use renewable energy", "Reduce, reuse and recycle waste", "Manage water use responsibly", "Source sustainable and lower-impact materials", "Design for circularity, durability and recyclability", "Prevent pollution and protect biodiversity", "Prevent deforestation in our supply chain"
hasClimateTargetbooleanNoDo you have a climate / emissions target?
climateTargetNotestringConditionalClimate / emissions target Ex: net zero by 2040; 30% emissions cut by 2030. Required if hasClimateTarget is true.
socialCommitmentsarray of stringsYesSocial commitments Options: "Provide safe and healthy working conditions", "Uphold fair labour practices and fair pay", "Respect human rights across our operations and supply chain", "No forced, bonded or child labour", "Promote diversity, equity and inclusion", "Support employee wellbeing and development", "Engage and support the communities we operate in", "Protect customer and user data and privacy"
governanceCommitmentsarray of stringsYesGovernance commitments Options: "Act ethically and with integrity", "Zero tolerance for bribery and corruption", "Avoid and manage conflicts of interest", "Comply with applicable laws and regulations", "Maintain board / leadership oversight of ESG", "Be transparent and report honestly", "Responsible and traceable supply chain", "Protect whistleblowers who raise concerns"
referencesOtherPoliciesbooleanNoDoes this policy sit above other specific policies (sourcing, traceability, code of conduct, etc.)?
hasTargetsAndMetricsbooleanNoDo you set measurable ESG targets and track metrics?
reportsbooleanNoDo you report on ESG performance (internally or publicly)?
reportingNotestringConditionalHow / where you report Ex: an annual sustainability report published on our website. Required if reports is true.
trainsStaffbooleanNoDo you make staff aware of and train them on this policy?
reviewFrequencyMonthsnumberNoHow often is this policy reviewed (months)? Ex: 12
contactEmailstringYesContact email for ESG questions

Example JSON Payload

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

{
  "templateId": "esg-policy",
  "data": {
    "companyName": "Acme Corp",
    "effectiveDate": "2026-06-01",
    "businessDescription": "a technology platform supporting sustainable supply chains",
    "scope": "Sample Scope",
    "ownerRole": "Head of Sustainability, or the Board",
    "commitmentStatement": "Sample Commitment Statement",
    "drivers": [
      "It is the right thing to do",
      "Meeting legal and regulatory requirements"
    ],
    "alignsToFramework": false,
    "environmentalCommitments": [
      "Reduce greenhouse gas emissions and energy use",
      "Improve energy efficiency / use renewable energy"
    ],
    "hasClimateTarget": false,
    "socialCommitments": [
      "Provide safe and healthy working conditions",
      "Uphold fair labour practices and fair pay"
    ],
    "governanceCommitments": [
      "Act ethically and with integrity",
      "Zero tolerance for bribery and corruption"
    ],
    "referencesOtherPolicies": true,
    "hasTargetsAndMetrics": true,
    "reports": true,
    "reportingNote": "an annual sustainability report published on our website",
    "trainsStaff": true,
    "reviewFrequencyMonths": 12,
    "contactEmail": "legal@acmecorp.com"
  },
  "format": "pdf"
}