Atlassian · Schema

RemoteObject

The linked item.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
icon object Details of the icon for the item. If no icon is defined, the default link icon is used in Jira.
status object The status of the item.
summary string The summary details of the item.
title string The title of the item.
url string The URL of the item.
View JSON Schema on GitHub

JSON Schema

atlassian-remoteobject-schema.json Raw ↑
{
  "$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"
}