Atlassian · Schema
RemoteIssueLink
Details of an issue remote link.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| application | object | Details of the remote application the linked item is in. |
| globalId | string | The global ID of the link, such as the ID of the item on the remote system. |
| id | integer | The ID of the link. |
| object | object | Details of the item linked to. |
| relationship | string | Description of the relationship between the issue and the linked item. |
| self | string | The URL of the link. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RemoteIssueLink",
"title": "RemoteIssueLink",
"additionalProperties": false,
"description": "Details of an issue remote link.",
"properties": {
"application": {
"allOf": [
{
"$ref": "#/components/schemas/Application"
}
],
"description": "Details of the remote application the linked item is in."
},
"globalId": {
"description": "The global ID of the link, such as the ID of the item on the remote system.",
"type": "string"
},
"id": {
"description": "The ID of the link.",
"format": "int64",
"type": "integer"
},
"object": {
"allOf": [
{
"$ref": "#/components/schemas/RemoteObject"
}
],
"description": "Details of the item linked to."
},
"relationship": {
"description": "Description of the relationship between the issue and the linked item.",
"type": "string"
},
"self": {
"description": "The URL of the link.",
"format": "uri",
"type": "string"
}
},
"type": "object"
}