Atlassian · Schema

ActorsMap

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
group array The name of the group to add. This parameter cannot be used with the `groupId` parameter. As a group's name can change, use of `groupId` is recommended.
groupId array The ID of the group to add. This parameter cannot be used with the `group` parameter.
user array The user account ID of the user to add.
View JSON Schema on GitHub

JSON Schema

atlassian-actorsmap-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActorsMap",
  "title": "ActorsMap",
  "additionalProperties": false,
  "properties": {
    "group": {
      "description": "The name of the group to add. This parameter cannot be used with the `groupId` parameter. As a group's name can change, use of `groupId` is recommended.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "groupId": {
      "description": "The ID of the group to add. This parameter cannot be used with the `group` parameter.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "user": {
      "description": "The user account ID of the user to add.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}