We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the vuln attestation, annotations are specified as an optional list, but the list is not typed.
Would this be a list of strings ["foo=bar"], or a struct [ {{"key":"foo"}, {"value": "bar"}}], or a list of single maps? [{"foo": "bar"}]
["foo=bar"]
[ {{"key":"foo"}, {"value": "bar"}}]
[{"foo": "bar"}]
scanner.result.[*].vulnerability.annotations, optional list This is a list of key/value pairs where scanners can add additional custom information.
The text was updated successfully, but these errors were encountered:
@lumjjb This would be more of a map <string, value> in my opinion.
Sorry, something went wrong.
No branches or pull requests
In the vuln attestation, annotations are specified as an optional list, but the list is not typed.
Would this be a list of strings
["foo=bar"]
, or a struct[ {{"key":"foo"}, {"value": "bar"}}]
, or a list of single maps?[{"foo": "bar"}]
The text was updated successfully, but these errors were encountered: