Back to Docs

Examples

DPP.BE by UNDO.SOFTWARE

Implementation Examples

Real-world examples of Digital Product Passport implementations using DPP.BE vocabularies

Textile Product Passport
Complete DPP implementation for a cotton t-shirt using textile vocabulary
Textiles
Beginner
Language: JavaScript
{
  "@context": {
    "@vocab": "https://vocab.dpp.be/textiles/",
    "dpp": "https://vocab.dpp.be/core/"
  },
  "@type": "ProductPassport",
  "productId": "TSH-001-2024",
  "productName": "Organic Cotton T-Shirt",
  "fiberOrigin": "organic-cotton-india",
  "fabricWeight": 180,
  "dyeType": "natural",
  "sustainabilityScore": 85,
  "washingInstruction": {
    "temperature": 30,
    "method": "machine",
    "restrictions": ["no-bleach", "air-dry"]
  }
}
Electronics Component Tracking
Track electronic components with battery and energy efficiency data
Electronics
Intermediate
Language: JSON-LD
{
  "@context": {
    "@vocab": "https://vocab.dpp.be/electronics/",
    "dpp": "https://vocab.dpp.be/core/"
  },
  "@type": "ElectronicDevice",
  "deviceId": "PHONE-XYZ-2024",
  "deviceName": "Sustainable Smartphone",
  "batteryCapacity": 4500,
  "energyEfficiencyClass": "A++",
  "repairabilityIndex": 8.5,
  "components": [
    {
      "type": "Battery",
      "material": "lithium-ion",
      "recyclable": true,
      "lifespan": "3-5 years"
    }
  ]
}
Construction Material Passport
Building material documentation with environmental impact data
Construction
Advanced
Language: Turtle
@prefix : <https://vocab.dpp.be/construction/> .
@prefix dpp: <https://vocab.dpp.be/core/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

:material-001 a :BuildingMaterial ;
    rdfs:label "Recycled Steel Beam" ;
    :materialType "steel" ;
    :recycledContent 85 ;
    :carbonFootprint 2.1 ;
    :structuralGrade "S355" ;
    :fireResistance "R60" ;
    dpp:certification "CE-marked" .
Community Examples
Examples contributed by the DPP.BE community

Fashion Brand Implementation

Complete DPP implementation for a sustainable fashion brand

Textiles
React
Production
by SustainableFashion Co.

Electronics Manufacturer

Large-scale electronics DPP deployment with IoT integration

Electronics
IoT
Enterprise
by GreenTech Industries

Construction Materials

Building materials tracking with environmental impact data

Construction
Python
Analytics
by BuildGreen Ltd.