--- id: beta-requestability title: Requestability pagination_label: Requestability sidebar_label: Requestability sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'Requestability', 'BetaRequestability'] slug: /tools/sdk/powershell/beta/models/requestability tags: ['SDK', 'Software Development Kit', 'Requestability', 'BetaRequestability'] --- # Requestability ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **CommentsRequired** | **Boolean** | Indicates whether the requester of the containing object must provide comments justifying the request. | [optional] [default to $false] **DenialCommentsRequired** | **Boolean** | Indicates whether an approver must provide comments when denying the request. | [optional] [default to $false] **ReauthorizationRequired** | **Boolean** | Indicates whether reauthorization is required for the request. | [optional] [default to $false] **ApprovalSchemes** | [**[]AccessProfileApprovalScheme**](access-profile-approval-scheme) | List describing the steps involved in approving the request. | [optional] ## Examples - Prepare the resource ```powershell $Requestability = Initialize-PSSailpoint.BetaRequestability -CommentsRequired true ` -DenialCommentsRequired true ` -ReauthorizationRequired true ` -ApprovalSchemes null ``` - Convert the resource to JSON ```powershell $Requestability | ConvertTo-JSON ``` [[Back to top]](#)