In your project you have some invalid regex patterns:
^[A-Z,-,/, ,0-9]*$"
Please remove them and try again.
The correct pattern would be ^[A-Z,-,\/, ,0-9]*$" since the / must be escaped.
^[A-Z,-,\/, ,0-9]*$"
/
You can validate your regex patterns here →