Details of a request to bulk edit shareable entity.
{ "$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" }