What this covers: The BatteryPass-Ready test environment is now available to DPP providers. This guide explains what it is, how its data model is structured, the two testing modules it offers, and how to use it to find — and fix — compliance gaps in your battery passport data and your DPP system well before the February 2027 deadline.

Most companies preparing for the EU Digital Battery Passport are working from one source of truth: their own reading of Regulation 2023/1542 and Annex XIII. That is a problem, because "compliant" has, until recently, been impossible to verify against anything authoritative. You could build a passport, believe it conformed, and have no way to confirm it would actually be accepted.

That changed with the release of the BatteryPass-Ready test environment — the first concrete, near-official conformance harness for the battery DPP. It lets you check your data and your system against a shared reference implementation built directly on the current standardization and regulatory drafts. This guide is a practical walkthrough of what it tests and how to use it.

What BatteryPass-Ready Is

BatteryPass-Ready is a project of the BatteryPass-Ready Consortium, funded by the German Federal Ministry for Economic Affairs and Energy. It publishes two things that matter for compliance teams: a data model (machine-readable JSON schemas plus documentation) and a test environment that validates passports and DPP systems against that model.

The data model is a new development — it is not an update of the older "Battery Pass" content model previously published on GitHub. It builds on the DIN DKE Spec 99100 and incorporates more recent regulatory and standardization developments, as captured in the BatteryPass-Ready Data Attribute Longlist v1.3 (published March 2026). The schema files and documentation are released under a Creative Commons Attribution licence.

Set expectations correctly: BatteryPass-Ready is a readiness and conformance tool produced by a consortium — it is not the official EU DPP Registry, and passing it is not a legal certification. It is, however, the best available proxy for where the standard is actually landing. Treat a green result as "this would be accepted," not "this is certified."

The Two Things It Tests

The environment is split into two independent modules that answer two different questions.

Module The question it answers What it checks
Product Passport Data Validation Is my passport data in the right shape? Upload a single passport JSON file; it is validated against the schema for your battery category — required fields, data types, value constraints, and nesting.
System-Level Implementation Testing Can my system exchange passports correctly? Connects your live DPP system to a simulated multi-actor network and runs predefined test cases against the standardized lifecycle API.

Both modules require a free account, and both provide immediate, structured feedback so you can identify and fix issues early. Data validation is the faster win and the natural starting point; system-level testing is a larger integration effort.

The Data Model: One Master Schema, Five Categories

Under the hood there is a single master schema that defines every data element, and a set of category-specific schema files that each select the relevant subset and mark which elements are mandatory. There are five battery-category schemas:

Battery CategoryScope
EVElectric vehicle batteries
LMTLight means of transport — e-bikes, e-scooters, e-mopeds
Stationary Industrial > 2 kWhGrid and behind-the-meter stationary storage
Other Industrial > 2 kWhNon-stationary industrial — traction, forklift, motive power
Without BMSBatteries without a battery management system — added following stakeholder requests, to be formally folded into the next Data Attribute List update

Each category enforces a different set of required fields, so validating a file against the wrong schema produces failures that do not reflect real data quality problems. The single most important step before validating is choosing the schema that matches the battery the passport describes.

The master schema groups every data element into seven components:

How "Mandatory" Is Defined

Whether a given field is required is not a single yes/no — the model distinguishes the legal source of the obligation per battery category using a four-symbol notation:

SymbolMeaning
xMandatory by the EU Battery Regulation and/or related secondary legislation
(x)Mandatory by the JTC-24 standardization drafts and/or the ESPR
oVoluntary for that battery category
n.a.Does not apply to that battery category

This distinction matters in practice. A field marked x for EV may be o or n.a. for a stationary battery, which is exactly why the per-category schemas exist. It also means some "mandatory" fields trace to standardization drafts rather than the regulation text itself — useful context when you are deciding how hard to chase a particular data point.

What is enforced today: The model currently implements three dimensions per data element — unit, format, and access rights. Dimensions such as granularity, update frequency, and whether a value is static or dynamic are documented in the Data Attribute Longlist but are not yet part of validation. Validation is also structural and syntactic only right now: it checks that fields are present, correctly typed, and correctly coded. Semantic and cross-field plausibility checks are planned for later releases.

Why the Data Shape Surprises People

If you have only read Annex XIII prose, the schema's structure can be unexpected in two ways that routinely cause validation failures.

Every value carries its unit

Values are not bare numbers. Each measured field is a small object that pairs the magnitude with its unit code. A percentage is not 12.5 — it is an object containing the value and the percent unit. Capacity, voltage, power, energy, mass, and carbon footprint all follow this wrapped pattern, each with its own defined unit codes (Ah, V, W, kWh, kg, kgCO2-eq/kWh, and so on).

Controlled vocabularies, exact spellings

Several fields accept only specific coded values, and the spelling is exact. Battery chemistry must be one of a fixed set of codes (for example Li-ion NMC, Li-ion LFP, Pb). Battery status uses original, re-used, remanufactured, repurposed, waste — note the hyphen in re-used. The DPP status field uses its own capitalized vocabulary, and each category schema fixes its own battery-category value. Free-text that "means the same thing" will fail.

Three content areas are worth flagging because they are commonly stored in a form the schema will not accept:

System-Level Testing and the Test Adapter

The second module goes beyond a single file. It exercises how your system behaves inside a network of interacting DPP participants — economic operators, backup providers, and emulated services standing in for the EU Registry. The test executor calls your system's lifecycle API directly, using the standardized interfaces defined in EN 18222, sending the same requests a real participant would in production.

To make those tests repeatable and automatable, your system also exposes a small, testing-only component called a Test Adapter. It implements two endpoints:

Setup runs a short list of commands that the test environment defines:

CommandPurpose
insertBatteryPassCreate a battery passport record in your DPP system
bringBatteryToMarketMark a passport as placed on the market
issueCredentialsGenerate test access credentials (API key or JWT) so the environment can authenticate against your lifecycle API

The adapter is not part of your production system and is active only during testing. Because it brings the system to a known state before each run and resets it after, the whole flow can be wired into a CI/CD pipeline. The environment also ships preconfigured example interfaces, so you can run a complete test and understand the flow before connecting your own system at all.

How to Get Started

  1. Create a free account and open the Resources section to download the five JSON schema files and the data model documentation. They are the authoritative definition of what is required — reviewing the schema for your category before you export anything prevents the most common structural errors.
  2. Pick your category and generate one file. Produce a single passport JSON for one real unit, in the wrapped, coded shape the schema expects, and validate it against the matching category schema.
  3. Validate locally first, then upload. The schema files are standard JSON Schema, so you can validate offline in seconds against the category file rather than iterating through the web UI. Once it is clean locally, confirm it in the Data Validation module.
  4. Close the data gaps. Because validation is structural today, a file can pass with representative values in fields you have not yet sourced — but those gaps are your real punch list. Treat each placeholder as a field to capture before production: battery mass, warranty, the performance block, the carbon-footprint breakdown, and the recycled-content split.
  5. Plan the system-level work separately. If you operate your own DPP system, the lifecycle API conformance audit and the Test Adapter are a meaningful build. Use the example interfaces to learn the flow, then schedule the integration with room to spare before February 2027.
February 18, 2027

Every EV battery, every industrial battery ≥2 kWh, and every light-means-of-transport battery placed on the EU market must carry a compliant Digital Battery Passport. Conformance testing is how you find the gaps while there is still time to fix them — not after a passport is rejected.

The Bottom Line

For a compliance program, the value of BatteryPass-Ready is risk reduction on the thing that matters most: proving the passports you produce are actually conformant, rather than assuming it. The data-validation module turns a vague worry — "are we doing this right?" — into a precise, testable answer and a concrete list of what to fix. The system-level module does the same for interoperability. Neither is a legal certification, but together they are the closest thing the industry has to a dress rehearsal for the real mandate.

If you want a deeper grounding in the underlying obligations, our companion guides cover the EU Digital Battery Passport requirements and the EU DPP Registry Implementing Regulation.

PassportIQ produces conformant passports — and tests them.

PassportIQ models battery data against the BatteryPass-Ready schemas, exports validation-ready passport files for every battery category, and shows you exactly which fields are still missing before you go live. Built specifically for the February 2027 mandate.

Contact Us