Atlassian · Schema

LinkedIssue

The ID or key of a linked issue.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
fields object The fields associated with the issue.
id string The ID of an issue. Required if `key` isn't provided.
key string The key of an issue. Required if `id` isn't provided.
self string The URL of the issue.
View JSON Schema on GitHub

JSON Schema

atlassian-linkedissue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LinkedIssue",
  "title": "LinkedIssue",
  "additionalProperties": false,
  "description": "The ID or key of a linked issue.",
  "properties": {
    "fields": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Fields"
        }
      ],
      "description": "The fields associated with the issue.",
      "readOnly": true
    },
    "id": {
      "description": "The ID of an issue. Required if `key` isn't provided.",
      "type": "string"
    },
    "key": {
      "description": "The key of an issue. Required if `id` isn't provided.",
      "type": "string"
    },
    "self": {
      "description": "The URL of the issue.",
      "format": "uri",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}