Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-06-20 09:07:06 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-20 09:07:06 +0300
commitdd4c30182c16fe27efbbf4c19594bb292fb4ac48 (patch)
tree3d2e0235a0ab5333a6a2d4990da409640dd2d26f /app/validators/json_schemas
parentaccf0d7db3d58a62212125703df39e341d327ec6 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/validators/json_schemas')
-rw-r--r--app/validators/json_schemas/scan_result_policy_vulnerability_attributes.json14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/validators/json_schemas/scan_result_policy_vulnerability_attributes.json b/app/validators/json_schemas/scan_result_policy_vulnerability_attributes.json
new file mode 100644
index 00000000000..e0051179a1d
--- /dev/null
+++ b/app/validators/json_schemas/scan_result_policy_vulnerability_attributes.json
@@ -0,0 +1,14 @@
+{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "description": "Scan result policy vulnerability_attributes",
+ "type": "object",
+ "properties": {
+ "false_positive": {
+ "type": "boolean"
+ },
+ "fix_available": {
+ "type": "boolean"
+ }
+ },
+ "additionalProperties": false
+}