Skip to main content

Industrial battery field reference

Full field reference for batteryCategory: "INDUSTRIAL_BATTERY" responses from GET /api/dpp/{slug}. Industrial batteries cover stationary energy storage, forklift batteries, data centre UPS systems, and grid-scale applications with rated energy content exceeding 2 kWh.

For fields shared across all categories, see DPP overview. This page documents what is specific to, or different for, industrial batteries.


Nullability by field

Field pathTypeNullable for Industrial?Notes
carbonFootprintobjectNever nullRequired for Industrial batteries
carbonFootprint.totalKgCO2ePerKwhnumberNever null
carbonFootprint.lifecycle.*numberNever nullAll five lifecycle stages required
carbonFootprint.calculationMethodologystringNever null
carbonFootprint.verifiedBystring | nullNullable
carbonFootprint.verifiedAtstring | nullNullable
carbonFootprint.declarationRefstring | nullNullable
recycledContent.cobaltPercentnumberNever nullMinimum thresholds apply from 2030
recycledContent.lithiumPercentnumberNever nullMinimum thresholds apply from 2030
recycledContent.nickelPercentnumberNever nullMinimum thresholds apply from 2030
recycledContent.leadPercentnumberNever nullMinimum 85% recycled lead from 2030
performance.nominalCapacityKwhnumberNever nullFrequently 10–1000+ kWh for grid/industrial
performance.ratedVoltageVnumberNever null
performance.cycleLifeAtEightyPercentnumberNever null
performance.roundTripEfficiencyPercentnumberNever nullKey metric for stationary storage
performance.operatingTempMinCnumberNever null
performance.operatingTempMaxCnumberNever null
performance.initialSelfDischargeRatePercentnumber | nullNullable
hazardousSubstancesarrayNever null, may be empty
supplyChain.dueDiligencePolicyUrlstring | nullNullable
supplyChain.responsibleSourcingCertificationstring | nullNullable
compliance.euBatteryRegulationbooleanNever null
compliance.reachCompliantbooleanNever null
compliance.rohsCompliantbooleanNever null
compliance.certificationsstring[]Never null, may be emptyCommon: IEC 62619:2022, UL 9540
compliance.declarationOfConformityRefstring | nullNullable

Key differences from EV batteries

Industrial batteries share a similar field shape to EV batteries with two differences relevant to integrations:

  1. Capacity scalenominalCapacityKwh values for industrial batteries commonly run into hundreds or thousands of kWh. Do not assume kWh values below 10. Validate display formatting accordingly.

  2. Recycled content thresholds differ — industrial battery thresholds apply from 2030 (not 2031 like EV batteries), and the lead threshold (85%) is significant because some industrial batteries use lead-acid chemistry.


Regulatory thresholds

MetricThresholdApplies from
Minimum recycled cobalt content16%1 Jan 2030
Minimum recycled cobalt content26%1 Jan 2035
Minimum recycled lithium content6%1 Jan 2030
Minimum recycled lithium content12%1 Jan 2035
Minimum recycled nickel content6%1 Jan 2030
Minimum recycled nickel content15%1 Jan 2035
Minimum recycled lead content85%1 Jan 2030
Carbon footprint declaration mandatory18 Aug 2025
Carbon footprint performance class mandatory18 Aug 2026

Handling carbon footprint and efficiency

Both carbonFootprint and performance.roundTripEfficiencyPercent are guaranteed non-null for industrial batteries:

const dpp = await fetchDpp('my-industrial-battery-slug');

if (dpp.batteryCategory !== 'INDUSTRIAL_BATTERY') {
throw new Error('Expected INDUSTRIAL_BATTERY');
}

// Both always present for INDUSTRIAL_BATTERY
const cf = dpp.carbonFootprint!;
const efficiency = dpp.performance.roundTripEfficiencyPercent;

console.log(`Carbon footprint: ${cf.totalKgCO2ePerKwh} kgCO₂e/kWh`);
console.log(`Round-trip efficiency: ${efficiency}%`);
console.log(`Capacity: ${dpp.performance.nominalCapacityKwh} kWh`);

// Display recycled lead prominently for lead-acid chemistry batteries
if (dpp.recycledContent.leadPercent > 0) {
console.log(`Recycled lead: ${dpp.recycledContent.leadPercent}%`);
}

Annex XIII

Industrial batteries are specifically governed by Annex XIII of EU Battery Regulation 2023/1542, which defines the complete set of data fields that must be accessible via the battery passport. The Traceable data model is built to satisfy Annex XIII requirements.

See Annex XIII in the Compliance section for the full field-to-regulation mapping.


Restricted fields (PoLI access only)

Market surveillance authorities and other PoLI entities with approved access can retrieve additional supply chain detail:

  • Detailed raw material sourcing by mine and country
  • Full supplier audit references and reports
  • Internal test documentation references

See PoLI endpoints and the PoLI access flow integration example.