Actions
Documentation #6478
openschema: add missing fields
Affected Versions:
Effort:
Difficulty:
Label:
Beginner, Good First Issue, Outreachy
Description
With the addition of the JSON schema (see https://github.com/OISF/suricata/blob/master/etc/schema.json) and SV checks to validate it, it's important to ensure that it is complete.
Running git grep set_string rust/src/ | cut -d'"' -f2 | sort | uniq | grep -v : | while read i; do echo -n $i; git grep $i etc/schema.json | wc -l; done | awk '$2 == 0'
shows for instance that server_security_failure_reason
is missing in etc/schema.json for rfb
Actions