How to parse security_result for any severity?

How to parse security_result for any severity

0 4 264
4 REPLIES 4

security_result.severity uses an enumerated list for the value. The value will have to be INFORMATIONAL, LOW, MEDIUM, HIGH, or CRITICAL.

Here is how I handle it in most of the parser I build

https://files.slack.com/files-pri/TRKMZ7TDE-F05QY7TARDM/image.png

Thank you @Daniel_Love