Atlassian · Schema

IconBean

An icon.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
link string The URL of the tooltip, used only for a status icon.
title string The title of the icon, for use as a tooltip on the icon.
url16x16 string The URL of a 16x16 pixel icon.
View JSON Schema on GitHub

JSON Schema

atlassian-iconbean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IconBean",
  "title": "IconBean",
  "additionalProperties": false,
  "description": "An icon.",
  "properties": {
    "link": {
      "description": "The URL of the tooltip, used only for a status icon.",
      "type": "string"
    },
    "title": {
      "description": "The title of the icon, for use as a tooltip on the icon.",
      "type": "string"
    },
    "url16x16": {
      "description": "The URL of a 16x16 pixel icon.",
      "type": "string"
    }
  },
  "type": "object",
  "xml": {
    "name": "icon"
  }
}