{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RemoteObject", "title": "RemoteObject", "additionalProperties": true, "description": "The linked item.", "properties": { "icon": { "allOf": [ { "$ref": "#/components/schemas/Icon" } ], "description": "Details of the icon for the item. If no icon is defined, the default link icon is used in Jira." }, "status": { "allOf": [ { "$ref": "#/components/schemas/Status" } ], "description": "The status of the item." }, "summary": { "description": "The summary details of the item.", "type": "string" }, "title": { "description": "The title of the item.", "type": "string" }, "url": { "description": "The URL of the item.", "type": "string" } }, "required": [ "title", "url" ], "type": "object" }