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

ci_secure_file_metadata.json « json_schemas « validators « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46a7ff60b8fbc695b28e45297aa8026f5398a4d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"
  ]
}