@citrineos/base
Version:
The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.
22 lines (21 loc) • 512 B
JSON
{
"$id": "UpdateChargingStationPasswordRequestSchema",
"type": "object",
"properties": {
"stationId": {
"type": "string"
},
"password": {
"type": "string",
"minLength": 16,
"maxLength": 40,
"pattern": "^[a-zA-Z0-9*\\-_=:+|@.]{16,40}$"
},
"setOnCharger": {
"type": "boolean",
"default": false
}
},
"required": ["stationId"],
"additionalProperties": false
}