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/ci_secure_file_metadata.json')
-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"
+ ]
+}