{
    "$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
}
