Sustainable Materials & Sourcing Policy

Template Overview

  • Template ID: materials-sourcing-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.)
scopestringNoScope
contactEmailstringYesContact email
principlesarray of stringsYesSourcing principles Options: "Prefer recycled and renewable materials", "Prefer certified sustainable materials", "Prioritise lower-carbon materials", "Design for durability, repair and recyclability", "Source locally / reduce transport where feasible", "Avoid virgin and non-renewable materials where alternatives exist", "Respect human rights and fair labour in sourcing"
preferredMaterialsarray of objectsNoPreferred materials Each entry: material (string), reason (string).
restrictedMaterialsarray of objectsNoRestricted or prohibited materials / substances Each entry: material (string), status (string).
followsRestrictedListbooleanNoDo you follow a recognised restricted-substances list (e.g. REACH, ZDHC MRSL)?
restrictedListNamestringConditionalWhich list? Required if followsRestrictedList is true.
preferredCertificationsarray of stringsNoCertifications / standards you prefer or require Options: "FSC / PEFC (forestry)", "GOTS / GRS / RCS (textiles / recycled)", "Fairtrade / Rainforest Alliance", "ISO 14001 (environmental management)", "Cradle to Cradle", "Responsible mineral sourcing (e.g. RMI)", "Other recognised sustainability standards"
requiresEvidencebooleanNoDo you require suppliers to provide evidence of material claims?
appliesToSupplierSelectionbooleanNoDo these criteria factor into supplier selection and evaluation?
hasTargetsbooleanNoDo you have measurable sourcing targets?
targetsNotestringConditionalTargets (if any) Ex: 50% recycled content by 2027. Required if hasTargets is true.
reviewFrequencyMonthsnumberNoReview frequency (months)

Example JSON Payload

Here is an example of a properly formatted data object for the Sustainable Materials & Sourcing Policy template.

{
  "templateId": "materials-sourcing-policy",
  "data": {
    "companyName": "Acme Corp",
    "effectiveDate": "2026-06-01",
    "scope": "Sample Scope",
    "contactEmail": "legal@acmecorp.com",
    "principles": [
      "Prefer recycled and renewable materials",
      "Prefer certified sustainable materials"
    ],
    "preferredMaterials": [
      {
        "material": "Sample Material",
        "reason": "Sample Reason"
      }
    ],
    "restrictedMaterials": [
      {
        "material": "Sample Material",
        "status": "Restricted"
      }
    ],
    "followsRestrictedList": false,
    "preferredCertifications": [
      "FSC / PEFC (forestry)",
      "GOTS / GRS / RCS (textiles / recycled)"
    ],
    "requiresEvidence": true,
    "appliesToSupplierSelection": true,
    "hasTargets": false,
    "reviewFrequencyMonths": 1
  },
  "format": "pdf"
}