Atlassian · Schema

GroupDetails

Details about a group.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
groupId string The ID of the group, which uniquely identifies the group across all Atlassian products. For example, *952d12c3-5b5b-4d04-bb32-44d383afc4b2*.
name string The name of the group.
View JSON Schema on GitHub

JSON Schema

atlassian-groupdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupDetails",
  "title": "GroupDetails",
  "additionalProperties": false,
  "description": "Details about a group.",
  "properties": {
    "groupId": {
      "description": "The ID of the group, which uniquely identifies the group across all Atlassian products. For example, *952d12c3-5b5b-4d04-bb32-44d383afc4b2*.",
      "nullable": true,
      "type": "string"
    },
    "name": {
      "description": "The name of the group.",
      "type": "string"
    }
  },
  "type": "object"
}