Atlassian · Schema

LinkGroup

Details a link group, which defines issue operations.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
groups array
header object
id string
links array
styleClass string
weight integer
View JSON Schema on GitHub

JSON Schema

atlassian-linkgroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LinkGroup",
  "title": "LinkGroup",
  "additionalProperties": false,
  "description": "Details a link group, which defines issue operations.",
  "properties": {
    "groups": {
      "items": {
        "$ref": "#/components/schemas/LinkGroup"
      },
      "type": "array"
    },
    "header": {
      "$ref": "#/components/schemas/SimpleLink"
    },
    "id": {
      "type": "string"
    },
    "links": {
      "items": {
        "$ref": "#/components/schemas/SimpleLink"
      },
      "type": "array"
    },
    "styleClass": {
      "type": "string"
    },
    "weight": {
      "format": "int32",
      "type": "integer"
    }
  },
  "type": "object"
}