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

status.json « schema « metrics « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b71a22b4c6ed5c152998db8301b9ba09dbdf4ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  "allOf": [
    {
      "if": {
        "properties": {
          "status": {
            "const": "broken"
          }
        }
      },
      "then": {
        "required": [
          "repair_issue_url"
        ]
      }
    },
    {
      "if": {
        "properties": {
          "status": {
            "const": "removed"
          }
        }
      },
      "then": {
        "required": [
          "removed_by_url",
          "milestone_removed"
        ]
      }
    }
  ]
}