Atlassian · Schema

RemoteIssueLinkIdentifies

Details of the identifiers for a created or updated remote issue link.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id integer The ID of the remote issue link, such as the ID of the item on the remote system.
self string The URL of the remote issue link.
View JSON Schema on GitHub

JSON Schema

atlassian-remoteissuelinkidentifies-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RemoteIssueLinkIdentifies",
  "title": "RemoteIssueLinkIdentifies",
  "additionalProperties": false,
  "description": "Details of the identifiers for a created or updated remote issue link.",
  "properties": {
    "id": {
      "description": "The ID of the remote issue link, such as the ID of the item on the remote system.",
      "format": "int64",
      "readOnly": true,
      "type": "integer",
      "xml": {
        "attribute": true
      }
    },
    "self": {
      "description": "The URL of the remote issue link.",
      "readOnly": true,
      "type": "string",
      "xml": {
        "attribute": true
      }
    }
  },
  "type": "object"
}