--- id: beta-sod-violation-check-result1 title: SodViolationCheckResult1 pagination_label: SodViolationCheckResult1 sidebar_label: SodViolationCheckResult1 sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'SodViolationCheckResult1', 'BetaSodViolationCheckResult1'] slug: /tools/sdk/powershell/beta/models/sod-violation-check-result1 tags: ['SDK', 'Software Development Kit', 'SodViolationCheckResult1', 'BetaSodViolationCheckResult1'] --- # SodViolationCheckResult1 ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Message** | [**ErrorMessageDto**](error-message-dto) | | [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** | [**[]SodPolicyDto1**](sod-policy-dto1) | A list of the Policies that were violated. | [optional] ## Examples - Prepare the resource ```powershell $SodViolationCheckResult1 = Initialize-BetaSodViolationCheckResult1 -Message null ` -ClientMetadata {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1} ` -ViolationContexts null ` -ViolatedPolicies null ``` - Convert the resource to JSON ```powershell $SodViolationCheckResult1 | ConvertTo-JSON ``` [[Back to top]](#)