summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/issue_link.json
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" ]
}