Atlassian · Schema

ProjectRoleGroup

Details of the group associated with the role.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
displayName string The display name of the group.
groupId string The ID of the group.
name string The name of the group. As a group's name can change, use of `groupId` is recommended to identify the group.
View JSON Schema on GitHub

JSON Schema

atlassian-projectrolegroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectRoleGroup",
  "title": "ProjectRoleGroup",
  "additionalProperties": false,
  "description": "Details of the group associated with the role.",
  "properties": {
    "displayName": {
      "description": "The display name of the group.",
      "type": "string"
    },
    "groupId": {
      "description": "The ID of the group.",
      "type": "string"
    },
    "name": {
      "description": "The name of the group. As a group's name can change, use of `groupId` is recommended to identify the group.",
      "type": "string"
    }
  },
  "type": "object"
}