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

related_issues.json « 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: 83095ab44c1060744144d12517f7d45d1663d6bc (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
{
  "type": "array",
  "items": {
    "type": "object",
    "allOf": [
      { "$ref": "../../../../../../spec/fixtures/api/schemas/public_api/v4/issue.json" },
      {
        "required" : [
          "link_type",
          "issue_link_id",
          "link_created_at",
          "link_updated_at"
        ],
        "properties" : {
          "link_type": {
             "type": "string",
             "enum": ["relates_to", "blocks", "is_blocked_by"]
          },
          "issue_link_id": { "type": "integer" },
          "link_created_at": { "type": "string" },
          "link_updated_at": { "type": "string" }
        }
      }
    ]
  }
}