summaryrefslogtreecommitdiff
path: root/app/validators
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-09-27 12:10:16 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-09-27 12:10:16 +0000
commitaf3904f9d0c9abab61f96f63d0c889f54e31fabd (patch)
tree3e37e9766bf290c0e65aa7c9628f0ec247427f26 /app/validators
parent1b9f574b89cb80cdd5af8cba3ad3e7995a4af47d (diff)
downloadgitlab-ce-af3904f9d0c9abab61f96f63d0c889f54e31fabd.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/validators')
-rw-r--r--app/validators/json_schemas/ci_secure_file_metadata.json22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/validators/json_schemas/ci_secure_file_metadata.json b/app/validators/json_schemas/ci_secure_file_metadata.json
new file mode 100644
index 00000000000..46a7ff60b8f
--- /dev/null
+++ b/app/validators/json_schemas/ci_secure_file_metadata.json
@@ -0,0 +1,22 @@
+{
+ "description": "CI Secure File Metadata",
+ "type": "object",
+ "properties": {
+ "id": { "type": "string" },
+ "team_name": { "type": "string" },
+ "team_id": { "type": "string" },
+ "app_name": { "type": "string" },
+ "app_id": { "type": "string" },
+ "app_id_prefix": { "type": "string" },
+ "xcode_managed": { "type": "boolean" },
+ "entitlements": { "type": "object" },
+ "devices": { "type": "array" },
+ "certificate_ids": { "type": "array" },
+ "issuer": { "type": "object" },
+ "subject": { "type": "object" }
+ },
+ "additionalProperties": true,
+ "required": [
+ "id"
+ ]
+}