{
"$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"
}