Atlassian · Schema

GroupLabel

A group label.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
text string The group label name.
title string The title of the group label.
type string The type of the group label.
View JSON Schema on GitHub

JSON Schema

atlassian-grouplabel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupLabel",
  "title": "GroupLabel",
  "additionalProperties": false,
  "description": "A group label.",
  "properties": {
    "text": {
      "description": "The group label name.",
      "type": "string"
    },
    "title": {
      "description": "The title of the group label.",
      "type": "string"
    },
    "type": {
      "description": "The type of the group label.",
      "enum": [
        "ADMIN",
        "SINGLE",
        "MULTIPLE"
      ],
      "type": "string"
    }
  },
  "type": "object",
  "xml": {
    "name": "grouplabel"
  }
}