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

issue_link.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: 000e8485aca83f6a64b96bea75ad4eba16db204c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "type": "object",
  "properties" : {
     "source_issue": {
       "allOf": [
          { "$ref": "../../../../../../spec/fixtures/api/schemas/public_api/v4/issue.json" }
        ]
     },
     "target_issue": {
       "allOf": [
          { "$ref": "../../../../../../spec/fixtures/api/schemas/public_api/v4/issue.json" }
        ]
     },
     "link_type": {
       "type": "string",
       "enum": ["relates_to", "blocks", "is_blocked_by"]
     }
  },
  "required" : [ "source_issue", "target_issue", "link_type" ]
}