--- id: beta-sod-violation-context-check-completed title: SodViolationContextCheckCompleted pagination_label: SodViolationContextCheckCompleted sidebar_label: SodViolationContextCheckCompleted sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'SodViolationContextCheckCompleted', 'BetaSodViolationContextCheckCompleted'] slug: /tools/sdk/powershell/beta/models/sod-violation-context-check-completed tags: ['SDK', 'Software Development Kit', 'SodViolationContextCheckCompleted', 'BetaSodViolationContextCheckCompleted'] --- # SodViolationContextCheckCompleted ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **State** | Pointer to **Enum** [ "SUCCESS", "ERROR" ] | The status of SOD violation check | [optional] **Uuid** | Pointer to **String** | The id of the Violation check event | [optional] **ViolationCheckResult** | Pointer to [**SodViolationCheckResult**](sod-violation-check-result) | | [optional] ## Examples - Prepare the resource ```powershell $SodViolationContextCheckCompleted = Initialize-PSSailpoint.BetaSodViolationContextCheckCompleted -State SUCCESS ` -Uuid f73d16e9-a038-46c5-b217-1246e15fdbdd ` -ViolationCheckResult null ``` - Convert the resource to JSON ```powershell $SodViolationContextCheckCompleted | ConvertTo-JSON ``` [[Back to top]](#)