Atlassian · Schema

LinkIssueRequestJsonBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
comment object
inwardIssue object
outwardIssue object
type object
View JSON Schema on GitHub

JSON Schema

atlassian-linkissuerequestjsonbean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LinkIssueRequestJsonBean",
  "title": "LinkIssueRequestJsonBean",
  "additionalProperties": false,
  "properties": {
    "comment": {
      "$ref": "#/components/schemas/Comment"
    },
    "inwardIssue": {
      "$ref": "#/components/schemas/LinkedIssue"
    },
    "outwardIssue": {
      "$ref": "#/components/schemas/LinkedIssue"
    },
    "type": {
      "$ref": "#/components/schemas/IssueLinkType"
    }
  },
  "required": [
    "inwardIssue",
    "outwardIssue",
    "type"
  ],
  "type": "object"
}