From: Jérôme Benoit Date: Mon, 16 Mar 2026 14:57:13 +0000 (+0100) Subject: fix(ocpp16): align BootNotification runtime schema maxLength with spec §6.3 X-Git-Tag: ocpp-server@v3.1.1~21 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=a74b74246cbfb008bb38e8065ee0d04a782902e1;p=e-mobility-charging-stations-simulator.git fix(ocpp16): align BootNotification runtime schema maxLength with spec §6.3 chargePointSerialNumber, chargeBoxSerialNumber, meterSerialNumber: 50 → 25 (CiString25Type per spec §6.3 + OCA JSON schema) --- diff --git a/src/assets/json-schemas/ocpp/1.6/BootNotification.json b/src/assets/json-schemas/ocpp/1.6/BootNotification.json index 29bb0933..e07d0c09 100644 --- a/src/assets/json-schemas/ocpp/1.6/BootNotification.json +++ b/src/assets/json-schemas/ocpp/1.6/BootNotification.json @@ -14,11 +14,11 @@ }, "chargePointSerialNumber": { "type": "string", - "maxLength": 50 + "maxLength": 25 }, "chargeBoxSerialNumber": { "type": "string", - "maxLength": 50 + "maxLength": 25 }, "firmwareVersion": { "type": "string", @@ -38,7 +38,7 @@ }, "meterSerialNumber": { "type": "string", - "maxLength": 50 + "maxLength": 25 } }, "additionalProperties": false,