List of items in the bulk request.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BulkRequestItemDTOUserProfileGranularAccessDTO", "title": "BulkRequestItemDTOUserProfileGranularAccessDTO", "type": "object", "description": "List of items in the bulk request.", "properties": { "itemIdentifier": { "type": "integer", "format": "int32", "description": "Unique item identifier for a bulk operation.", "example": 10 }, "item": { "$ref": "#/components/schemas/UserProfileGranularAccessDTO" }, "requestAction": { "type": "string", "description": "Identifier for action type. Possible values are `SAVE` and `DELETE`.", "example": "SAVE" } } }