Problem Description:
The pattern for property "file-profile-1-0:file-name:" in requestBody for operationId "putFileProfileFileName" is
^([A-Za-z0-9-_,\s]{3,}).([A-Za-z]{3})$ as mentioned below
which is considering file extension up to three characters and not more than that, for example if we pass file name "encrypted-odl-key.json" in requestBody it will return 400 as it's not matching "json"
Solution:
We can update the pattern with below regular expression
^([A-Za-z0-9-_,\s]{3,}).([A-Za-z]{3,})$
Problem Description: The pattern for property "file-profile-1-0:file-name:" in requestBody for operationId "putFileProfileFileName" is ^([A-Za-z0-9-_,\s]{3,}).([A-Za-z]{3})$ as mentioned below
which is considering file extension up to three characters and not more than that, for example if we pass file name "encrypted-odl-key.json" in requestBody it will return 400 as it's not matching "json"
Solution: We can update the pattern with below regular expression ^([A-Za-z0-9-_,\s]{3,}).([A-Za-z]{3,})$