Atlassian · Schema

BulkEditShareableEntityResponse

Details of a request to bulk edit shareable entity.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
action string Allowed action for bulk edit shareable entity
entityErrors object The mapping dashboard id to errors if any.
View JSON Schema on GitHub

JSON Schema

atlassian-bulkeditshareableentityresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkEditShareableEntityResponse",
  "title": "BulkEditShareableEntityResponse",
  "additionalProperties": false,
  "description": "Details of a request to bulk edit shareable entity.",
  "properties": {
    "action": {
      "description": "Allowed action for bulk edit shareable entity",
      "enum": [
        "changeOwner",
        "changePermission",
        "addPermission",
        "removePermission"
      ],
      "type": "string"
    },
    "entityErrors": {
      "additionalProperties": {
        "$ref": "#/components/schemas/BulkEditActionError"
      },
      "description": "The mapping dashboard id to errors if any.",
      "type": "object"
    }
  },
  "required": [
    "action"
  ],
  "type": "object"
}