{
    "$id": "UpdateChargingStationPasswordRequestSchema",
    "type": "object",
    "properties": {
        "ocppConnectionName": {
            "type": "string"
        },
        "password": {
            "type": "string",
            "minLength": 16,
            "maxLength": 40,
            "pattern": "^[a-zA-Z0-9*\\-_=:+|@.]{16,40}$"
        },
        "setOnCharger": {
            "type": "boolean",
            "default": false
        }
    },
    "required": ["ocppConnectionName"],
    "additionalProperties": true
}
