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:
Diffstat (limited to 'app/validators/json_schemas/security_scan_info.json')
-rw-r--r--app/validators/json_schemas/security_scan_info.json28
1 files changed, 0 insertions, 28 deletions
diff --git a/app/validators/json_schemas/security_scan_info.json b/app/validators/json_schemas/security_scan_info.json
deleted file mode 100644
index c8932c1870d..00000000000
--- a/app/validators/json_schemas/security_scan_info.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-07/schema#",
- "type": "object",
- "title": "Security::Scan#info schema",
- "description": "The schema validates the content of the Security::Scan#info attribute",
- "additionalProperties": false,
- "properties": {
- "errors": {
- "type": "array",
- "items": {
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "type": {
- "type": "string"
- },
- "message": {
- "type": "string"
- }
- },
- "required": [
- "type",
- "message"
- ]
- }
- }
- }
-}