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

project_label.json « labels « v4 « public_api « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec4f64b6772c0cddc458b75fb95593f4fcab2ec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "type": "object",
  "allOf": [
    {
      "$ref": "label.json"
    },
    {
      "type": "object",
      "properties": {
        "priority": {
          "type": [
            "integer",
            "null"
          ]
        },
        "is_project_label": {
          "type": "boolean"
        }
      }
    }
  ]
}