--- id: v2024-sod-violation-check-result1 title: SodViolationCheckResult1 pagination_label: SodViolationCheckResult1 sidebar_label: SodViolationCheckResult1 sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'SodViolationCheckResult1', 'V2024SodViolationCheckResult1'] slug: /tools/sdk/powershell/v2024/models/sod-violation-check-result1 tags: ['SDK', 'Software Development Kit', 'SodViolationCheckResult1', 'V2024SodViolationCheckResult1'] --- # SodViolationCheckResult1 ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Message** | [**ErrorMessageDto1**](error-message-dto1) | | [optional] **ClientMetadata** | **map[string]String** | Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check. | [optional] **ViolationContexts** | [**[]SodViolationContext1**](sod-violation-context1) | | [optional] **ViolatedPolicies** | [**[]SodPolicyDto**](sod-policy-dto) | A list of the SOD policies that were violated. | [optional] ## Examples - Prepare the resource ```powershell $SodViolationCheckResult1 = Initialize-PSSailpoint.V2024SodViolationCheckResult1 -Message null ` -ClientMetadata {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1} ` -ViolationContexts null ` -ViolatedPolicies null ``` - Convert the resource to JSON ```powershell $SodViolationCheckResult1 | ConvertTo-JSON ``` [[Back to top]](#)